@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400..700;1,400..700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.3px;
}

body{
    overflow-x: hidden;
}
.top-bar {
    background-color: #afd876;
    height: 40px;
    display: flex;
    align-items: center;

    a {
        color: #000;
        font-family: "Montserrat", sans-serif;
    }

    span {
        font-weight: bold;
        font-size: 14px;
    }
}

/* Header */
.header {
    position: relative;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.header .logo a {
    display: inline-block;
}

/* Menü - yan yana */
.menu-container {
    display: flex;
    justify-content: center;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    justify-content: center;
    align-items: center;
}

.menu li {
    margin: 0;
    position: relative;
}

.menu li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.menu li a:hover {
    color: #000;
}

.menu-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.2s;
}

.menu li.menu-item-has-children:hover .menu-arrow {
    transform: rotate(180deg);
}

/* Dropdown - alta inen menü (varsayılan kapalı) */
.menu .dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
    pointer-events: none;
}

/* Hover'da aç; dropdown'un üzerindeyken de açık kalsın */
.menu > li.menu-item-has-children:hover > .dropdown:not(.mega-dropdown),
.menu > li.menu-item-has-children > .dropdown:not(.mega-dropdown):hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.menu .dropdown li.menu-item-has-children:hover > .dropdown,
.menu .dropdown li.menu-item-has-children > .dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.menu .dropdown li {
    border-bottom: 1px solid #f0f0f0;
}

.menu .dropdown li:last-child {
    border-bottom: none;
}

.menu .dropdown li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    white-space: nowrap;
}

.menu .dropdown li a:hover {
    background: #f8f8f8;
}

/* Menü container */
.menu-container {
    width: 100%;
}

.menu {
    width: 100%;
}

/* Ürünler ile Blog yan yana, arada boşluk açılmasın */
.menu-mega {
    flex: 0 0 auto;
}

/* ========== MEGA MENÜ – sola yaslı, sayfa genişliğinde, taşma yok ========== */
.menu-mega .mega-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: 112px;
    margin-top: 0;
    transform: translateY(-12px);
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
    padding: 0;
}

/* Üstteki alanı da hover’a dahil et – mouse aşağı inerken menü kapanmasın */
.menu-mega .mega-dropdown::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 70px;
}

.menu-mega:hover .mega-dropdown,
.menu-mega .mega-dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.menu > li.menu-item-has-children:hover > .dropdown,
.menu > li.menu-item-has-children > .dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-dropdown-inner {
    padding: 1.5rem 0 2rem;
}

.mega-col {
    padding-left: 1rem;
    padding-right: 1rem;
}

.mega-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    margin: 0 0 0.75rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.mega-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-links li {
    margin: 0;
    border: none;
}

.mega-links li a {
    display: block;
    padding: 0.4rem 0;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: color 0.15s;
}

.mega-links li a:hover {
    color: #000;
    background: transparent;
}

/* Çok seviyeli dropdown: alt seviyeler sağda açılır (alta alta) */
.menu .dropdown .dropdown {
    top: 0;
    left: 100%;
    margin-left: 4px;
}

.menu .dropdown li.menu-item-has-children {
    position: relative;
}

.menu .dropdown .menu-arrow.sub-arrow {
    margin-left: auto;
    font-size: 10px;
}

.menu .dropdown li.menu-item-has-children:hover .sub-arrow {
    transform: none;
}

/* Header aksiyon ikonları (arama, kullanıcı, sepet) */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
}

.header-action-icon {
    color: #333;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.header-action-icon:hover {
    color: #000;
}

/* Hesabım dropdown – trigger buton ikon ile aynı görünsün */
.header-actions .dropdown .header-action-icon {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.account-dropdown {
    min-width: 220px;
    padding: 0.5rem 0;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.08);
}
.account-dropdown .dropdown-item {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}
.account-dropdown .dropdown-item i {
    width: 1.25rem;
    text-align: center;
}

/* Dil seçici – modern pill + dropdown */
.lang-switcher {
    position: relative;
}
.lang-switcher__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.lang-switcher__trigger:hover {
    background: #eee;
    border-color: #ddd;
    color: #000;
}
.lang-switcher__trigger[aria-expanded="true"],
.lang-switcher__trigger.show {
    background: #fff;
    border-color: #afd876;
    box-shadow: 0 0 0 2px rgba(175, 216, 118, 0.25);
}
.lang-switcher__icon {
    font-size: 1rem;
    opacity: 0.85;
}
.lang-switcher__current {
    letter-spacing: 0.05em;
}
.lang-switcher__chevron {
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform 0.2s;
}
.lang-switcher__trigger[aria-expanded="true"] .lang-switcher__chevron,
.lang-switcher__trigger.show .lang-switcher__chevron {
    transform: rotate(180deg);
}
.lang-switcher__dropdown.dropdown-menu {
    min-width: 160px;
    padding: 0.5rem;
    margin-top: 0.5rem !important;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    list-style: none;
}
.lang-switcher__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.15s, color 0.15s;
}
.lang-switcher__item:hover {
    background: #f5f5f5;
    color: #000;
}
.lang-switcher__item.active {
    background: rgba(175, 216, 118, 0.2);
    color: #1a5c1a;
    font-weight: 600;
}
.lang-switcher__code {
    font-weight: 600;
    letter-spacing: 0.05em;
    min-width: 1.75rem;
}
.lang-switcher__name {
    flex: 1;
    color: inherit;
}
.lang-switcher__check {
    font-size: 0.75rem;
    color: #afd876;
}

.header-cart {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #333;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.menu-toggle {
    color: #333 !important;
    font-size: 1.25rem;
    padding: 0.25rem 0.5rem;
    text-decoration: none !important;
}

/* Offcanvas menü */
.offcanvas-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offcanvas-menu ul li {
    border-bottom: 1px solid #eee;
}

.offcanvas-menu ul li a {
    display: block;
    padding: 0.75rem 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.offcanvas-menu ul li a:hover {
    color: #000;
}

/* Collapse kapalı başlasın */
.offcanvas-menu .collapse:not(.show) {
    display: none;
}

.offcanvas-menu .collapse.show {
    display: block;
}

/* Hamburger menü butonu (Ürünler) */
.offcanvas-menu-toggle {
    background: none;
    border: none;
    padding: 0.75rem 0;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
}

.offcanvas-menu-toggle:hover {
    color: #000;
}

.offcanvas-hamburger {
    font-size: 1rem;
    transition: transform 0.2s;
}

.offcanvas-menu-toggle[aria-expanded="true"] .offcanvas-hamburger {
    transform: rotate(90deg);
}

.offcanvas-chevron {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.offcanvas-menu-toggle[aria-expanded="true"] .offcanvas-chevron {
    transform: rotate(180deg);
}

/* Offcanvas dropdown (mobil) */
.offcanvas-menu .offcanvas-dropdown ul {
    border-bottom: none;
    padding-left: 1rem;
}

.offcanvas-menu .offcanvas-dropdown > ul.collapse li {
    border-bottom: none;
}

.offcanvas-menu .offcanvas-dropdown > ul.collapse li a {
    padding: 0.5rem 0;
    font-size: 14px;
}

/* ========== Hero / Top Banner Slider (Slick) ========== */
/* top-bar 40px + header ~72px = 112px */
.top-banner {
    height: calc(100vh - 112px);
    min-height: 400px;
    overflow: hidden;
}

.top-banner .hero-slider,
.top-banner .slick-list,
.top-banner .slick-track,
.top-banner .hero-slide {
    height: 100%;
}

.top-banner .hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.top-banner .hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    pointer-events: none;
}

.top-banner .container {
    height: 100%;
    position: relative;
    z-index: 1;
    padding-left: 1rem;
}

.top-banner .container .row {
    height: 100%;
    align-items: center;
}

.top-banner .container .row [class*="col-"] {
    padding-left: 0.5rem;
}

.hero-content {
    max-width: 520px;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: #afd876;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.95);
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn.btn-hero {
    display: inline-block;
    background: #afd876;
    color: #000 !important;
    font-weight: 600;
    font-size: 14px;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
}

.btn.btn-hero:hover {
    background: #9bc76a;
    color: #000 !important;
}

/* Slick arrows & dots override */
.top-banner .slick-prev,
.top-banner .slick-next {
    width: 48px;
    height: 48px;
    z-index: 10;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    border: none;
    color: #fff;
    transition: background 0.2s, color 0.2s;
}

.top-banner .slick-prev:hover,
.top-banner .slick-next:hover {
    background: rgba(255,255,255,0.9);
    color: #333;
}

.top-banner .slick-prev { left: 1.5rem; }
.top-banner .slick-next { right: 1.5rem; }

.top-banner .slick-dots {
    bottom: 1.5rem;
}

.top-banner .slick-dots li button::before {
    color: rgba(255,255,255,0.6);
    font-size: 10px;
}

.top-banner .slick-dots li.slick-active button::before {
    color: #fff;
}

/* ========== Ürün kartı (tekrar kullanılabilir, Slick’siz de kullanılır) ========== */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.product-card__image-wrap {
    position: relative;
    aspect-ratio: 4/4.5;
    background: #f8f8f8;
    overflow: hidden;
}

.product-card__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card__badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.6rem;
    pointer-events: none;
}

.product-card__badge {
    font-size: 11px;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
}

.product-card__badge--hot {
    background: #000;
    color: #fff;
}

.product-card__badge--discount {
    background: #20a0a0;
    color: #fff;
}

.product-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7px;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.2s;
    width: 90%;
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__add-cart {
    background: #000;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    text-decoration: none;
    border: none;
    transition: background 0.2s;
    display: inline-block;
}

.product-card__add-cart:hover {
    background: #333;
    color: #fff !important;
}

.product-card__body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__rating {
    margin-bottom: 0.5rem;
}

.product-card__star {
    font-size: 11px;
    color: #ddd;
}

.product-card__star--filled {
    color: #000;
}

.product-card__title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.35;
}

.product-card__title a {
    color: #000;
    text-decoration: none;
}

.product-card__title a:hover {
    color: #333;
}

.product-card__price-wrap {
    margin-top: auto;
}

.product-card__price {
    font-weight: 700;
    font-size: 14px;
    color: #000;
}

.product-card__price--old {
    font-weight: 400;
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.35rem;
}

/* ========== Öne Çıkanlar bölümü + Slick ========== */
.featured-section {
    padding: 3rem 0;
}

.featured-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.featured-section__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #333;
    flex-shrink: 0;
}

.featured-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.featured-slider .slick-slide {
    height: auto;
    display: flex;
}

.featured-slider .slick-slide > div {
    width: 100%;
    display: flex;
    flex: 1;
}

.featured-slider__slide {
    padding: 0 0.5rem;
    width: 100%;
    display: flex;
    flex: 1;
}

.featured-slider .product-card {
    margin: 0;
    flex: 1;
    width: 100%;
}

/* ========== Kategorilere Göre Alışveriş (Shop by Categories) – grid, card yok ========== */
.categories-section {
    padding: 3rem 0;
    background: #fff;
}

.categories-section__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 2rem 0;
    color: #2c2c2c;
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.categories-grid__empty {
    grid-column: 1 / -1;
    text-align: center;
    margin: 0;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.category-item__image-wrap {
    width: 100%;
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    aspect-ratio: 1;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    display: block;
}

.category-item:hover .category-item__image-wrap {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.category-item__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* İsim kutu dışında, border’ın altında */
.category-item__label {
    display: block;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-top: 0.75rem;
    padding: 0;
}

/* ========== Tüm Ürünler (infinite scroll) ========== */
.home-products-section {
    padding: 3rem 0;
    background: #fafafa;
}

.home-products-section__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 2rem 0;
    color: #2c2c2c;
    text-align: center;
}

.home-products-sentinel {
    height: 1px;
    visibility: hidden;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

/* ========== Promosyon banner (Limited Edition / countdown) ========== */

.promo-banner {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.promo-banner__image-wrap {
    flex: 0 0 50%;
    min-height: 320px;
    background: #e8e8e8;
}
@media (max-width: 991px) {
    .promo-banner__image-wrap {
        flex: 0 0 100%;
        min-height: 240px;
    }
}
.promo-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.promo-banner__placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
}
.promo-banner__content {
    flex: 0 0 50%;
    min-width: 0;
    background: #141718;
    color: #fff;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 991px) {
    .promo-banner__content {
        flex: 0 0 100%;
        padding: 1.5rem;
    }
}
.promo-banner__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2ecc71;
    margin-bottom: 0.5rem;
}
.promo-banner__title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.75rem;
    color: #fff;
}
@media (max-width: 991px) {
    .promo-banner__title {
        font-size: 1.5rem;
    }
}
.promo-banner__discount {
    color: #2ecc71;
    font-weight: 800;
}
.promo-banner__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.25rem;
    line-height: 1.45;
}
.promo-banner__expires-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 0.5rem;
}
.promo-banner__countdown {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.promo-banner__countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    color: #1a1a1a;
    border-radius: 6px;
    padding: 0.5rem 0.65rem;
    min-width: 52px;
}
.promo-banner__countdown-num {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
    display: block;
}
.promo-banner__countdown-unit {
    font-size: 0.65rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.promo-banner__btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #2ecc71;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    align-self: flex-start;
}
.promo-banner__btn:hover {
    background: #27ae60;
    color: #fff !important;
    transform: translateY(1px);
}

/* ========== Shop Collection – sol: 1 büyük kart (2 satır), sağ: 2 küçük (metin sol, görsel sağ) ========== */

.shop-collection-section {
    background: #fff;
    padding: 3rem 0 4rem;
}

.shop-collection__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem;
    padding: 0;
}

.shop-collection__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    min-height: 620px;
}

.shop-collection__card--large {
    grid-row: span 2;
}

@media (max-width: 991px) {
    .shop-collection__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
    }
    .shop-collection__card--large {
        grid-row: span 1;
        min-height: 380px;
    }
}

/* Ortak kart: yuvarlak köşe, gölge, açık gri arka plan */
.shop-collection__card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #f8f8f8;
}

.shop-collection__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Büyük kart (sol): görsel doldurur, yazı altta overlay */
.shop-collection__card--large {
    position: relative;
    height: 100%;
    min-height: 0;
}

.shop-collection__card--large .shop-collection__card-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shop-collection__card--large .shop-collection__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-collection__card--large .shop-collection__card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 70%);
    color: #fff;
}

.shop-collection__card--large .shop-collection__card-name {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.shop-collection__card--large .shop-collection__card-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

/* Küçük kart (sağ): görsel doldurur, yazı görsel içinde altta overlay */
.shop-collection__card--small {
    position: relative;
    height: 100%;
    min-height: 0;
}

.shop-collection__card--small .shop-collection__card-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shop-collection__card--small .shop-collection__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-collection__card--small .shop-collection__card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 70%);
    color: #fff;
}

.shop-collection__card--small .shop-collection__card-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 0.2rem;
    line-height: 1.3;
}

.shop-collection__card--small .shop-collection__card-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

@media (max-width: 991px) {
    .shop-collection__card--small {
        min-height: 280px;
    }
}

/* ========== Newsletter / Bülten banner – siyah, ortada form ========== */

.newsletter-banner {
    display: flex;
    align-items: stretch;
    min-height: 280px;
    background: #000;
    color: #fff;
}

.newsletter-banner__left,
.newsletter-banner__right {
    flex: 0 0 22%;
    min-width: 0;
}

.newsletter-banner__img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background-color: #000;
    background-size: cover;
    background-position: center;
}

.newsletter-banner__center {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    text-align: center;
}

.newsletter-banner__title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.newsletter-banner__subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem;
    max-width: 420px;
}

.newsletter-banner__success {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.newsletter-banner__form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1rem;
}

.newsletter-banner__icon {
    font-size: 1.1rem;
    color: #fff;
}

.newsletter-banner__input {
    flex: 1 1 200px;
    min-width: 180px;
    max-width: 320px;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    outline: none;
}

.newsletter-banner__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-banner__input:focus {
    border-bottom-color: #fff;
}

.newsletter-banner__btn {
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    white-space: nowrap;
}

.newsletter-banner__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

@media (max-width: 991px) {
    .newsletter-banner {
        flex-direction: column;
        min-height: 0;
    }
    .newsletter-banner__left,
    .newsletter-banner__right {
        flex: 0 0 auto;
        height: 120px;
    }
    .newsletter-banner__img {
        min-height: 120px;
    }
    .newsletter-banner__center {
        padding: 2rem 1.5rem;
    }
    .newsletter-banner__title {
        font-size: 1.5rem;
    }
    .newsletter-banner__form {
        flex-direction: column;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    .newsletter-banner__input {
        width: 100%;
        max-width: none;
    }
}

/* ========== Footer – siyah arka plan, 4 sütun + alt bar ========== */

.site-footer {
    background: #000;
    color: rgba(255, 255, 255, 0.9);
    padding: 3.5rem 0 0;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 2rem 3rem;
    padding-bottom: 2.5rem;
}

@media (max-width: 991px) {
    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }
}

.site-footer__col {
    min-width: 0;
}

.site-footer__brand-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.site-footer__tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0 0 1.25rem;
    max-width: 220px;
}

.site-footer__social {
    display: flex;
    gap: 1rem;
}

.site-footer__social-link {
    color: #fff;
    font-size: 1.1rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.site-footer__social-link:hover {
    opacity: 1;
    color: #fff;
}

.site-footer__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__links li {
    margin-bottom: 0.5rem;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__links a:hover {
    color: #fff;
}

.site-footer__address {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-style: normal;
    margin: 0 0 0.5rem;
}

.site-footer__phone {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.site-footer__phone:hover {
    color: #fff;
}

.site-footer__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0;
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0 2rem;
}

.site-footer__bottom-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

.site-footer__bottom-left a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.site-footer__bottom-left a:hover {
    color: #fff;
}

.site-footer__sep {
    color: rgba(255, 255, 255, 0.4);
    user-select: none;
}

.site-footer__copyright {
    margin-right: 0.25rem;
}

.site-footer__payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.site-footer__payment {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
}

.site-footer__payment i {
    display: block;
}

@media (max-width: 575px) {
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 2rem;
    }
}

/* ========== Özel CTA butonları (Bootstrap varsayılanı yerine) ========== */
.btn-cta {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
    background: #2563eb;
    color: #fff;
}
.btn-cta:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(1px);
}
.btn-cta:active {
    transform: translateY(0);
}

.btn-cta-outline {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
    background: #fff;
    color: #64748b;
    border: 1px solid #94a3b8;
}
.btn-cta-outline:hover {
    background: #f8fafc;
    color: #475569;
    border-color: #64748b;
    transform: translateY(1px);
}
.btn-cta-outline:active {
    transform: translateY(0);
}

/* Özel sayfa içerik alanı */
.page-content { line-height: 1.7; }
.page-content img { max-width: 100%; height: auto; }
.page-content table { width: 100%; border-collapse: collapse; }
.page-content table td, .page-content table th { border: 1px solid #dee2e6; padding: 0.5rem; }

/* Müşteri hesabı sidebar */
.customer-sidebar .list-group-item { border-left: 0; border-right: 0; }
.customer-sidebar .list-group-item a { text-decoration: none; color: #333; display: block; padding: 0.25rem 0; }
.customer-sidebar .list-group-item a:hover { color: #1a73e8; }

/* Fatura yazdırma */
@media print {
    body * { visibility: hidden; }
    #invoice-print, #invoice-print * { visibility: visible; }
    #invoice-print { position: absolute; left: 0; top: 0; width: 100%; }
    .btn, .container .d-flex.justify-content-between { display: none !important; }
}

/* ========== Kategori sayfası – filtreler + ürün grid ========== */
.cat-page {
    background: #f8f9fa;
    min-height: 60vh;
    padding-bottom: 3rem;
}

.cat-page__breadcrumb {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0;
}

.cat-page__breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    font-size: 0.875rem;
}

.cat-page__breadcrumb .breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.cat-page__breadcrumb .breadcrumb-item a:hover {
    color: #000;
}

.cat-page__breadcrumb .breadcrumb-item.active {
    color: #333;
    font-weight: 500;
}

.cat-page__body {
    padding: 1.5rem 0 2rem;
}

.cat-page__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.25rem 0;
}

.cat-page__layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 991px) {
    .cat-page__layout {
        grid-template-columns: 1fr;
    }
}

.cat-page__sidebar {
    position: sticky;
    top: 1.5rem;
}

@media (max-width: 991px) {
    .cat-page__sidebar {
        position: static;
    }
}

.cat-page__filters {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cat-page__filter-block {
    margin-bottom: 1.25rem;
}

.cat-page__filter-block:last-of-type {
    margin-bottom: 1rem;
}

.cat-page__filter-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #555;
    margin: 0 0 0.6rem 0;
}

.cat-page__filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cat-page__filter-list li {
    margin: 0;
}

.cat-page__filter-link {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}

.cat-page__filter-link:hover {
    color: #000;
    background: #f5f5f5;
}

.cat-page__filter-link.is-active {
    font-weight: 600;
    color: #1a1a1a;
}

.cat-page__filter-list--check .cat-page__filter-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
}

.cat-page__filter-list--check input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    accent-color: #1a1a1a;
}

.cat-page__price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cat-page__price-input {
    flex: 1;
    padding: 0.5rem 0.6rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
}

.cat-page__price-input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.cat-page__price-sep {
    color: #999;
    font-size: 0.9rem;
}

.cat-page__price-hint {
    font-size: 0.75rem;
    color: #888;
    margin: 0.4rem 0 0 0;
}

.cat-page__filter-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.cat-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    flex: 1;
}

.cat-page__btn--primary {
    background: #afd876;
    color: #000;
}

.cat-page__btn--primary:hover {
    background: #9bc76a;
    color: #000;
}

.cat-page__btn--secondary {
    background: #f0f0f0;
    color: #333;
}

.cat-page__btn--secondary:hover {
    background: #e5e5e5;
    color: #000;
}

.cat-page__main {
    min-width: 0;
}

.cat-page__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.cat-page__count {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.cat-page__sort-form {
    margin: 0;
}

.cat-page__sort-label {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cat-page__sort-select {
    padding: 0.4rem 0.6rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #fff;
    cursor: pointer;
}

.cat-page__sort-select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.cat-page__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1199px) {
    .cat-page__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .cat-page__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.cat-page__item {
    min-width: 0;
}

.cat-page__empty {
    text-align: center;
    padding: 3rem 1rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cat-page__empty p {
    margin: 0 0 1rem 0;
    color: #666;
}

/* ========== Ürün detay sayfası (PDP) – modern layout ========== */
.pdp {
    background: #f8f9fa;
    min-height: 60vh;
    padding-bottom: 4rem;
}

.pdp__breadcrumb {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0;
}

.pdp__breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    font-size: 0.875rem;
}

.pdp__breadcrumb .breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.pdp__breadcrumb .breadcrumb-item a:hover {
    color: #000;
}

.pdp__breadcrumb .breadcrumb-item.active {
    color: #333;
    font-weight: 500;
}

.pdp__hero {
    padding: 2.5rem 0 3rem;
}

.pdp__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 991px) {
    .pdp__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Galeri: ana resim solda, thumbnail'lar sağda alt alta */
.pdp__gallery {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: flex-start;
    min-width: 0;
}

@media (max-width: 991px) {
    .pdp__gallery {
        flex-direction: column;
    }
}

.pdp__gallery-main {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.pdp__gallery-main-inner {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: #fafafa;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
}

.pdp__gallery-main-inner.is-zoomed {
    cursor: move;
}

.pdp__gallery-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.15s ease-out;
    pointer-events: none;
}

/* Lightbox – tıklayınca büyük görüntü */
.pdp__lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.pdp__lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.pdp__lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.pdp__lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp__lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pdp__lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background 0.2s, color 0.2s;
}

.pdp__lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

body.pdp-lightbox-open {
    overflow: hidden;
}

/* Thumbnail'lar sağda, dikey sıra */
.pdp__thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .pdp__thumbs {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.pdp__thumb {
    width: 56px;
    height: 56px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.pdp__thumb:hover {
    border-color: #ddd;
}

.pdp__thumb.is-active {
    border-color: #2d2d2d;
    box-shadow: 0 0 0 1px #2d2d2d;
}

.pdp__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sidebar – sticky */
.pdp__sidebar {
    position: sticky;
    top: 1.5rem;
}

@media (max-width: 991px) {
    .pdp__sidebar {
        position: static;
    }
}

.pdp__sidebar-inner {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.pdp__title {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.pdp__rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.pdp__stars {
    display: flex;
    gap: 2px;
}

.pdp__star {
    font-size: 0.9rem;
    color: #e0e0e0;
    transition: color 0.2s;
}

.pdp__star.is-filled {
    color: #e6b800;
}

.pdp__rating-text {
    font-size: 0.875rem;
    color: #666;
}

.pdp__price-block {
    margin-bottom: 1.25rem;
}

.pdp__price-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pdp__price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.pdp__price-old {
    display: block;
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-top: 0.25rem;
}

.pdp__badge {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

/* Ürün açıklaması resim/info altında, ayrı bölüm */
.pdp__description {
    padding: 2rem 0 2.5rem;
    background: #fff;
    border-top: 1px solid #eee;
}

.pdp__description .pdp__section-title {
    margin-bottom: 1rem;
}

.pdp__description-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    max-width: 72ch;
}

.pdp__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pdp__form {
    display: block;
}

.pdp__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.1s;
    width: 100%;
}

.pdp__btn--primary {
    background: #afd876;
    color: #000;
}

.pdp__btn--primary:hover {
    background: #9bc76a;
    color: #000;
}

.pdp__btn--secondary {
    background: #fff;
    color: #333;
    border: 2px solid #e0e0e0;
}

.pdp__btn--secondary:hover {
    border-color: #333;
    color: #333;
}

.pdp__btn--full {
    width: 100%;
}

.pdp__trust {
    list-style: none;
    margin: 1.5rem 0 0 0;
    padding: 1.25rem 0 0 0;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.pdp__trust li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #666;
}

.pdp__trust li i {
    color: #afd876;
    font-size: 0.9rem;
}

/* Bölüm başlıkları */
.pdp__section-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    color: #1a1a1a;
}

.pdp__section-title--sm {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Yorumlar bölümü */
.pdp__reviews {
    padding: 2rem 0 3rem;
    background: #fff;
    border-top: 1px solid #eee;
}

.pdp__reviews-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 991px) {
    .pdp__reviews-grid {
        grid-template-columns: 1fr;
    }
}

.pdp__reviews-empty {
    color: #888;
    font-size: 0.95rem;
    margin: 0;
}

.pdp__reviews-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pdp__review-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.pdp__review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.pdp__review-stars {
    display: flex;
    gap: 2px;
}

.pdp__review-stars .fa-star {
    font-size: 0.8rem;
    color: #e0e0e0;
}

.pdp__review-stars .fa-star.is-filled {
    color: #e6b800;
}

.pdp__review-meta {
    font-size: 0.8rem;
    color: #888;
}

.pdp__review-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #333;
    margin: 0;
}

.pdp__review-form-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 1.5rem;
}

.pdp__review-form .pdp__form-group {
    margin-bottom: 1.25rem;
}

.pdp__review-form .pdp__form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.pdp__rating-input {
    display: flex;
    gap: 0.25rem;
}

.pdp__rating-btn {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    background: #e8e8e8;
    border-radius: 8px;
    color: #999;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.pdp__rating-btn:hover {
    background: #f0e6b8;
    color: #c9a227;
}

.pdp__rating-btn.is-active {
    background: #e6b800;
    color: #fff;
}

.pdp__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s;
}

.pdp__textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.pdp__form-error {
    display: block;
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: 0.35rem;
}

.pdp__login-prompt {
    color: #666;
    font-size: 0.95rem;
}

.pdp__login-prompt a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
}

.pdp__login-prompt a:hover {
    text-decoration: underline;
}

/* Önerilen ürünler */
.pdp__recommended {
    padding: 2.5rem 0 4rem;
    background: #f8f9fa;
}

.pdp__recommended .pdp__section-title {
    margin-bottom: 1.5rem;
}

.pdp__recommended-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1199px) {
    .pdp__recommended-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .pdp__recommended-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.pdp__recommended-item {
    min-width: 0;
}