/* Language switcher (header) */
.lang-switcher {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.lang-switcher .lang-switcher-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-switcher .lang-current-code {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lang-switcher .lang-dropdown {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 200px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher .lang-dropdown li {
    margin: 0;
    padding: 0;
}

.lang-switcher .lang-option {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background 0.15s ease;
}

.lang-switcher .lang-option:hover,
.lang-switcher .lang-option:focus {
    background: #f5f5f5;
    outline: none;
}

.lang-switcher .lang-option[aria-current="true"] {
    font-weight: 600;
    color: #f4723b;
}

/* Mağaza mock: yıldız + stok (TRY fiyat kart içinde) */
.shop-mock-rating {
    margin: 6px 0 4px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1px;
}

.shop-mock-rating .twi-star {
    color: #e0e0e0;
}

.shop-mock-rating .twi-star::before {
    color: inherit;
}

.shop-mock-rating .twi-star.shop-mock-star--on {
    color: #ffc107;
}

.shop-mock-stock {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 600;
}

.shop-mock-stock--ok {
    color: #2563eb;
}

.shop-mock-stock--out {
    color: #dc2626;
}

/* Dikey kutu görselleri (PNG mock) */
.single-shop-product .sp-thumb img[src$=".png"] {
    max-height: 300px;
    width: 100%;
    object-fit: contain;
    background: #f8f8f8;
}

.shop-inline-add-form {
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.shop-inline-add-form .sp-cart {
    border: none;
    background: transparent;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

.sp-cart--disabled {
    opacity: 0.45;
    pointer-events: none;
}

.product-slider .carousel-indicators li img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
}

button.add-to-cart-btn {
    border: none;
    cursor: pointer;
    font: inherit;
}
