/* ==================================================================
   Vexaura Theme — kozmetikcare v5-urban tasarım kimliği birebir aktarım
   Bootstrap 5.3 + Swiper 11 + Bootstrap Icons üzerine sadeleştirilmiş
   Palet: yeşil #117051 · turuncu CTA #ff7f00 · pembe aksan #d60058
          koyu marquee #09241e · metin #373738 · bg #fff / #f9f9f9
   Font:  Poppins 16px / 1.34
   Radius: 10px
================================================================== */

:root {
    /* Arka planlar */
    --vx-bg-body:        #ffffff;
    --vx-bg-primary:     #117051;
    --vx-bg-primary-dk:  #0d5a40;
    --vx-bg-secondary:   #c07808;
    --vx-bg-success:     #44c61f;
    --vx-bg-info:        #3dc6c1;
    --vx-bg-warning:     #fcdf27;
    --vx-bg-danger:      #ff0000;
    --vx-bg-light:       #f9f9f9;
    --vx-bg-dark:        #2c2a28;
    --vx-bg-gray:        #a0a0a0;

    /* CTA (turuncu) + Aksan (pembe) */
    --vx-button-primary:  #ff7f00;
    --vx-button-primary-hover: #b00048;
    --vx-button-secondary: #f0f0f0;
    --vx-button-success:  #44c61f;
    --vx-button-success-hover: #39a51a;
    --vx-button-light:    #eaeaea;
    --vx-button-dark:     #2c2a28;

    --vx-accent:          #ff7f00;
    --vx-accent-dark:     #b00048;
    --vx-accent2:         #d60058;

    /* Kenarlıklar */
    --vx-border-primary:  #ff7f00;
    --vx-border-light:    #eeeeee;
    --vx-border-secondary:#f0f0f0;
    --vx-border-gray:     #dddddd;
    --vx-border-dark:     #2c2a28;

    /* Metin */
    --vx-text-primary:    #ff7f00;
    --vx-text-body:       #373738;
    --vx-text-heading:    #373738;
    --vx-text-gray:       #b0b0b0;
    --vx-text-light:      #979797;
    --vx-text-dark:       #2c2a28;

    --vx-radius:          10px;
    --vx-radius-pill:     30px;

    --vx-announcement-bg:   #09241e;
    --vx-announcement-text: #ffffff;

    --vx-tr:              all .3s;
    --vx-tr-fast:         all .2s ease-in-out;

    /* Bootstrap 5 token override — tema kimliğiyle hizala */
    --bs-body-font-family:    'Poppins', sans-serif;
    --bs-body-font-size:      16px;
    --bs-body-line-height:    1.34;
    --bs-body-color:          #373738;
    --bs-font-sans-serif:     'Poppins', sans-serif;
    --bs-primary:             #117051;
    --bs-primary-rgb:         17, 112, 81;
    --bs-border-radius:       10px;
    --bs-border-radius-sm:    4px;
    --bs-link-color:          #ff7f00;
    --bs-link-hover-color:    #b00048;
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
    margin: 0;
    padding: 0;
    /* Mobilde yatay taşmayı önle: çocuk elemanlar viewport'u aşsa bile sayfa sağa-sola kaymasın. */
    max-width: 100%;
    overflow-x: hidden;
}
body.vx-body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.34;
    color: var(--vx-text-body);
    background: var(--vx-bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    width: 100%;
}
/* Drawer açıkken body'nin kaymasını kilitle. */
body.vx-body.vx-drawer-open {
    overflow: hidden;
    touch-action: none;
}
body.vx-body *,
body.vx-body input, body.vx-body button,
body.vx-body select, body.vx-body textarea, body.vx-body optgroup {
    font-family: 'Poppins', sans-serif;
}

/* ── Tipografi ──────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    color: var(--vx-text-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 10px;
}
h1, .h1 { font-size: 24px; }
h2, .h2 { font-size: 20px; }
h3, .h3 { font-size: 18px; }
h4, .h4 { font-size: 16px; }
h5, .h5 { font-size: 14px; }
h6, .h6 { font-size: 13px; }
@media (min-width: 1200px) {
    h1, .h1 { font-size: 32px; }
    h2, .h2 { font-size: 26px; }
    h3, .h3 { font-size: 22px; }
    h4, .h4 { font-size: 18px; }
}

a { color: inherit; text-decoration: none; transition: color var(--vx-tr-fast); }
a:hover { color: var(--vx-accent); }

img { max-width: 100%; height: auto; display: block; }

/* ── Container ──────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .container { padding-left: 15px; padding-right: 15px; }
}
@media (min-width: 1200px) {
    .container { width: 1200px; max-width: 1200px; }
}

/* ── Ekstra yardımcılar (kozmetikcare kökenli) ──────────────────── */
.border-round        { border-radius: var(--vx-radius) !important; }
.border-rounded      { border-radius: var(--vx-radius-pill) !important; }
.border-light        { border-color: var(--vx-border-light) !important; }
.border-primary      { border-color: var(--vx-border-primary) !important; }
.border-bottom-light { border-bottom: 1px solid var(--vx-border-light) !important; }
.text-body           { color: var(--vx-text-body) !important; }
.text-gray           { color: var(--vx-text-gray) !important; }
.text-light          { color: var(--vx-text-light) !important; }
.text-primary        { color: var(--vx-text-primary) !important; }
.text-white-50       { color: rgba(255,255,255,.5) !important; }
.text-black          { color: #000 !important; }
.bg-primary          { background-color: var(--vx-bg-primary) !important; }
.bg-primary-accent   { background-color: var(--vx-accent) !important; }
.bg-light            { background-color: var(--vx-bg-light) !important; }
.bg-dark             { background-color: var(--vx-bg-dark) !important; }
.fw-medium           { font-weight: 500 !important; }
.fw-semibold         { font-weight: 600 !important; }
.fw-bold             { font-weight: 700 !important; }
.fw-black            { font-weight: 900 !important; }
.fs-7                { font-size: .875rem !important; }
.fs-8                { font-size: .75rem !important; }
.list-style-none, .list-type-none { list-style: none; margin: 0; padding: 0; }
.flex-direction-column { flex-direction: column !important; }
.justify-content-flex-end { justify-content: flex-end !important; }

/* ── Butonlar ───────────────────────────────────────────────────── */
.btn {
    background-color: transparent;
    color: #212529;
    font-size: 13px;
    line-height: 1.2;
    padding: 11.11px 15px;
    border: 1px solid transparent;
    border-radius: var(--vx-radius);
    font-family: 'Poppins', sans-serif;
    transition: var(--vx-tr);
}
@media (min-width: 768px) {
    .btn { font-size: 14px; }
}
.btn.btn-primary {
    background-color: var(--vx-button-primary);
    border-color: var(--vx-button-primary);
    color: #fff;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary.active {
    background-color: var(--vx-button-primary-hover);
    border-color: var(--vx-button-primary-hover);
    color: #fff;
}
.btn.btn-outline-primary {
    background-color: transparent;
    border-color: var(--vx-button-primary);
    color: var(--vx-button-primary);
}
.btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus {
    background-color: var(--vx-button-primary);
    color: #fff;
}
.btn.btn-success {
    background-color: var(--vx-button-success);
    border-color: var(--vx-button-success);
    color: #fff;
}
.btn.btn-success:hover { background-color: var(--vx-button-success-hover); border-color: var(--vx-button-success-hover); color: #fff; }
.btn.btn-light { background-color: var(--vx-button-light); border-color: var(--vx-button-light); color: #2c2a28; }
.btn.btn-light:hover { background-color: #d7d7d7; border-color: #d7d7d7; color: #2c2a28; }
.btn.btn-dark { background-color: var(--vx-button-dark); border-color: var(--vx-button-dark); color: #fff; }
.btn.btn-dark:hover { background-color: #181716; border-color: #181716; color: #fff; }
.btn.btn-md { font-size: 14px; padding: 15px 18px; }
@media (min-width: 768px) {
    .btn.btn-md { font-size: 16px; padding: 18px 24px; }
}
.btn.btn-sm { font-size: 12px; padding: 7px 12px; }

/* Kozmetikcare "sepeteekle" — turuncu dolgu zorla */
.sepeteekle {
    background-color: var(--vx-button-primary) !important;
    color: #fff !important;
    border-color: var(--vx-button-primary) !important;
}
.sepeteekle:hover {
    background-color: var(--vx-button-primary-hover) !important;
    border-color: var(--vx-button-primary-hover) !important;
}

/* ── Form ───────────────────────────────────────────────────────── */
.form-control {
    background-color: #fff;
    color: var(--vx-text-body);
    font-size: 13px;
    line-height: 1.5;
    height: 38px;
    padding: 4px 15px;
    border: 1px solid var(--vx-border-secondary);
    border-radius: var(--vx-radius);
    font-family: 'Poppins', sans-serif;
}
.form-control:focus {
    border-color: var(--vx-border-primary);
    outline: 0;
    box-shadow: 0 0 0 .15rem rgba(255,127,0,.15);
}
.form-control-sm { font-size: 12px; height: 30.4px; }
.form-control-md { height: 45.6px; font-size: 14px; }
.form-control-lg { height: 53.2px; font-size: 15px; }

/* Tek satırlı input yüksekliği textarea'ya uygulanmasın (iletişim "mesaj" alanı). */
textarea.form-control {
    height: auto;
    min-height: 8rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    resize: vertical;
}

/* ── Swiper override ────────────────────────────────────────────── */
.swiper-button-prev, .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--vx-border-light);
    border-radius: 50%;
    color: var(--vx-text-body);
    top: 50%;
    margin-top: -20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: var(--vx-tr-fast);
}
.swiper-button-prev::after, .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}
.swiper-button-prev.outside { left: -20px; }
.swiper-button-next.outside { right: -20px; }
@media (min-width: 1400px) {
    .swiper-button-prev.outside { left: -90px; }
    .swiper-button-next.outside { right: -90px; }
}
@media (max-width: 991.98px) {
    .swiper-button-prev.outside { left: 5px; }
    .swiper-button-next.outside { right: 5px; }
}
.swiper-button-prev:hover, .swiper-button-next:hover { color: var(--vx-accent); border-color: var(--vx-accent); }
.swiper-pagination { min-height: 34px; }
.swiper-pagination-bullet {
    width: 5px; height: 5px;
    background: var(--vx-bg-gray);
    opacity: 1;
    border-radius: 5px;
    transition: width .2s ease;
}
.swiper-pagination-bullet-active {
    width: 20px;
    background: var(--vx-accent2);
}

/* ── Üst yeşil duyuru bandı (header üstünde, statik) ────────────── */
.vx-top-band {
    background-color: var(--vx-bg-primary);
    color: #fff;
    text-align: center;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 500;
}
.vx-top-band strong { font-weight: 700; }

/* ── Header ─────────────────────────────────────────────────────── */
#vx-header-sticky {
    background: #fff;
    position: relative;
    padding: 15px;
    z-index: 90;
}
#vx-header-sticky.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.vx-header-main {
    padding: 8px 0;
}
.vx-header-main .row { align-items: center; }

.vx-logo-wrap { display: flex; align-items: center; }
.vx-logo-wrap img, .vx-logo-wrap svg { max-height: 60px; width: auto; }
.vx-logo-wrap .vx-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--vx-bg-primary);
    letter-spacing: -.5px;
}

/* Mobil hamburger — ti-menu yerine bi-list */
.vx-mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border: 1px solid var(--vx-border-primary);
    border-radius: var(--vx-radius);
    color: var(--vx-accent);
    font-size: 22px;
    background: #fff;
    text-decoration: none;
}
.vx-mobile-menu-btn:hover { color: var(--vx-accent); background: rgba(255,127,0,.05); }

/* Arama formu (header ortası) */
#vx-header-search {
    position: relative;
}
#vx-header-search form {
    position: relative;
    width: 100%;
}
#vx-header-search input[type="search"],
#vx-header-search input[type="text"] {
    width: 100%;
    height: 53.2px;
    padding: 4px 55px 4px 15px;
    font-size: 14px;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    background: #fff;
}
#vx-header-search input:focus { border-color: var(--vx-accent); outline: 0; }
#vx-header-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px; height: 43px;
    background: var(--vx-button-primary);
    color: #fff;
    border: none;
    border-radius: var(--vx-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background var(--vx-tr-fast);
}
#vx-header-search button:hover { background: var(--vx-button-primary-hover); }

/* Sağ araçlar (`hm-links`) */
.vx-hm-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}
.vx-hm-links .vx-hm-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    font-size: 13px;
    color: var(--vx-text-body);
    text-decoration: none;
    position: relative;
    border-radius: var(--vx-radius);
    transition: background var(--vx-tr-fast);
}
.vx-hm-links .vx-hm-btn:hover { background: var(--vx-bg-light); color: var(--vx-accent); }
.vx-hm-links .vx-hm-btn .bi { font-size: 22px; }
.vx-hm-links .vx-hm-btn .vx-hm-label { display: none; }
@media (min-width: 1200px) {
    .vx-hm-links .vx-hm-btn .vx-hm-label { display: block; line-height: 1.1; }
    .vx-hm-links .vx-hm-btn .vx-hm-label small { display: block; font-size: 11px; color: var(--vx-text-light); }
}
.vx-cart-count, .sepetCount, .cart-soft-count {
    position: absolute;
    top: 0; right: 0;
    min-width: 18px; height: 18px;
    padding: 0 4px;
    background: var(--vx-accent2);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.vx-cart-count:empty, .sepetCount:empty, .cart-soft-count:empty { display: none; }

/* Ana yeşil menü — #vx-main-menu */
#vx-main-menu {
    background: var(--vx-bg-primary);
    position: relative;
    z-index: 70;
}
#vx-main-menu ul.vx-menu {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;
}
#vx-main-menu ul.vx-menu > li {
    position: relative;
}
#vx-main-menu ul.vx-menu > li > a {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3px;
    white-space: nowrap;
    text-decoration: none;
    transition: background var(--vx-tr-fast);
}
#vx-main-menu ul.vx-menu > li > a:hover,
#vx-main-menu ul.vx-menu > li.active > a {
    background: rgba(255,255,255,.1);
    color: #fff;
}
#vx-main-menu .vx-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    padding: 10px 0;
    box-shadow: 0 12px 32px rgba(0,0,0,.15);
    z-index: 100;
    border-radius: 0 0 var(--vx-radius) var(--vx-radius);
    border-top: 3px solid var(--vx-accent);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .2s, transform .2s;
}
#vx-main-menu ul.vx-menu > li:hover .vx-sub-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
#vx-main-menu .vx-sub-menu a {
    display: block;
    padding: 9px 20px;
    color: var(--vx-text-body);
    font-size: 13px;
    transition: background var(--vx-tr-fast), color var(--vx-tr-fast);
}
#vx-main-menu .vx-sub-menu a:hover { background: var(--vx-bg-light); color: var(--vx-accent); }

/* Scroll to up */
#vx-scroll-up {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 44px; height: 44px;
    background: var(--vx-bg-primary);
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 51;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
#vx-scroll-up.show { display: flex; }
@media (min-width: 768px) {
    #vx-scroll-up { bottom: 20px; }
}

/* ── Marquee (index ana sayfa) ──────────────────────────────────── */
@keyframes vxMarquee {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}
.vx-marquee {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 40px;
    line-height: 40px;
    padding: 0;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}
.vx-marquee--dark { background-color: var(--vx-announcement-bg); }
.vx-marquee--orange { background-color: var(--vx-accent); }
.vx-marquee__wrapper { display: flex; width: 100%; }
.vx-marquee__track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    align-items: center;
    height: 40px;
    animation: vxMarquee 40s linear infinite;
}
.vx-marquee__track span {
    display: inline-block;
    padding: 0 30px;
    white-space: nowrap;
}

/* ── Drawer (mobil menu / sepet panel / kupon) ──────────────────── */
.vx-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 999;
    display: none;
}
.vx-drawer-overlay.show { display: block; }
.vx-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    /* Mobilde 320px viewport'u aşabilir; en fazla 88vw ile kısıt. */
    width: min(290px, 88vw);
    max-width: 100vw;
    height: 100%;
    background: #fff;
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transition: left .3s;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0,0,0,.12);
}
.vx-drawer.right { left: auto; right: -320px; transition: right .3s; }
.vx-drawer.show { left: 0; }
.vx-drawer.right.show { right: 0; }
.vx-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--vx-bg-primary);
    color: #fff;
    min-height: 60px;
}
.vx-drawer-head .vx-drawer-title { font-weight: 700; font-size: 16px; text-transform: uppercase; }
.vx-drawer-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.vx-drawer-body { padding: 16px 20px; flex: 1; overflow-y: auto; }

.vx-mob-search { padding: 12px 16px; border-bottom: 1px solid var(--vx-border-light); }
.vx-mob-search form { display: flex; gap: 8px; }
.vx-mob-search input {
    flex: 1;
    height: 40px;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    padding: 0 12px;
    font-size: 13px;
}
.vx-mob-search button {
    background: var(--vx-accent);
    color: #fff;
    border: none;
    border-radius: var(--vx-radius);
    padding: 0 14px;
    font-size: 16px;
    cursor: pointer;
}
.vx-mob-menu { list-style: none; margin: 0; padding: 0; min-width: 0; }
.vx-mob-menu > li {
    border-bottom: 1px solid var(--vx-border-light);
    min-width: 0;
}
.vx-mob-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 20px;
    color: var(--vx-text-body);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    /* Uzun başlıklar satır dışına taşmasın. */
    word-break: break-word;
    overflow-wrap: anywhere;
    min-width: 0;
}
.vx-mob-menu > li > a:hover { background: var(--vx-bg-light); color: var(--vx-accent); }
.vx-mob-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--vx-bg-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
}
.vx-mob-menu > li.open .vx-mob-submenu { max-height: 800px; }
.vx-mob-submenu li a {
    display: block;
    padding: 10px 30px;
    font-size: 13px;
    color: var(--vx-text-light);
    text-decoration: none;
}

/* ── block-title (kozmetikcare başlık stili) ───────────────────── */
.block-title {
    color: #000;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
    position: relative;
    line-height: 1.2;
}
.block-title span { font-weight: 400; }
@media (max-width: 767.98px) {
    .block-title { font-size: .875rem; }
}
.block-title.no-line::after { display: none; }

/* ── Ürün kartı (product-item) — kozmetikcare birebir ──────────── */
.product-item {
    margin-bottom: 15px;
}
.product-item > .bg-white,
.product-item > div.w-100 {
    background: #fff;
    border-radius: var(--vx-radius);
    transition: var(--vx-tr-fast);
    overflow: visible;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-item .border.border-round {
    border: 1px solid var(--vx-border-light) !important;
    border-radius: var(--vx-radius) !important;
    transition: border-color var(--vx-tr-fast);
    overflow: hidden;
    background: #fff;
}
.product-item:hover .border.border-round { border-color: var(--vx-accent2) !important; }

/* Görsel 1:1 */
.image-wrapper {
    display: block;
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    background: #fff;
}
.image-wrapper .image-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.image-wrapper .image-inner img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .35s ease;
}
.product-item:hover .image-inner img { transform: scale(1.04); }

/* Favori */
.add-favourite-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px; height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--vx-text-light);
    border-radius: 50%;
    border: 1px solid var(--vx-border-light) !important;
    font-size: 16px;
    z-index: 3;
    transition: var(--vx-tr-fast);
}
.add-favourite-btn:hover, .add-favourite-btn.fav-added { color: var(--vx-accent2); border-color: var(--vx-accent2) !important; }

/* Kart gövde */
.product-detail-card {
    position: relative;
    padding: 10px;
    padding-bottom: 80px;
    flex: 1;
}
.product-detail-card .brand-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--vx-text-body);
    text-decoration: none;
    margin-bottom: 4px;
    line-height: 1.3;
}
@media (min-width: 768px) {
    .product-detail-card .brand-title { font-size: 14px; }
}
.product-detail-card .product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    margin-bottom: 6px;
    line-height: 1.4;
    min-height: 2.8em;
}
.product-detail-card .product-title:hover { color: var(--vx-accent); }

/* Alt satır (fiyat + butonlar) absolute */
.product-bottom-line {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.product-price-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    min-height: 24px;
}
.product-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--vx-text-body);
}
.old-price {
    font-size: 12px;
    color: var(--vx-text-light);
    text-decoration: line-through;
    font-weight: 400;
}
.discount {
    background: var(--vx-accent2);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}
.product-buttons {
    display: flex;
    gap: 5px;
}
.product-buttons .add-to-cart-btn,
.product-buttons .sepeteekle {
    flex: 1 1 0;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 6px;
    text-align: center;
    line-height: 1.2;
    border-radius: var(--vx-radius);
}
/* Kozmetikcare referansı: "Şimdi Al / Hemen Al" = btn-outline-primary → turuncu yazı + turuncu kenar + şeffaf zemin. */
.product-buttons .add-to-cart-btn,
.product-buttons a.add-to-cart-btn {
    background-color: transparent !important;
    color: var(--vx-button-primary) !important;
    border-color: var(--vx-button-primary) !important;
}
.product-buttons .add-to-cart-btn:hover,
.product-buttons a.add-to-cart-btn:hover,
.product-buttons .add-to-cart-btn:focus,
.product-buttons a.add-to-cart-btn:focus {
    background-color: var(--vx-button-primary) !important;
    color: #fff !important;
    border-color: var(--vx-button-primary) !important;
}

/* ── Breadcrumb ─────────────────────────────────────────────────── */
.vx-breadcrumb { padding: 12px 0; font-size: 12px; }
.vx-breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0; padding: 0;
    gap: 6px;
    align-items: center;
}
.vx-breadcrumb li { display: flex; align-items: center; }
.vx-breadcrumb li + li::before {
    content: '/';
    margin-right: 6px;
    color: var(--vx-text-light);
}
.vx-breadcrumb a { color: var(--vx-text-light); text-decoration: none; }
.vx-breadcrumb a:hover { color: var(--vx-accent); }
.vx-breadcrumb li:last-child a { color: #000; font-weight: 500; }

/* ── Kategori listesi — başlık + breadcrumb + araçlar tek blok ───── */
.vx-cat-pagehead {
    background: #fff;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    padding: 14px 18px;
    margin-bottom: 1rem;
}
.vx-cat-breadcrumb.vx-breadcrumb {
    padding: 0 0 12px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--vx-border-light);
}
.vx-cat-head-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 12px;
}
@media (min-width: 992px) {
    .vx-cat-head-row {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    .vx-cat-title {
        flex: 1 1 auto;
        min-width: 0;
        padding-right: 8px;
    }
}
#myt-category-toolbar.vx-cat-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    width: 100%;
}
@media (min-width: 992px) {
    #myt-category-toolbar.vx-cat-toolbar {
        flex-wrap: nowrap;
        width: auto;
        flex: 0 1 auto;
        max-width: min(560px, 58%);
        justify-content: flex-end;
        margin-left: auto;
    }
}
.vx-cat-count {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 12px;
}
.vx-cat-search-wrap {
    position: relative;
    flex: 1 1 160px;
    min-width: 0;
    max-width: 280px;
}
@media (max-width: 991.98px) {
    .vx-cat-search-wrap {
        max-width: none;
        flex: 1 1 100%;
    }
}
.vx-cat-toolbar .vx-cat-sort,
.vx-cat-toolbar .myt-cat-sort {
    flex: 0 1 auto;
    min-width: 148px;
    max-width: 100%;
}
@media (max-width: 575.98px) {
    #myt-category-toolbar.vx-cat-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .vx-cat-count { order: -1; }
    .vx-cat-toolbar .vx-cat-sort,
    .vx-cat-toolbar .myt-cat-sort {
        width: 100%;
        max-width: none;
    }
}
.vx-cat-pager-bar {
    background: #fff;
}

/* ── PDP (ürün detay) ───────────────────────────────────────────── */
.folder-product-detail { padding: 20px 0; }
.product-detail-images-wrapper { width: 100%; }
.product-detail-images {
    position: relative;
    background: #fff;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    overflow: hidden;
    margin-bottom: 10px;
}
#product-detail-slider, .product-detail-images .swiper {
    width: 100%;
}
.product-detail-images .swiper-slide {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-detail-images .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-thumb-slider .swiper-slide {
    width: 25%;
    border: 1.5px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}
.product-thumb-slider .swiper-slide.active,
.product-thumb-slider .swiper-slide:hover { border-color: var(--vx-accent2); }
.product-thumb-slider .swiper-slide img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* PDP sağ kolon */
.pdp-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    margin: 0 0 10px;
}
#product-code, .pdp-code { font-size: 12px; color: var(--vx-text-light); }
.pdp-brand a, #brand-title { font-weight: 700; color: var(--vx-text-body); text-decoration: none; }
.pdp-price-wrapper {
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.pdp-old-price { font-size: 14px; color: var(--vx-text-light); text-decoration: line-through; }
.pdp-current-price { font-size: 24px; font-weight: 700; color: var(--vx-text-body); }
.pdp-current-price.red { color: var(--vx-accent2); }
.pdp-discount-label {
    background: var(--vx-accent2);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 6px;
}

.pdp-stock-info { padding: 10px 0; }
.pdp-stock-info .in-stock { color: var(--vx-bg-success); font-weight: 600; }
.pdp-stock-info .out-stock { color: var(--vx-bg-danger); font-weight: 600; }

.pdp-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    width: fit-content;
    overflow: hidden;
}
.pdp-qty button {
    width: 38px; height: 44px;
    background: var(--vx-bg-light);
    border: none;
    font-size: 16px;
    cursor: pointer;
}
.pdp-qty input {
    width: 50px; height: 44px;
    border: none;
    border-left: 1px solid var(--vx-border-light);
    border-right: 1px solid var(--vx-border-light);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}
.pdp-qty input::-webkit-outer-spin-button,
.pdp-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pdp-add-cart {
    width: 100%;
    padding: 15px;
    background: var(--vx-accent);
    color: #fff;
    border: 1px solid var(--vx-accent);
    border-radius: var(--vx-radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: background var(--vx-tr-fast);
}
.pdp-add-cart:hover { background: var(--vx-accent-dark); border-color: var(--vx-accent-dark); }

/* PDP tabs */
.product-detail-tab-container {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
}
.tab-nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 20px;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--vx-border-light);
    gap: 4px;
}
.tab-nav li { }
.tab-nav li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--vx-text-light);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: var(--vx-tr-fast);
}
.tab-nav li a:hover { color: var(--vx-accent); }
.tab-nav li.active a { color: var(--vx-accent2); border-bottom-color: var(--vx-accent2); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ── Sepet ──────────────────────────────────────────────────────── */
.cart-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--vx-border-light);
}
.cart-item .image-wrapper {
    width: 100px;
    padding-bottom: 100px;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    overflow: hidden;
}
.cart-product-brand { font-size: 13px; font-weight: 700; color: #000; text-decoration: none; }
.cart-product-title { font-size: 13px; color: var(--vx-text-light); text-decoration: none; display: block; }
.cart-box-title { display: block; font-size: 12px; color: var(--vx-text-light); margin-bottom: 4px; }
.cart-product-price-wrapper .price-sell { font-weight: 700; color: var(--vx-accent); font-size: 15px; }
.cart-item-delete {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vx-bg-light);
    border-radius: 50%;
    color: var(--vx-text-light);
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.cart-item-delete:hover { color: var(--vx-accent2); background: #fff5f7; }

.cart-price-container-sticky {
    position: sticky;
    top: 100px;
}
.cart-price-box {
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    padding: 16px;
    background: #fff;
}
.cart-price-box .row { margin-bottom: 6px; font-size: 13px; }
.cart-price-box .row.fw-bold { font-size: 16px; color: var(--vx-accent); padding-top: 8px; border-top: 1px solid var(--vx-border-light); margin-top: 8px; }
.sepetGenelToplam { font-weight: 700; }

/* ── Hesabım ────────────────────────────────────────────────────── */
.folder-customer-login { padding: 20px 0; }
.member-quick-menu {
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    overflow: hidden;
    background: #fff;
}
.member-avatar {
    background: var(--vx-bg-light);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.member-avatar i {
    width: 44px; height: 44px;
    background: var(--vx-bg-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.member-name { display: block; font-weight: 700; color: #000; }
.member-email { display: block; color: var(--vx-accent); font-size: 12px; }
.member-quick-menu ul { list-style: none; margin: 0; padding: 0; }
.member-quick-menu ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid var(--vx-border-light);
    color: var(--vx-text-body);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--vx-tr-fast);
}
.member-quick-menu ul li a:hover { background: var(--vx-bg-light); color: var(--vx-accent); }
.member-quick-menu ul li.active a { background: var(--vx-bg-light); color: var(--vx-accent2); border-left: 3px solid var(--vx-accent2); }

.member-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    color: var(--vx-text-body);
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    min-height: 120px;
    transition: var(--vx-tr-fast);
}
.member-menu-btn:hover { border-color: var(--vx-accent); color: var(--vx-accent); }
.member-menu-btn .member-menu-icon {
    width: 44px; height: 44px;
    background: var(--vx-bg-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.vx-footer-trust {
    padding: 24px 0;
    border-top: 1px solid var(--vx-border-light);
    border-bottom: 1px solid var(--vx-border-light);
    background: #fff;
}
.vx-footer-trust .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 10px 0;
}
.vx-footer-trust .trust-item i { font-size: 36px; color: var(--vx-bg-primary); }
.vx-footer-trust .trust-item span { color: #000; font-size: 14px; font-weight: 500; }

#vx-footer {
    background: var(--vx-bg-primary);
    color: rgba(255,255,255,.88);
    padding: 40px 0 0;
    margin-top: 30px;
}
#vx-footer a { color: rgba(255,255,255,.75); text-decoration: none; transition: color var(--vx-tr-fast); }
#vx-footer a:hover { color: #fff; }
.vx-footer-logo img { height: 60px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.vx-footer-desc { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.65); max-width: 280px; }

.vx-footer-col h4, .vx-footer-col .menu-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.2);
    position: relative;
}
.vx-footer-col ul { list-style: none; margin: 0; padding: 0; }
.vx-footer-col ul li { margin-bottom: 8px; font-size: 13px; }

/* Newsletter (footer üst şerit) */
.vx-footer-newsletter {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
    margin-bottom: 30px;
}
.vx-footer-newsletter h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    text-transform: uppercase;
}
.vx-footer-newsletter p { color: rgba(255,255,255,.7); font-size: 13px; margin: 0; }
.vx-footer-newsletter form { display: flex; gap: 8px; }
.vx-footer-newsletter input {
    flex: 1;
    height: 44px;
    padding: 0 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--vx-radius);
    color: #fff;
    font-size: 13px;
    outline: none;
}
.vx-footer-newsletter input::placeholder { color: rgba(255,255,255,.5); }
.vx-footer-newsletter button {
    padding: 0 18px;
    height: 44px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: var(--vx-radius);
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background var(--vx-tr-fast);
}
.vx-footer-newsletter button:hover { background: var(--vx-accent); }

/* Sosyal ikonlar */
.vx-footer-social { display: flex; gap: 8px; margin-top: 10px; }
.vx-footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: background var(--vx-tr-fast);
}
.vx-footer-social a:hover { background: var(--vx-accent); color: #fff; }

/* Footer alt bar */
.vx-footer-bottom {
    background: var(--vx-bg-dark);
    margin-top: 30px;
    padding: 14px 0;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    text-align: center;
}

/* Payment icons */
.vx-payment-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 18px 0;
    flex-wrap: wrap;
}
.vx-payment-icons img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .85;
}
.vx-payment-icons i { color: rgba(255,255,255,.8); font-size: 24px; }

/* WhatsApp sabit widget */
.vx-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 15px;
    z-index: 99999;
    background: var(--vx-bg-primary);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--vx-tr-fast);
}
.vx-whatsapp:hover { background: #26a69a; color: #fff; }
.vx-whatsapp i { font-size: 20px; }

/* ── Section wrappers (kozmetikcare folder-* eşleştirme) ────────── */
.vx-section {
    padding: 20px 0;
}
.vx-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 8px;
}
.vx-section-head .view-all {
    font-size: 12px;
    font-weight: 600;
    color: var(--vx-accent);
    text-transform: uppercase;
    text-decoration: none;
}

.slider-block-wrapper { position: relative; overflow: hidden; border-radius: var(--vx-radius); }
.slider-block-wrapper .swiper-slide img { width: 100%; height: auto; display: block; object-fit: cover; }

/* ── Auth kart (giriş/kayıt/şifre unuttum) ─────────────────────── */
.vx-auth-card {
    max-width: 480px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.vx-auth-tabs {
    display: flex;
    list-style: none;
    margin: 0 0 24px;
    padding: 0 0 0 0;
    border-bottom: 1px solid var(--vx-border-light);
    gap: 0;
}
.vx-auth-tabs li { flex: 1; }
.vx-auth-tabs li a {
    display: block;
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--vx-text-light);
    text-decoration: none;
    border-bottom: 2px solid transparent;
}
.vx-auth-tabs li.active a { color: var(--vx-accent2); border-bottom-color: var(--vx-accent2); }

/* ── CMS ────────────────────────────────────────────────────────── */
.vx-cms { font-size: 14px; line-height: 1.8; color: var(--vx-text-body); }
.vx-cms h1.block-title { color: #000; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--vx-border-light); }
.vx-cms img { border-radius: var(--vx-radius); margin: 12px 0; }

/* ── Ana içerik min-height ──────────────────────────────────────── */
#vx-main { min-height: 50vh; }

/* ==================================================================
   Legacy/Existing class'lar için kozmetikcare görünümü
================================================================== */

/* Breadcrumb alias */
.vx-bc { padding: 12px 0; font-size: 12px; color: var(--vx-text-light); display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.vx-bc a { color: var(--vx-text-light); text-decoration: none; }
.vx-bc a:hover { color: var(--vx-accent); }
.vx-bc .sep { margin: 0 4px; color: var(--vx-text-light); }
.vx-bc span:last-child { color: #000; font-weight: 500; }

/* Section head & view-all */
.vx-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 10px; flex-wrap: wrap; }
.vx-section-title { font-size: 1.5rem; font-weight: 600; color: #000; margin: 0; line-height: 1.2; }
@media (max-width: 767.98px) { .vx-section-title { font-size: 1rem; } }
.vx-view-all { font-size: 12px; font-weight: 600; color: var(--vx-accent); text-decoration: none; text-transform: uppercase; letter-spacing: .3px; display: inline-flex; align-items: center; gap: 4px; }
.vx-view-all:hover { color: var(--vx-accent-dark); }

/* Empty state */
.vx-empty { text-align: center; padding: 40px 20px; border: 1px dashed var(--vx-border-light); border-radius: var(--vx-radius); }
.vx-empty p { color: var(--vx-text-light); margin-bottom: 16px; }

/* ── PDP alias (vx-pdp-*) ──────────────────────────────────────── */
.vx-pdp-img-main {
    position: relative;
    background: #fff;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    overflow: hidden;
    min-height: 0;
}
/* Yalnızca ana ürün görseli — rozet <img>leri bu kuralla daralmasın (flex içinde sıkışma / kırpılmış gibi görünme) */
.vx-pdp-img-main > img[data-myt-pdp-main-img],
.vx-pdp-img-main > #vx-main-img {
    display: block;
    flex: 0 1 auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    align-self: center;
    -webkit-user-drag: none;
}
/* PDP kampanya / ürün rozetleri: şablonda vx-pc__kampanya-badge--* kullanılıyor; myt-kampanya-badge--* ile aynı konumlar */
.vx-pdp-img-main .vx-pc__kampanya-badge,
.vx-pdp-img-main .vx-pdp-kampanya-badge {
    position: absolute;
    max-width: min(72px, 24vw);
    width: auto;
    height: auto;
    z-index: 3;
    pointer-events: none;
    object-fit: contain;
}
.vx-pdp-img-main .vx-pc__kampanya-badge--tl { top: 10px; left: 10px; }
.vx-pdp-img-main .vx-pc__kampanya-badge--tr { top: 10px; right: 10px; }
.vx-pdp-img-main .vx-pc__kampanya-badge--bl { bottom: 10px; left: 10px; }
.vx-pdp-img-main .vx-pc__kampanya-badge--br { bottom: 10px; right: 10px; }
.vx-pdp-img-main .vx-pc__badge--pair-first { z-index: 3; }
.vx-pdp-img-main .vx-pc__badge--pair-second { z-index: 4; }
.vx-pdp-img-main .vx-pc__badge--pair-second--tl { transform: translate(10px, 10px); }
.vx-pdp-img-main .vx-pc__badge--pair-second--tr { transform: translate(-10px, 10px); }
.vx-pdp-img-main .vx-pc__badge--pair-second--br { transform: translate(-10px, -10px); }
.vx-pdp-img-main .vx-pc__badge--pair-second--bl { transform: translate(10px, -10px); }

.vx-thumb-row { display: flex; gap: 8px; flex-wrap: wrap; }
.vx-thumb-btn {
    width: 72px; height: 72px;
    border: 1.5px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    background: #fff;
    padding: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--vx-tr-fast);
    display: flex; align-items: center; justify-content: center;
}
.vx-thumb-btn.active, .vx-thumb-btn:hover { border-color: var(--vx-accent2); }
.vx-thumb-btn img { max-width: 100%; max-height: 100%; object-fit: contain; }

.vx-pdp-brand { color: var(--vx-text-body); font-size: 13px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: .3px; }
.vx-pdp-brand:hover { color: var(--vx-accent); }
.vx-pdp-title { font-size: 22px; font-weight: 600; color: #000; line-height: 1.35; }
@media (min-width: 768px) { .vx-pdp-title { font-size: 26px; } }
.vx-pdp-sku { font-size: 12px; color: var(--vx-text-light); }
.vx-pdp-price-main { font-size: 28px; font-weight: 700; color: #000; }
.vx-pdp-price-main.red { color: var(--vx-accent2); }
.vx-pdp-price-old { font-size: 16px; color: var(--vx-text-light); text-decoration: line-through; }
.vx-disc-badge { background: var(--vx-accent2); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.vx-stock-yes { color: var(--vx-bg-success); font-weight: 600; font-size: 13px; }
.vx-stock-no { color: var(--vx-bg-danger); font-weight: 600; font-size: 13px; }

.vx-qty { display: inline-flex; align-items: center; border: 1px solid var(--vx-border-light); border-radius: var(--vx-radius); overflow: hidden; background: #fff; }
.vx-qty-btn { width: 44px; height: 46px; background: var(--vx-bg-light); border: none; font-size: 16px; font-weight: 600; cursor: pointer; color: #000; transition: background var(--vx-tr-fast); }
.vx-qty-btn:hover { background: var(--vx-bg-light); color: var(--vx-accent); }
.vx-qty-num { width: 60px; height: 46px; border: none; border-left: 1px solid var(--vx-border-light); border-right: 1px solid var(--vx-border-light); text-align: center; font-size: 14px; font-weight: 600; -moz-appearance: textfield; }
.vx-qty-num::-webkit-outer-spin-button, .vx-qty-num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.vx-add-btn {
    padding: 14px 18px;
    background: var(--vx-button-primary);
    color: #fff;
    border: 1px solid var(--vx-button-primary);
    border-radius: var(--vx-radius);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    cursor: pointer;
    transition: background var(--vx-tr-fast);
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.vx-add-btn:hover, .vx-add-btn:focus { background: var(--vx-button-primary-hover); border-color: var(--vx-button-primary-hover); color: #fff; }
.vx-buy-btn {
    width: 100%;
    padding: 14px 18px;
    background: transparent;
    color: var(--vx-button-primary);
    border: 1px solid var(--vx-button-primary);
    border-radius: var(--vx-radius);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--vx-tr-fast);
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.vx-buy-btn:hover { background: var(--vx-button-primary); color: #fff; }

/* PDP tabs (nav.vx-tabs + Bootstrap nav-link) */
.vx-tabs { gap: 4px; }
.vx-tabs .nav-link {
    color: var(--vx-text-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3px;
    border: none;
    background: none;
    padding: 10px 16px;
    border-bottom: 2px solid transparent;
    border-radius: 0;
}
.vx-tabs .nav-link:hover { color: var(--vx-accent); }
.vx-tabs .nav-link.active { color: var(--vx-accent2); border-bottom-color: var(--vx-accent2); background: none; }

/* CMS body */
.vx-cms { font-size: 14px; line-height: 1.8; color: var(--vx-text-body); }
.vx-cms h1, .vx-cms h2, .vx-cms h3, .vx-cms h4 { color: #000; margin-top: 1.2em; }
.vx-cms img { border-radius: var(--vx-radius); }
.vx-cms a { color: var(--vx-accent); }

/* ── Product card (vx-pc*) alias — Glamora tarzı kart için korunuyor */
.vx-pc {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    overflow: hidden;
    transition: border-color var(--vx-tr-fast), box-shadow var(--vx-tr-fast);
    height: 100%;
}
.vx-pc:hover { border-color: var(--vx-accent2); box-shadow: 0 4px 16px rgba(214,0,88,.1); }
.vx-pc__img {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #fff;
    padding: 8px;
}
.vx-pc__img img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s; }
.vx-pc:hover .vx-pc__img img { transform: scale(1.04); }
.vx-pc__img-stack { position: absolute; inset: 0; }
.vx-pc__img1, .vx-pc__img2 { position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); object-fit: contain; transition: opacity .3s; }
.vx-pc__img2 { opacity: 0; }
.vx-pc:hover .vx-pc__img--dual .vx-pc__img1 { opacity: 0; }
.vx-pc:hover .vx-pc__img--dual .vx-pc__img2 { opacity: 1; }
.vx-pc__badge {
    position: absolute;
    top: 10px; right: 10px;
    background: var(--vx-accent2);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}
.vx-pc__body { padding: 12px; display: flex; flex-direction: column; flex: 1; }
.vx-pc__vendor { font-size: 11px; color: var(--vx-text-light); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .3px; }
.vx-pc__name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 2.8em;
}
.vx-pc__name:hover { color: var(--vx-accent); }
.vx-pc__rating { color: #f5a623; font-size: 12px; margin-bottom: 6px; }
.vx-pc__prices { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; min-height: 22px; }
.vx-pc__price-new { font-size: 15px; font-weight: 700; color: #000; }
.vx-pc__price-new.red { color: var(--vx-accent2); }
.vx-pc__price-old { font-size: 12px; color: var(--vx-text-light); text-decoration: line-through; }
.vx-pc__actions { display: flex; gap: 6px; margin-top: auto; }
.vx-pc__btn {
    flex: 1;
    padding: 8px 6px;
    font-size: 12px;
    font-weight: 600;
    background: var(--vx-accent);
    color: #fff;
    border: 1px solid var(--vx-accent);
    border-radius: var(--vx-radius);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--vx-tr-fast);
    line-height: 1.2;
}
.vx-pc__btn:hover { background: var(--vx-accent-dark); border-color: var(--vx-accent-dark); color: #fff; }
.vx-pc__btn--quickbuy { background: transparent; color: var(--vx-accent); }
.vx-pc__btn--quickbuy:hover { background: var(--vx-accent); color: #fff; }

/* Category card (vx-cat-card) */
.vx-cat-card { display: flex; flex-direction: column; align-items: center; gap: 10px; text-decoration: none; color: var(--vx-text-body); }
.vx-cat-card__circle {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: var(--vx-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--vx-tr-fast);
}
.vx-cat-card__circle img { width: 60%; height: 60%; object-fit: contain; }
.vx-cat-card__icon-fallback { font-size: 32px; color: var(--vx-accent); }
.vx-cat-card:hover .vx-cat-card__circle { border-color: var(--vx-accent2); box-shadow: 0 4px 12px rgba(214,0,88,.15); }
.vx-cat-card__name { font-size: 13px; font-weight: 500; text-align: center; }

/* Features bar */
.vx-features { padding: 16px 0; background: var(--vx-bg-light); border-bottom: 1px solid var(--vx-border-light); }
.vx-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 992px) { .vx-features-grid { grid-template-columns: repeat(4, 1fr); } }
.vx-feat-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--vx-text-body); }
.vx-feat-item i { font-size: 22px; color: var(--vx-bg-primary); }

/* Hero placeholder */
.vx-hero-placeholder {
    aspect-ratio: 16/6;
    background: linear-gradient(135deg, var(--vx-bg-primary) 0%, var(--vx-bg-primary-dk) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: var(--vx-radius);
    margin-top: 20px;
    text-align: center;
}
.vx-hero-placeholder__title { color: #fff; font-size: 24px; font-weight: 700; margin: 0 0 10px; }
@media (min-width: 768px) { .vx-hero-placeholder__title { font-size: 32px; } }
.vx-hero-placeholder__sub { color: rgba(255,255,255,.9); margin-bottom: 20px; }
.vx-hero-placeholder__cta { background: var(--vx-accent); color: #fff; padding: 12px 24px; border-radius: var(--vx-radius); text-decoration: none; font-weight: 600; display: inline-block; }
.vx-hero-placeholder__cta:hover { background: var(--vx-accent-dark); color: #fff; }

/* Footer newsletter form eski class (base.html.twig alt alt kısım) */
.vx-ft-newsletter { display: flex; gap: 8px; }
.vx-ft-nl-input {
    flex: 1;
    height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.1);
    color: #fff;
    border-radius: var(--vx-radius);
    font-size: 13px;
}
.vx-ft-nl-input::placeholder { color: rgba(255,255,255,.55); }
.vx-ft-nl-btn {
    padding: 0 16px;
    height: 42px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: var(--vx-radius);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
}
.vx-ft-nl-btn:hover { background: var(--vx-accent); }
.vx-ft-nl-msg { font-size: 12px; color: rgba(255,255,255,.75); margin-top: 6px; }
.vx-ft-heading { color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.2); }
.vx-ft-links { list-style: none; margin: 0; padding: 0; }
.vx-ft-links li { margin-bottom: 8px; font-size: 13px; }
.vx-ft-links li a { color: rgba(255,255,255,.75); text-decoration: none; }
.vx-ft-links li a:hover { color: #fff; }
.vx-ft-nl-lead { font-size: 13px; color: rgba(255,255,255,.7); margin: 0 0 10px; }
.vx-ft-logo img { height: 60px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.vx-ft-desc { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; max-width: 280px; }
.vx-ft-social { display: flex; gap: 8px; margin-top: 10px; }
.vx-ft-soc-btn {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}
.vx-ft-soc-btn:hover { background: var(--vx-accent); }
.vx-ft-bottom { background: var(--vx-bg-dark); padding: 16px 0; color: rgba(255,255,255,.55); font-size: 12px; margin-top: 30px; }
.vx-ft-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ── Account (myt-account) — kozmetikcare görünümü ───────────────
.myt-account {
    max-width: 560px;
    margin: 40px auto;
    padding: 0;
    background: #fff;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
} */
.myt-account--hesabim { max-width: 100%; background: none; border: none; box-shadow: none; margin: 20px auto; padding: 0; overflow: visible; }
.myt-account__inner { padding: 24px; }
.myt-account-tabs {
    display: flex;
    border-bottom: 1px solid var(--vx-border-light);
    margin: 0;
    padding: 0;
    gap: 0;
}
.myt-account-tab {
    flex: 1;
    padding: 14px 10px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--vx-text-light);
    cursor: pointer;
    transition: var(--vx-tr-fast);
}
.myt-account-tab:hover { color: var(--vx-accent); }
.myt-account-tab.is-active { color: var(--vx-accent2); border-bottom-color: var(--vx-accent2); }
.myt-account-panel { display: none; padding: 24px; }
.myt-account-panel.is-active { display: block; }
.myt-account-panel__title { color: #000; font-size: 18px; font-weight: 700; margin: 0 0 18px; }
.myt-account-field { margin-bottom: 14px; }
.myt-account-label { display: block; font-size: 12px; font-weight: 600; color: var(--vx-text-body); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .3px; }
.myt-account-input {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    background: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--vx-text-body);
    transition: border-color var(--vx-tr-fast);
}
.myt-account-input:focus { outline: 0; border-color: var(--vx-accent); }
.myt-account-check { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 13px; color: var(--vx-text-body); cursor: pointer; }
.myt-account-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--vx-accent); }
.myt-account-row { display: flex; align-items: center; margin-bottom: 12px; }
.myt-account-row--between { justify-content: space-between; }
.myt-account-link { color: var(--vx-accent); text-decoration: none; font-size: 13px; font-weight: 500; }
.myt-account-link:hover { color: var(--vx-accent-dark); text-decoration: underline; }
.myt-account-hint { margin-top: 14px; font-size: 13px; color: var(--vx-text-light); }
.myt-account-msg { font-size: 13px; font-weight: 500; margin: 10px 0; }
.myt-account-btn {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: var(--vx-radius);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    cursor: pointer;
    transition: var(--vx-tr-fast);
    font-family: 'Poppins', sans-serif;
}
.myt-account-btn--primary { background: var(--vx-accent); color: #fff; border-color: var(--vx-accent); }
.myt-account-btn--primary:hover { background: var(--vx-accent-dark); border-color: var(--vx-accent-dark); }
.myt-account-btn--secondary { background: #fff; color: var(--vx-accent); border-color: var(--vx-accent); display: inline-flex; align-items: center; justify-content: center; text-decoration: none; width: auto; padding: 0 24px; }
.myt-account-btn--secondary:hover { background: var(--vx-accent); color: #fff; }
.myt-account-text { font-size: 13px; color: var(--vx-text-body); line-height: 1.6; margin-bottom: 18px; }

/* Hesabım — eski myaccount-* yapısı */
.my-account-area { padding: 20px 0 60px; }
.myaccount-tab-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    overflow: hidden;
    background: #fff;
}
.myaccount-tab-menu a {
    padding: 14px 16px;
    color: var(--vx-text-body);
    text-decoration: none;
    border-top: 1px solid var(--vx-border-light);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--vx-tr-fast);
    letter-spacing: .3px;
}
.myaccount-tab-menu a:first-child { border-top: none; }
.myaccount-tab-menu a:hover { background: var(--vx-bg-light); color: var(--vx-accent); }
.myaccount-tab-menu a.active { background: var(--vx-bg-light); color: var(--vx-accent2); border-left: 3px solid var(--vx-accent2); }
.myaccount-content { padding: 16px; background: #fff; border: 1px solid var(--vx-border-light); border-radius: var(--vx-radius); }
.myaccount-content h3 { font-size: 18px; color: #000; margin-bottom: 16px; }
.myaccount-table table { width: 100%; font-size: 13px; }
.myaccount-table th { background: var(--vx-bg-light); font-weight: 600; font-size: 12px; text-transform: uppercase; color: var(--vx-text-body); padding: 10px; border: 1px solid var(--vx-border-light); }
.myaccount-table td { padding: 10px; border: 1px solid var(--vx-border-light); vertical-align: middle; }
.form-list { list-style: none; margin: 0; padding: 0; }
.form-list li { margin-bottom: 12px; }
.form-list label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 4px; color: var(--vx-text-body); }
.form-list .input-box input, .form-list .input-box select {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--vx-border-light);
    border-radius: var(--vx-radius);
    background: #fff;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}
.buttons-set { margin-top: 20px; }
.buttons-set .button.login {
    height: 44px;
    padding: 0 24px;
    background: var(--vx-accent);
    color: #fff;
    border: 1px solid var(--vx-accent);
    border-radius: var(--vx-radius);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    letter-spacing: .3px;
    transition: var(--vx-tr-fast);
}
.buttons-set .button.login:hover { background: var(--vx-accent-dark); border-color: var(--vx-accent-dark); }

/* Legacy myt-product-card (eski kart alternatifi) */
.myt-product-card { border: 1px solid var(--vx-border-light) !important; border-radius: var(--vx-radius) !important; background: #fff; overflow: hidden; }
.myt-product-card.myt-hover-shadow:hover { border-color: var(--vx-accent2) !important; box-shadow: 0 4px 16px rgba(214,0,88,.1); }
.myt-product-card__img-wrap { position: relative; padding: 10px; }
.myt-kampanya-badge { position: absolute; max-width: 60px; z-index: 2; }
.myt-kampanya-badge--tl { top: 8px; left: 8px; }
.myt-kampanya-badge--tr { top: 8px; right: 8px; }
.myt-kampanya-badge--bl { bottom: 8px; left: 8px; }
.myt-kampanya-badge--br { bottom: 8px; right: 8px; }
.myt-product-card__title:hover { color: var(--vx-accent) !important; }
.myt-card-swatches { display: flex; gap: 4px; flex-wrap: wrap; }

/* Category toolbar search */
.myt-cat-search { padding-left: 30px !important; }

/* Dual image stack (standart kart) */
.myt-sc-hov2-box { position: relative; }
.myt-sc-hov2-a, .myt-sc-hov2-b { transition: opacity .28s ease; }
.myt-sc-hov2-box:hover .myt-sc-hov2-a { opacity: 0; }
.myt-sc-hov2-box:hover .myt-sc-hov2-b { opacity: 1 !important; }

/* Bootstrap breadcrumb override */
.breadcrumb { font-size: 13px; padding: 0; margin: 0; background: none; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--vx-text-light); }
.breadcrumb-item a { color: var(--vx-text-light); text-decoration: none; }
.breadcrumb-item.active { color: #000; }

/* Bundle PDP (tutmak için hafif override) */
.vx-bundle-pdp { border: 1px solid var(--vx-border-light) !important; border-radius: var(--vx-radius); }
.vx-bundle-pdp__head { background: var(--vx-bg-light); }
.vx-bundle-pdp__icon { width: 44px; height: 44px; background: var(--vx-bg-primary); color: #fff; }
.vx-bundle-pdp__thumb { width: 56px; height: 56px; border: 1px solid var(--vx-border-light); background: #fff; }
.vx-bundle-pdp__thumb-img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.vx-bundle-pdp__thumb-ph { width: 100%; height: 100%; color: var(--vx-text-light); }
.vx-bundle-pdp__qty-pill { background: var(--vx-bg-light); padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.vx-bundle-pdp__badge { background: var(--vx-accent2) !important; color: #fff !important; border-color: var(--vx-accent2) !important; }
.vx-bundle-pdp__foot { border-top: 1px solid var(--vx-border-light); }

/* ── Responsive ayarlar ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .vx-header-main .col-hm-right { display: none; }
    .vx-hm-links { gap: 2px; }
    .vx-hm-links .vx-hm-btn .vx-hm-label { display: none; }
    #vx-main-menu { display: none; }
}
@media (max-width: 767.98px) {
    .product-detail-card { padding-bottom: 100px; }
    .product-price { font-size: 14px; }
    .product-buttons .add-to-cart-btn,
    .product-buttons .sepeteekle { font-size: 11px; padding: 7px 4px; }
    .pdp-title { font-size: 17px; }
    .pdp-current-price { font-size: 20px; }
}
