/* ── FONT FACES ── */
@font-face {
    font-family: 'Baristo';
    src: url('../fonts/baristo/Baristo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Baloo2';
    src: url('../fonts/baloo2/Baloo2-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Baloo2';
    src: url('../fonts/baloo2/Baloo2-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Baloo2';
    src: url('../fonts/baloo2/Baloo2-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* ── RESET ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(120deg, #3f3f3f 0%, #191919 16%, #080808 40%, #080808 60%, #191919 84%, #3f3f3f 100%);
    background-attachment: fixed;
    color: #ffffff;
    padding-top: 70px;
}

/* ── HEADER ── */
.site-header {
    width: 100%;
    height: 70px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.header-inner {
    width: 1300px;
    height: 70px;
    display: grid;
    grid-template-columns: auto 400px auto auto auto auto auto auto;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Baristo', serif;
    font-size: 34px;
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
}

.search-box {
    position: relative;
    width: 400px;
    height: 40px;
}

.search-box input {
    width: 100%;
    height: 100%;
    background-color: #3f3f3f;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 0 42px 0 16px;
    font-family: 'Baloo2', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #707070;
    outline: none;
    transition: border-color 0.15s ease;
}

.search-box input:focus {
    border-color: #06cd57;
    color: #ffffff;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    cursor: pointer;
}

.search-dd {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.search-dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-family: 'Baloo2', sans-serif;
    font-size: 14px;
    color: #707070;
    cursor: pointer;
    text-decoration: none;
    border-bottom: 1px solid #222222;
    transition: background 0.15s;
}
.search-dd-item:last-child { border-bottom: none; }
.search-dd-item:hover { background: #2a2a2a; color: #ffffff; }
.search-dd-item strong { color: #ffffff; }

.search-dd-item img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}
.search-dd-img-ph {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #2a2a2a;
    flex-shrink: 0;
}
.search-dd-title {
    flex: 1;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-dd-price {
    font-weight: 700;
    color: #06cd57;
    flex-shrink: 0;
}
.search-dd-item--all {
    justify-content: center;
    color: #707070;
    font-size: 13px;
    padding: 10px 14px;
}

.search-dd-noresult {
    display: flex;
    flex-direction: column;
    padding: 14px 16px;
    font-family: 'Baloo2', sans-serif;
}

.search-dd-design-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    background: #06cd57;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s;
}

.search-dd-design-btn:hover {
    background: #04b34b;
}

.nav-link {
    font-family: 'Baristo', serif;
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.fav-link {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

.account-link {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    color: #ffffff;
}

.header-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: #FF0019;
    color: #ffffff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #000000;
    box-sizing: border-box;
}

/* ── FOOTER ── */
.site-footer {
    width: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    padding: 48px 0 40px;
    border-top: 1px solid #1f1f1f;
    margin-top: 24px;
}

.footer-inner {
    width: 1300px;
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-family: 'Baristo', serif;
    font-size: 34px;
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
}

.footer-desc {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #707070;
    line-height: 1.6;
}

.footer-socials {
    display: grid;
    grid-template-columns: repeat(4, 50px);
    gap: 12px;
}

.footer-socials a img {
    width: 50px;
    height: 50px;
    display: block;
    transition: transform 0.15s ease;
}

.footer-socials a:hover img {
    transform: scale(1.1);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col-title {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    line-height: 1;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-family: 'Baloo2', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #707070;
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* ── HERO ── */
.hero {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-cursor {
    position: fixed;
    pointer-events: none;
    font-size: 28px;
    color: #FF0019;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
    z-index: 500;
}

.hero-inner {
    width: 1300px;
    height: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

/* Col 1 — Slogan */
.hero-slogan {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-left: 24px;
}

.hero-title {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1.2;
    width: 100%;
    background: radial-gradient(circle at var(--tx, -200px) var(--ty, -200px), #e5b395, #ffffff 120px);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #06cd57;
    color: #FFFFFF;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 24px;
    padding: 10px 30px;
    border-radius: 40px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s, transform 0.15s;
}

.hero-shop-btn:hover {
    background-color: #04b34b;
    transform: translateY(-2px);
}

/* Col 2 — Tablet */
.hero-tablet-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tablet-wrap {
    position: relative;
    width: 280px;
}

.tablet-img {
    width: 100%;
    height: auto;
    display: block;
}

.tablet-screen {
    position: absolute;
    top: 48px;
    left: 15px;
    width: 249px;
    height: 357px;
    overflow: hidden;
    background: #3f3f3f;
}

.slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    position: relative;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.75);
}

.slider-btn--prev { left: 6px; }
.slider-btn--next { right: 6px; }

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

.slide {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Col 3 — Services */
.hero-services-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.services-card {
    position: relative;
    width: 340px;
}

.services-panel-bg {
    width: 100%;
    height: auto;
    display: block;
}

.services-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 24px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-title {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #000000;
    line-height: 1.15;
}

.services-title-top {
    font-size: 30px;
}

.services-sub {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #707070;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-btn {
    width: fit-content;
    background: #000000;
    color: #ffffff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 15px;
    padding: 10px 14px;
    text-decoration: none;
    text-align: left;
    white-space: nowrap;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
}

.get-quote-btn {
    display: block;
    width: fit-content;
    margin: 0 0 0 auto;
    background: #000000;
    color: #ffffff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 22px;
    border-radius: 30px;
    padding: 3px 48px;
    text-decoration: none;
    text-align: center;
}

.get-quote-text {
    background: radial-gradient(circle at var(--gx, -200px) var(--gy, -200px), #e5b395, #ffffff 80px);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-icons {
    display: flex;
    justify-content: right;
    gap: 12px;
}

.contact-icons a img {
    height: 98px;
    width: auto;
    display: block;
}

/* ── STATS BAR ── */
.stats-bar {
    width: 100%;
    display: flex;
    justify-content: center;
}

.stats-inner {
    width: 1300px;
    height: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;   /* 4→3: "10K+ Happy Customers" kaldırıldı */
    align-items: center;
    border: 2px solid #e5b395;
    border-radius: 12px;
    overflow: hidden;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-right: 2px solid #e5b395;
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #707070;
    line-height: 1;
}

/* ── SECTION HEADER ── */
.section-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 0 32px;
}

.section-title {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #ffffff;
    line-height: 1.1;
    text-align: center;
}

.section-sub {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #707070;
    text-align: center;
}

/* ── CATEGORY FILTER ── */
.filter-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.filter-inner {
    width: 1300px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-btn {
    background: transparent;
    border: 2px solid currentColor;
    border-radius: 999px;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 6px 24px;
    cursor: pointer;
    line-height: 1.2;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-btn--all     { color: #000000; border-color: #ffffff; }
.filter-btn--bundles { color: #FF6600; border-color: #FF6600; }
.filter-btn--new     { color: #008BFF; border-color: #008BFF; }
.filter-btn--sale    { color: #FF0019; border-color: #FF0019; }
.filter-btn--free    { color: #06cd57; border-color: #06cd57; }

.filter-btn--all.active        { background: #ffffff; border-color: #ffffff; color: #000000; }
.filter-btn--bundles.active    { background: #FF6600; border-color: #FF6600; color: #ffffff; }
.filter-btn--new.active        { background: #008BFF; border-color: #008BFF; color: #ffffff; }
.filter-btn--sale.active       { background: #FF0019; border-color: #FF0019; color: #ffffff; }
.filter-btn--free.active       { background: #06cd57; border-color: #06cd57; color: #ffffff; }

/* ── PRODUCT GRID ── */
.product-grid-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 48px;
}

.product-grid {
    width: 1300px;
    display: grid;
    grid-template-columns: repeat(4, 300px);
    justify-content: space-between;
    row-gap: 52px;
}

/* ── PRODUCT CARD ── */
.product-card {
    width: 300px;
    height: 440px;
    background: #ffffff;
    border-radius: 14px;
    position: relative;
    overflow: visible;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* Theme colours */
.product-card           { --theme: #000000; }
.product-card--free     { --theme: #06cd57; border: 2.5px solid #06cd57; }
.product-card--sale     { --theme: #FF0019; border: 2.5px solid #FF0019; }
.product-card--new      { --theme: #008BFF; border: 2.5px solid #008BFF; }
.product-card--bundles  { --theme: #FF6600; border: 2.5px solid #FF6600; }
.product-card--black    { --theme: #000000; border: 2.5px solid #000000; }
.product-card--all      { --theme: #000000; border: 2.5px solid #000000; }
.product-card--all .card-fav  { color: #ffffff; }
.product-card--all .card-fav.active svg { fill: #ffffff; }

/* Card overlay link (full-card clickable — mouse only) */
.card-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 14px;
}

/* Erişilebilir ürün linki: başlık artık gerçek link (klavye + ekran okuyucu + SEO).
   Overlay'in üstünde durur; görsel olarak başlıkla aynı, sadece odakta çerçeve çıkar. */
.card-title-link {
    color: inherit;
    text-decoration: none;
    position: relative;
    z-index: 2;
}
.card-title-link:focus-visible {
    outline: 2px solid var(--theme, #111);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Badge */
.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: var(--theme);
    color: #ffffff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 2px 12px;
    border-radius: 999px;
    line-height: 1.6;
}

/* Favorite heart */
.card-fav {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--theme);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
}

.card-fav:hover { transform: scale(1.2); }

.card-fav.active svg { fill: var(--theme); }

/* Image area */
.card-image {
    width: 100%;
    height: 300px;
    border-radius: 11px 11px 0 0;
    overflow: hidden;
    background: #e8e8e8;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card body */
.card-body {
    padding: 6px 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    height: 140px;
    box-sizing: border-box;
}

.card-title {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--theme);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-desc {
    font-family: 'Baloo2', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #707070;
    line-height: 1.3;
}

.card-digital {
    font-family: 'Baloo2', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #707070;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Card footer & price */
.card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-price {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-price-old {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #000000;
    text-decoration: line-through;
}

.card-price-current {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--theme);
}

/* Add to cart button */
.card-add {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--theme);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
}

.card-add:hover { transform: scale(1.1); }

/* Checkmark badge (added state) */
.card-add::after {
    content: '✓';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--theme);
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.card-add.added::after { opacity: 1; }

/* ── FAVORITES PAGE ── */
.fav-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0 120px;
    gap: 20px;
}

.fav-empty-icon {
    width: 100px;
    height: 100px;
    opacity: 0.7;
}

.fav-empty-title {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #ffffff;
}

.fav-empty-sub {
    font-family: 'Baloo2', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #707070;
    text-align: center;
    max-width: 420px;
}

.fav-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #06cd57;
    color: #ffffff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 20px;
    padding: 10px 36px;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 8px;
}

/* ── PRODUCT DETAIL PAGE ── */
.pd-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0 24px;
}

.pd-inner {
    width: 1300px;
    display: grid;
    grid-template-columns: 650px 650px;
}

/* Left: Gallery */
.pd-gallery {
    padding: 0 28px 0 0;
    box-sizing: border-box;
}

.pd-gallery-inner {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
}

.pd-slider-track {
    display: flex;
    width:  100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.pd-slide {
    flex: 0 0 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.pd-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.pd-arrow:hover  { background: rgba(0, 0, 0, 0.65); }
.pd-arrow--prev  { left: 14px; }
.pd-arrow--next  { right: 14px; }

/* Right: Info */
.pd-info {
    padding: 4px 0 0 28px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pd-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.pd-title {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: #ffffff;
    line-height: 1.15;
}

.pd-fav-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    padding: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: transform 0.15s ease;
}

.pd-fav-btn:hover        { transform: scale(1.15); }
.pd-fav-btn.active svg   { fill: #ffffff; }

.pd-meta-line {
    font-family: 'Baloo2', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #707070;
    line-height: 1.2;
}

.pd-instant {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #06cd57;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pd-price {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #ffffff;
    line-height: 1;
}

.pd-actions {
    display: flex;
    gap: 14px;
}

.pd-btn-buy {
    padding: 14px 40px;
    background: transparent;
    color: #ffffff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 17px;
    border-radius: 50px;
    text-decoration: none;
    border: 2.5px solid #06cd57;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s, color 0.2s;
}

.pd-btn-buy:hover {
    background: #06cd57;
    color: #000000;
}

.pd-btn-cart {
    padding: 14px 40px;
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #ffffff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 17px;
    border-radius: 50px;
    border: 2.5px solid #06cd57;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.pd-btn-cart:hover {
    background: #06cd57;
    color: #000000;
}

/* Thumbnails — yatay kaydırılabilir (çok görselde sütunu/sayfayı taşırmasın) */
.pd-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;               /* Firefox */
    -webkit-overflow-scrolling: touch;   /* momentum */
}
.pd-thumbs::-webkit-scrollbar { display: none; }   /* Chrome/Safari */

.pd-thumb {
    width: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    border: 2.5px solid transparent;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.pd-thumb.active    { border-color: #06cd57; }
.pd-thumb img       { width: 100%; height: 100%; object-fit: cover; display: block; }

.pd-warning {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #707070;
    font-style: italic;
    line-height: 1.5;
}

.pd-desc-heading {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
    line-height: 1;
    margin-top: auto;
}

/* Description Box */
.pd-desc-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 0 36px;
}

.pd-desc-box {
    width: 1300px;
    max-height: 260px;
    overflow-y: auto;
    background: #111111;
    border-radius: 18px;
    padding: 28px 36px;
    box-sizing: border-box;
    color: #707070;
    font-family: 'Baloo2', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.8;
    border: 1px solid #2a2a2a;
}

.pd-desc-box p              { margin: 0 0 14px; }
.pd-desc-box p:last-child   { margin-bottom: 0; }
.pd-desc-box ul             { margin: 0 0 14px; padding-left: 22px; }
.pd-desc-box li             { margin-bottom: 6px; }
.pd-desc-box strong         { color: #ffffff; font-weight: 700; }

.pd-desc-box::-webkit-scrollbar        { width: 5px; }
.pd-desc-box::-webkit-scrollbar-track  { background: #222; border-radius: 3px; }
.pd-desc-box::-webkit-scrollbar-thumb  { background: #444; border-radius: 3px; }

/* ── BREADCRUMB ── */
.pd-breadcrumb {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px 0 0;
}

.pd-breadcrumb-inner {
    width: 1300px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Baloo2', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.pd-breadcrumb-inner a {
    color: #707070;
    text-decoration: none;
    transition: color 0.15s;
}

.pd-breadcrumb-inner a:hover { color: #ffffff; }
.pd-breadcrumb-sep            { color: #444444; }
.pd-breadcrumb-current        { color: #ffffff; font-weight: 700; }

/* ── PRODUCT DETAIL — CATEGORY BADGE ── */
.pd-cat-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 16px;
    border-radius: 999px;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.6;
    width: fit-content;
}

.pd-cat-badge--free    { background: #06cd57; }
.pd-cat-badge--sale    { background: #FF0019; }
.pd-cat-badge--new     { background: #008BFF; }
.pd-cat-badge--bundles { background: #FF6600; }

/* ── PRODUCT DETAIL — SALE PRICE ── */
.pd-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.pd-price-old {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #707070;
    text-decoration: line-through;
}

/* Add to Cart — added state */
.pd-btn-cart.added {
    background: #06cd57;
    color: #000000;
}

/* ── DESIGN SERVICES PAGE ── */
.ds-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}


.ds-infinity-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ds-infinity-bg {
    position: absolute;
    width: 75%;
    max-width: 860px;
    opacity: 0.18;
    pointer-events: none;
}

.ds-infinity-svg {
    position: absolute;
    width: 75%;
    max-width: 860px;
    height: 100%;
}

@keyframes ballGradient {
    0%,  100% { fill: #7B2FBE; }
    25%        { fill: #3E91E0; }
    50%        { fill: #00D8FF; }
    75%        { fill: #3E91E0; }
}

.ds-ball {
    animation: ballGradient 7s linear infinite;
}

.ds-hero-inner {
    width: 1300px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    text-align: center;
}

.ds-hero-h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 90px;
    line-height: 1.1;
    margin: 0;
    background: radial-gradient(circle 220px at var(--bx, -400px) var(--by, -400px), #7B2FBE, #00D8FF, #ffffff 220px);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ds-hero-h1--large {
    font-size: 102px;
}

.ds-hero-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
    margin-top: 24px;
}

/* DS PRICING */
.ds-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px 40px;
}

.ds-pricing-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 1300px;
}

.ds-price-card {
    background: #1e1e1e;
    border-radius: 16px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.ds-price-card:hover {
    background: #2a2a2a;
    transform: translateY(-4px);
}

.ds-price-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin: 0 0 20px 0;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-price-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.ds-price-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #707070;
    margin: 0;
}

.ds-pricing-note {
    margin-top: 32px;
    width: 1300px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
    text-align: center;
}

.ds-contact {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 0 80px;
}

.ds-contact-inner {
    width: 1300px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.ds-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ds-input {
    width: 100%;
    background: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 18px 24px;
    font-family: 'Baloo2', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    outline: none;
    box-sizing: border-box;
}

.ds-input::placeholder { color: #707070; }

.ds-textarea {
    resize: none;
    height: 130px;
}

.ds-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ds-sidebar .contact-icons {
    justify-content: flex-start;
    gap: 20px;
}

.ds-sidebar .contact-icons a img {
    width: 88px;
    height: 143px;
    object-fit: contain;
    object-position: bottom;
}

.ds-ribbon {
    width: 90px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.ds-ribbon:hover      { transform: scale(1.06); }
.ds-ribbon img        { width: 54px; height: 54px; }

.ds-ribbon--behance   { background: #1769FF; }
.ds-ribbon--whatsapp  { background: #25D366; }
.ds-ribbon--gmail     { background: #F2F0EB; }

.ds-action-row {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.ds-btn {
    flex: 1;
    padding: 14px 0;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.ds-btn:hover    { background: #ffffff; color: #111111; }
.ds-btn:disabled { opacity: 0.5; cursor: default; }

.ds-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.ds-file-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 6px 12px 6px 10px;
    max-width: 200px;
}
.ds-file-chip-icon { font-size: 13px; flex-shrink: 0; }
.ds-file-chip-name {
    font-size: 12px;
    color: #cccccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}
.ds-file-chip-remove {
    background: none;
    border: none;
    color: #555;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
}
.ds-file-chip-remove:hover { color: #ff4444; }

.ds-status {
    font-size: 13px;
    color: #707070;
    margin-top: 10px;
    min-height: 18px;
}

.ds-status--ok    { color: #4caf50; }
.ds-status--error { color: #f44336; }

.ds-btn--portfolio {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 4px;
}

/* ── SHOP CAROUSEL ── */
.shop-carousel-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 48px;
}

.shop-carousel-outer {
    width: 1300px;
    position: relative;
}

.shop-carousel-viewport {
    overflow: hidden;
    padding: 10px 0;
}

.shop-carousel-track {
    display: flex;
    gap: 33px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.shop-carousel-track > .product-card {
    flex-shrink: 0;
}

.shop-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    color: #000000;
    transition: background 0.2s, opacity 0.2s;
}

.shop-arrow:hover:not(:disabled) { background: #e0e0e0; }
.shop-arrow:disabled              { opacity: 0.25; cursor: default; }
.shop-arrow--prev                 { left: -60px; }
.shop-arrow--next                 { right: -60px; }

/* ── CATEGORY ARCHIVE VIEW ── */
.cat-section-header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 48px 0 16px;
}
.cat-section-title {
    width: 1300px;
    font-family: 'Baloo2', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}
.all-products-btn {
    display: inline-block;
    padding: 14px 48px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    font-family: 'Baloo2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.all-products-btn:hover {
    background: #ffffff;
    color: #0a0a0a;
}

/* ── CART PAGE ── */
.cart-page { display: flex; justify-content: center; padding: 48px 40px 80px; font-family: 'Baloo2', sans-serif; }

.cart-page-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    width: 1200px;
    align-items: start;
}

.cart-page-title {
    font-family: 'Baloo2', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 24px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #2a2a2a;
}

.cart-item-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-title {
    font-family: 'Baloo2', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a8fff;
    margin-bottom: 4px;
}

.cart-item-sub {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Baloo2', sans-serif;
    font-size: 14px;
    color: #707070;
    margin-bottom: 8px;
}

.cart-item-tags { display: flex; gap: 8px; }

.cart-tag {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background: #2a2a2a;
    padding: 3px 10px;
    border-radius: 6px;
}

.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.cart-item-price {
    font-family: 'Baloo2', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.cart-remove-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #cc0000;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.cart-remove-btn:hover { background: #ff2222; }

.cart-empty {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px 0;
    color: #707070;
}
.cart-empty-title { font-size: 20px; color: #707070; }

/* Summary card */
.cart-summary {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-summary-title {
    font-family: 'Baloo2', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    text-align: center;
    letter-spacing: 1px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.cart-summary-label {
    font-family: 'Baloo2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    letter-spacing: 1px;
}

.cart-summary-total {
    font-family: 'Baloo2', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #111111;
}

.cart-coupon-toggle {
    background: none;
    border: none;
    font-family: 'Baloo2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    cursor: pointer;
    letter-spacing: 0.5px;
    padding: 0;
    text-align: left;
}

.cart-coupon-fields {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.cart-coupon-input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #cccccc;
    background: #f5f5f5;
    font-size: 14px;
    color: #333;
    outline: none;
}

.cart-coupon-apply {
    padding: 10px 16px;
    border-radius: 10px;
    background: #dddddd;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
}
.cart-coupon-apply:hover { background: #bbbbbb; }

.cart-coupon-msg { font-size: 13px; min-height: 16px; }

/* EDD discount field */
#edd-discount-link-wrap,
.edd-discount-link-wrap,
#edd-discount-link,
.edd-discount-link,
p#edd-discount-link-wrap,
#edd_discount_link_wrap {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}
#edd-discount-code-wrap,
.edd-discount-field-wrap         { display: block !important; }

#edd-discount-code-wrap {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
}

#edd-discount-code-wrap label {
    font-family: 'Baloo2', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #888888 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    padding: 0 !important;
}

#edd-discount-code-wrap .edd-description,
#edd-discount-code-wrap p {
    font-family: 'Baloo2', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #707070;
    margin: 0;
}

.edd-discount-field-wrap {
    display: flex !important;
    gap: 8px;
    align-items: center;
}

#edd-discount-code {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px 12px;
    color: #ffffff;
    font-family: 'Baloo2', sans-serif;
    font-size: 14px;
    outline: none;
}
#edd-discount-code:focus       { border-color: #06cd57; }
#edd-discount-code::placeholder { color: #505050; }

#edd-apply-discount {
    background: #06cd57;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-family: 'Baloo2', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
#edd-apply-discount:hover { background: #04b34b; }

.cart-checkout-btn {
    display: block;
    text-align: center;
    background: #06cd57;
    color: #ffffff;
    font-family: 'Baloo2', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
}
.cart-checkout-btn:hover { background: #04aa48; }

.cart-item-img-link   { display: block; flex-shrink: 0; }
.cart-item-title-link { text-decoration: none; }
.cart-item-title-link:hover .cart-item-title { text-decoration: underline; }

.pd-back-cart {
    display: flex;
    justify-content: center;
    padding: 16px 0 0;
}

.pd-back-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ffffff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.pd-back-cart-btn:hover { background: #2a2a2a; border-color: #555; }


/* ═══════════════════════════════════════
   CHECKOUT
═══════════════════════════════════════ */
.chk-section { padding: 60px 0 80px; }
.chk-page-title {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 0;
}
.chk-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px 0;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}
.chk-form-section-title {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    margin: 28px 0 16px;
}
.chk-form-section-title:first-child { margin-top: 0; }
.chk-input {
    display: block;
    width: 100%;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    color: #fff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 18px;
    margin-bottom: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.chk-input:focus { border-color: #06cd57; }
.chk-input::placeholder { color: #707070; font-weight: 500; }
.chk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.chk-summary-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 28px 32px;
    position: sticky;
    top: 90px;
}
.chk-summary-title {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #111;
    margin-bottom: 20px;
}
.chk-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.chk-summary-item img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.chk-summary-item-info { flex: 1; min-width: 0; }
.chk-summary-item-title {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.chk-summary-item-price {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #111;
    white-space: nowrap;
}
.chk-summary-divider { border: none; border-top: 1px solid #eee; margin: 18px 0; }
.chk-summary-total-row { display: flex; justify-content: space-between; align-items: center; }
.chk-summary-total-label { font-family: 'Baloo2', sans-serif; font-weight: 700; font-size: 16px; color: #111; }
.chk-summary-total-val  { font-family: 'Baloo2', sans-serif; font-weight: 700; font-size: 20px; color: #111; }
.chk-place-btn {
    display: block;
    width: 100%;
    background: #06cd57;
    color: #fff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    padding: 16px 0;
    cursor: pointer;
    margin-top: 22px;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
}
.chk-place-btn:hover { background: #04aa48; }
.chk-secure-note {
    text-align: center;
    font-family: 'Baloo2', sans-serif;
    font-size: 12px;
    color: #707070;
    margin-top: 12px;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-page-section { padding: 60px 0 80px; }
.contact-page-inner { max-width: 680px; margin: 0 auto; padding: 0 24px; }
.contact-page-title {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 8px;
}
.contact-page-sub {
    font-family: 'Baloo2', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #707070;
    margin-bottom: 36px;
}
.contact-page-input {
    display: block;
    width: 100%;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    color: #fff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 18px;
    margin-bottom: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.contact-page-input:focus { border-color: #06cd57; }
.contact-page-input::placeholder { color: #707070; font-weight: 500; }
.contact-page-textarea { min-height: 140px; resize: vertical; }
.contact-page-send-btn {
    background: transparent;
    color: #ffffff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    padding: 14px 40px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.contact-page-send-btn:hover { background: #06cd57; border-color: #06cd57; color: #000000; }
.contact-page-send-btn.success { background: #06cd57; border-color: #06cd57; color: #000000; }
.contact-page-send-btn.error   { background: #ff4444; border-color: #ff4444; color: #ffffff; }
.contact-page-actions { display: flex; gap: 12px; align-items: center; }
.contact-page-upload-btn {
    background: transparent;
    color: #ffffff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    padding: 14px 28px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.contact-page-upload-btn:hover  { background: #06cd57; border-color: #06cd57; color: #000000; }
.contact-page-upload-btn.success { background: #06cd57; border-color: #06cd57; color: #000000; }
.contact-page-upload-btn.error   { background: #ff4444; border-color: #ff4444; color: #ffffff; }
.contact-file-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.contact-file-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 6px 10px 6px 14px;
    font-family: 'Baloo2', sans-serif;
    font-size: 13px;
    color: #ffffff;
}
.contact-file-chip button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 17px;
    line-height: 1;
    padding: 0 2px;
    transition: color 0.15s;
}
.contact-file-chip button:hover { color: #ff4444; }
.contact-page-socials { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; align-items: center; }
.contact-page-socials a img { width: 44px; height: 44px; opacity: 0.85; transition: opacity 0.2s; }
.contact-page-socials a:hover img { opacity: 1; }
.contact-page-status { margin-top: 12px; font-family: 'Baloo2', sans-serif; font-size: 14px; }
.contact-page-status--ok    { color: #06cd57; }
.contact-page-status--error { color: #ff4444; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section { padding: 60px 0 80px; }
.faq-inner { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.faq-title {
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 40px;
}
.faq-item { border-bottom: 1px solid #1e1e1e; }
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: #b0b0b0;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 22px 0;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}
.faq-q:hover { color: #ffffff; }
.faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #707070;
    transition: border-color 0.2s, color 0.2s;
    line-height: 1;
}
.faq-item.open .faq-icon { border-color: #06cd57; color: #06cd57; }
.faq-item.open .faq-q   { color: #06cd57; }
.faq-a {
    display: none;
    color: #707070;
    font-family: 'Baloo2', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.75;
    padding-bottom: 22px;
}
.faq-item.open .faq-a { display: block; }

/* ═══════════════════════════════════════
   POLICY PAGES
═══════════════════════════════════════ */
.policy-section { padding: 60px 0 80px; }
.policy-inner { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.policy-title { font-family: 'Baloo2', sans-serif; font-weight: 700; font-size: 36px; color: #ffffff; margin-bottom: 6px; }
.policy-updated { font-family: 'Baloo2', sans-serif; font-size: 13px; color: #444; margin-bottom: 44px; }
.policy-h2 { font-family: 'Baloo2', sans-serif; font-weight: 700; font-size: 20px; color: #ffffff; margin: 36px 0 10px; }
.policy-p { font-family: 'Baloo2', sans-serif; font-weight: 500; font-size: 15px; color: #707070; line-height: 1.8; margin-bottom: 14px; }
.policy-ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy-ul li { font-family: 'Baloo2', sans-serif; font-weight: 500; font-size: 15px; color: #707070; line-height: 1.7; margin-bottom: 6px; }

/* ═══════════════════════════════════════
   ORDER HISTORY
═══════════════════════════════════════ */
.oh-section { padding: 60px 0 80px; min-height: calc(100vh - 70px - 350px); }
.oh-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.oh-title { font-family: 'Baloo2', sans-serif; font-weight: 700; font-size: 32px; color: #ffffff; margin-bottom: 36px; }
.oh-empty { text-align: center; padding: 80px 0; }
.oh-empty p { font-family: 'Baloo2', sans-serif; font-weight: 700; font-size: 18px; color: #444; margin-bottom: 24px; }
.oh-empty a {
    display: inline-block;
    background: #06cd57;
    color: #fff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
}
.oh-empty a:hover { background: #04aa48; }
.oh-order-card { background: #0f0f0f; border: 1px solid #1e1e1e; border-radius: 16px; padding: 24px 28px; margin-bottom: 16px; }
.oh-order-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.oh-order-id { font-family: 'Baloo2', sans-serif; font-weight: 700; font-size: 13px; color: #444; }
.oh-order-date { font-family: 'Baloo2', sans-serif; font-size: 13px; color: #333; }
.oh-order-items { font-family: 'Baloo2', sans-serif; font-weight: 700; font-size: 15px; color: #ccc; margin-bottom: 8px; }
.oh-order-total { font-family: 'Baloo2', sans-serif; font-weight: 700; font-size: 16px; color: #06cd57; }

/* ═══════════════════════════════════════
   PURCHASE CONFIRMATION
═══════════════════════════════════════ */
.confirm-section {
    padding: 80px 0;
    min-height: calc(100vh - 70px - 350px);
    display: flex;
    align-items: center;
}
.confirm-inner { max-width: 600px; margin: 0 auto; padding: 0 24px; text-align: center; }
.confirm-icon {
    width: 80px;
    height: 80px;
    background: #06cd57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}
.confirm-title { font-family: 'Baloo2', sans-serif; font-weight: 700; font-size: 36px; color: #ffffff; margin-bottom: 12px; }
.confirm-sub { font-family: 'Baloo2', sans-serif; font-weight: 500; font-size: 16px; color: #707070; margin-bottom: 36px; line-height: 1.65; }
.confirm-order-box { background: #0f0f0f; border: 1px solid #1e1e1e; border-radius: 16px; padding: 24px 28px; margin-bottom: 36px; text-align: left; }
.confirm-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #161616;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #707070;
}
.confirm-order-row:last-child { border-bottom: none; }
.confirm-order-row span:last-child { color: #fff; }
.confirm-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.confirm-btn-primary {
    background: #06cd57;
    color: #fff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
}
.confirm-btn-primary:hover { background: #04aa48; }
.confirm-btn-secondary {
    background: #111;
    border: 1px solid #2a2a2a;
    color: #fff;
    font-family: 'Baloo2', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
}
.confirm-btn-secondary:hover { background: #1a1a1a; }


/* ════════════════════════════════════════
   WORDPRESS / EDD SPECIFIC ADDITIONS
   (styles.css'in sonuna ekle)
════════════════════════════════════════ */

/* Admin bar boşluğu */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* EDD satın alma formu — temamızla uyumlu */
.edd-submit {
    background: #06cd57 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 32px !important;
    font-family: 'Baloo 2', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}
.edd-submit:hover { background: #04aa48 !important; }

/* EDD hata/başarı mesajları */
.edd_errors { list-style: none; padding: 0; margin: 16px 0; }
.edd_errors li { background: #ff444422; border-left: 3px solid #ff4444; padding: 10px 14px; border-radius: 6px; color: #ff6666; font-family: 'Baloo 2', sans-serif; font-size: 14px; margin-bottom: 6px; }

/* Paylaş dropdown */
.pd-header-actions { display: flex; align-items: center; gap: 8px; }

.pd-share-wrap { position: relative; }

.pd-share-btn {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.pd-share-btn:hover { background: rgba(6,205,87,0.15); border-color: #06cd57; }

.pd-share-dropdown {
    position: absolute; top: calc(100% + 10px); right: 0;
    background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 8px; min-width: 180px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4); z-index: 100;
}

.pd-share-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: 8px;
    font-family: 'Baloo 2', sans-serif; font-size: 14px; color: #707070;
    text-decoration: none; cursor: pointer; width: 100%;
    background: none; border: none; text-align: left;
    transition: background 0.15s;
}
.pd-share-item:hover { background: rgba(255,255,255,0.07); color: #fff; }
.pd-share-pinterest svg { color: #E60023; }
.pd-share-facebook  svg { color: #1877F2; }
.pd-share-whatsapp  svg { color: #25D366; }
.pd-share-x         svg { color: #fff; }
.pd-share-copy      svg { color: #707070; }

/* Ürün sayfası fiyat eski */
.pd-price-old {
    font-family: 'Baloo 2', sans-serif;
    font-size: 16px;
    color: #707070;
    text-decoration: line-through;
    margin: 0;
}

/* Card "added" durumu — keeps theme color, shows checkmark badge */
.card-add.added svg line { stroke: #fff; }

/* pd-btn-cart "added" durumu */
.pd-btn-cart.added {
    background: #06cd57;
    border-color: #06cd57;
    color: #000;
}

/* ════════════════════════════════════════
   EDD CHECKOUT SAYFA STİLİ
════════════════════════════════════════ */
#edd_checkout_wrap {
    max-width: 860px !important;
    margin: 60px auto !important;
    padding: 0 24px 80px !important;
    font-family: 'Baloo2', sans-serif !important;
    box-sizing: border-box !important;
}

/* Sepet tablosu */
#edd_checkout_cart {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 32px !important;
    color: #fff !important;
}
#edd_checkout_cart th {
    font-family: 'Baloo2', sans-serif !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    color: #707070 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 10px 8px 10px 0 !important;
    border-bottom: 1px solid #1e1e1e !important;
    text-align: left !important;
}
#edd_checkout_cart td {
    padding: 16px 8px 16px 0 !important;
    border-bottom: 1px solid #111 !important;
    font-family: 'Baloo2', sans-serif !important;
    font-size: 15px !important;
    color: #707070 !important;
    vertical-align: middle !important;
}
#edd_checkout_cart .edd_cart_item_name,
#edd_checkout_cart .edd_cart_item_name a { font-weight: 700 !important; color: #fff !important; font-size: 15px !important; text-decoration: none !important; }
#edd_checkout_cart .edd_cart_item_name img { width: 72px !important; height: 72px !important; object-fit: cover !important; border-radius: 8px !important; margin-right: 12px !important; vertical-align: middle !important; }
#edd_checkout_cart .edd_cart_item_price { font-weight: 700 !important; color: #06cd57 !important; font-size: 15px !important; }
#edd_checkout_cart .edd_remove_item_btn,
.edd_remove_item_btn {
    color: #06cd57 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    font-family: 'Baloo2', sans-serif !important;
}
.edd_cart_remove_item_btn {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    color: #06cd57 !important;
    font-family: 'Baloo2', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    display: inline !important;
    padding: 0 !important;
    transition: color 0.2s !important;
}
.edd_cart_remove_item_btn:hover { color: #ff4444 !important; }

/* Toplam satırı */
#edd_checkout_cart tfoot td,
#edd_checkout_cart .edd_cart_total { font-weight: 700 !important; font-size: 18px !important; color: #fff !important; padding: 20px 0 8px !important; border-bottom: none !important; }

/* Bölüm başlıkları */
#edd_checkout_wrap h3,
#edd_purchase_form h3,
#edd_checkout_user_info h3,
#edd_checkout_user_info legend {
    font-family: 'Baristo', serif !important;
    font-size: 22px !important;
    color: #fff !important;
    display: block !important;
    width: 100% !important;
    margin: 0 0 20px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #1e1e1e !important;
}

/* Form fieldset / paragraflar */
#edd_checkout_wrap fieldset,
#edd_purchase_form fieldset { border: none !important; padding: 0 !important; margin: 0 0 20px !important; }

/* Label'lar */
#edd_checkout_wrap label,
#edd_purchase_form label,
#edd_checkout_user_info label {
    display: block !important;
    font-family: 'Baloo2', sans-serif !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    color: #888 !important;
    margin-bottom: 5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Input / select alanları */
#edd_checkout_wrap input[type="text"],
#edd_checkout_wrap input[type="email"],
#edd_checkout_wrap input[type="tel"],
#edd_checkout_wrap input[type="password"],
#edd_purchase_form input[type="text"],
#edd_purchase_form input[type="email"],
#edd_purchase_form input[type="tel"],
#edd_purchase_form input[type="password"],
#edd_checkout_user_info input,
.edd-input {
    display: block !important;
    width: 100% !important;
    background: #111 !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-family: 'Baloo2', sans-serif !important;
    font-size: 15px !important;
    padding: 13px 18px !important;
    margin-bottom: 12px !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}
#edd_checkout_wrap input:focus,
#edd_purchase_form input:focus { border-color: #06cd57 !important; }

/* Ödeme yöntemi radio buttons */
#edd_payment_mode_select { margin-bottom: 24px !important; }
#edd_payment_mode_select label { text-transform: none !important; color: #707070 !important; font-size: 14px !important; }

/* Submit fieldset — sadece sıfırla, renk verme */
#edd_purchase_submit {
    border: none !important;
    padding: 0 !important;
    margin: 24px 0 0 !important;
    background: transparent !important;
}

/* Satın al butonu — sadece gerçek buton elementi */
#edd-purchase-button,
.edd-submit,
input[name="edd_purchase"],
#edd_purchase_submit input[type="submit"] {
    display: block !important;
    width: 100% !important;
    background: #06cd57 !important;
    color: #fff !important;
    font-family: 'Baloo2', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 18px 0 !important;
    cursor: pointer !important;
    margin-top: 16px !important;
    transition: background 0.2s !important;
    text-align: center !important;
    letter-spacing: 0.5px !important;
}
#edd-purchase-button:hover,
input[name="edd_purchase"]:hover { background: #04aa48 !important; }

/* Purchase Total satırı */
#edd_final_total_wrap {
    font-family: 'Baloo2', sans-serif !important;
    font-size: 18px !important;
    color: #fff !important;
    margin: 12px 0 !important;
}
#edd_final_total_wrap strong { color: #888 !important; font-weight: 700 !important; }
#edd_final_total_wrap .edd_cart_amount { color: #06cd57 !important; font-weight: 700 !important; }

/* Hata / bilgi mesajları */
.edd_errors,
.edd-alert-error,
.edd-alert {
    list-style: none !important;
    padding: 12px 16px !important;
    margin: 16px 0 !important;
    background: #ff444422 !important;
    border-left: 3px solid #ff4444 !important;
    border-radius: 8px !important;
    color: #ff6666 !important;
    font-family: 'Baloo2', sans-serif !important;
    font-size: 14px !important;
}
.edd_errors li { margin: 4px 0 !important; }

/* ════════════════════════════════════════════════
   LIVE CHAT WIDGET
════════════════════════════════════════════════ */
#rc-chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
#rcChatBtn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #00D8FF;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,216,255,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    flex-shrink: 0;
    color: #000;
}
#rcChatBtn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0,216,255,0.5); }
.rc-chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    background: #ff4444;
    color: #fff;
    font-family: 'Baloo2', sans-serif;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}
#rc-chat-panel {
    width: 340px;
    background: #0d0d0d;
    border: 1px solid #1e1e1e;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
}
#rc-chat-panel.rc-chat-hidden { display: none; }
.rc-chat-head {
    background: #111;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #1e1e1e;
}
.rc-chat-head-info { display: flex; align-items: center; gap: 10px; }
.rc-chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-family: 'Baristo', serif;
    font-weight: 400;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rc-chat-name { font-family: 'Baloo2', sans-serif; font-weight: 700; font-size: 14px; color: #fff; }
.rc-chat-status { font-family: 'Baloo2', sans-serif; font-size: 11px; color: #06cd57; }
.rc-chat-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #707070;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    line-height: 0;
}
.rc-chat-close:hover { color: #fff; }
.rc-chat-msgs {
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 260px;
    max-height: 320px;
}
.rc-chat-msgs::-webkit-scrollbar { width: 4px; }
.rc-chat-msgs::-webkit-scrollbar-track { background: transparent; }
.rc-chat-msgs::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 4px; }
.rc-chat-msg { display: flex; flex-direction: column; max-width: 82%; }
.rc-chat-msg--admin  { align-self: flex-start; }
.rc-chat-msg--customer { align-self: flex-end; }
.rc-chat-bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font-family: 'Baloo2', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
}
.rc-chat-msg--admin .rc-chat-bubble {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #fff;
    border-bottom-left-radius: 4px;
}
.rc-chat-msg--customer .rc-chat-bubble {
    background: #06cd57;
    color: #000;
    font-weight: 600;
    border-bottom-right-radius: 4px;
}
.rc-chat-time {
    font-family: 'Baloo2', sans-serif;
    font-size: 10px;
    color: #707070;
    margin-top: 3px;
    padding: 0 4px;
}
.rc-chat-msg--customer .rc-chat-time { text-align: right; }
.rc-chat-form {
    padding: 12px;
    border-top: 1px solid #1e1e1e;
    display: flex;
    gap: 8px;
    align-items: center;
}
#rcChatInput {
    flex: 1;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Baloo2', sans-serif;
    font-size: 13px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
}
#rcChatInput:focus { border-color: #06cd57; }
#rcChatInput::placeholder { color: #707070; }
#rcChatSend {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #00D8FF;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
    color: #000;
    line-height: 0;
}
#rcChatSend:hover { background: #00b8d9; }
.rc-chat-attach {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: none;
    border: 1px solid #2a2a2a;
    color: #707070;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
    transition: color 0.2s, border-color 0.2s;
}
.rc-chat-attach:hover { color: #00D8FF; border-color: #00D8FF; }
.rc-chat-attach.has-file { color: #06cd57; border-color: #06cd57; }
.rc-chat-file-chip {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    margin: 0 12px 4px;
    background: rgba(6,205,87,0.08);
    border: 1px solid rgba(6,205,87,0.25);
    border-radius: 999px;
    font-family: 'Baloo2', sans-serif;
    font-size: 11px;
    color: #06cd57;
}
.rc-chat-file-chip.visible { display: flex; }
.rc-chat-file-chip #rcChatFileName {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}
.rc-chat-file-chip #rcChatFileRemove {
    background: none;
    border: none;
    color: #06cd57;
    cursor: pointer;
    padding: 0;
    font-size: 12px;
    line-height: 1;
    opacity: 0.6;
    flex-shrink: 0;
}
.rc-chat-file-chip #rcChatFileRemove:hover { opacity: 1; }


/* ── PAGINATION — CAROUSEL TASARIM ── */
.pagination-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 64px 0 48px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

/* PREV & NEXT BUTTONS — Sabit, oval */
.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 44px;
    padding: 0 24px;
    border: 2px solid #999999;
    border-radius: 999px;
    background-color: #AAAAAA;
    color: #333333;
    text-decoration: none;
    font-family: 'Baloo2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    white-space: nowrap;
}

.pagination-btn:hover:not([disabled]) {
    border-color: #06CD57;
    color: #06CD57;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(6, 205, 87, 0.15);
}

.pagination-btn[disabled] {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.pagination-prev,
.pagination-next {
    flex-shrink: 0;
}

/* CAROUSEL CONTAINER */
.pagination-carousel {
    overflow: hidden;
    width: 520px;
    height: 44px;
}

.pagination-track {
    display: flex;
    gap: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* PAGE BUTTONS — Dairesel */
.pagination-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border: 2px solid #999999;
    border-radius: 50%;
    background-color: #AAAAAA;
    color: #333333;
    text-decoration: none;
    font-family: 'Baloo2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.pagination-page:hover {
    border-color: #06CD57;
    color: #06CD57;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(6, 205, 87, 0.15);
}

.pagination-page.current {
    background-color: #06CD57;
    border-color: #06CD57;
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(6, 205, 87, 0.3);
}

.pagination-page.current:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(6, 205, 87, 0.4);
}


/* ═══════════════════════════════════════════════════════════════════════════
   RC HOME — Header + Spotlight Hero
   ---------------------------------------------------------------------------
   ⚠️ BU BLOK KALICIDIR. Eski "geri al: bu bloğu sil" notu yanıltıcıydı, kaldırıldı.

   DİKKAT — buradaki kurallar yukarıdaki kanonik tanımların ÜZERİNE yazar:
     .site-header   → satır ~66'daki tanımın height/display değerlerini ezer
     .header-inner  → satır ~79'daki tanımın width/margin/height/display'ini ezer
     body           → global padding-top:120px ekler

   Yani satır 66-79'u düzenlersen değişikliğin İŞLEMEZ; burayı da güncellemen gerekir.
   (Denetim notu C1 — birleştirme işi görsel doğrulama gerektirdiği için ertelendi.)
   ═══════════════════════════════════════════════════════════════════════════ */
.site-header{height:auto;display:block;}
body{padding-top:120px;}
.header-inner{width:1300px;margin:0 auto;height:70px;display:flex;justify-content:space-between;align-items:center;gap:0;}
.header-inner .search-box{flex:0 0 460px;width:460px;}
.rc-free{font-family:'Baristo',serif;font-size:24px;color:#3fae5e;text-decoration:none;white-space:nowrap;line-height:1;display:inline-flex;align-items:center;gap:8px;}
.rc-hd-right{display:flex;align-items:center;gap:22px;}
.header-row2{width:1300px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:12px;padding:0 30px 12px;}
.header-row2 .rc-hl{text-align:center;font-family:'Baristo',serif;font-size:32px;color:#f2f2f2;text-decoration:none;transition:color .3s;}
.header-row2.armed .rc-hl{color:#6a6a6a;}
.header-row2.armed .rc-hl.on{color:#fff;}
.rc-hero{max-width:1300px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:12px;padding:14px 30px 30px;}
.rc-pan{position:relative;height:580px;border-radius:14px;overflow:hidden;cursor:pointer;border:2px solid #e5b395;transition:box-shadow .45s,border-color .45s;}
.rc-pan.lit{box-shadow:0 0 26px rgba(229,179,149,.55);}
.rc-pan.lit[data-k="0"]{border-color:#06cd57;}
.rc-pan.lit[data-k="1"]{border-color:#3a86d8;}
.rc-pan.lit[data-k="2"]{border-color:#d67c5e;}
.rc-pan-link{position:absolute;inset:0;z-index:2;}
.rc-pan-bg{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform 1s ease;}
.rc-pan.lit .rc-pan-bg{transform:scale(1.06);}
.rc-scrim{position:absolute;inset:0;background:#000;opacity:.92;transition:opacity .45s;}
.rc-pan.dim .rc-scrim{opacity:.96;}
.rc-pan.lit .rc-scrim{opacity:0;}
.rc-pool{position:absolute;left:50%;bottom:-6%;width:82%;height:42%;transform:translateX(-50%);border-radius:50%;background:radial-gradient(ellipse at 50% 100%,rgba(255,224,170,.5),rgba(255,224,170,0) 70%);opacity:0;transition:opacity .5s;pointer-events:none;}
.rc-pan.lit .rc-pool{opacity:.65;}
.rc-cone{position:absolute;top:0;left:50%;width:150%;height:60%;transform:translateX(-50%);background:radial-gradient(ellipse at 50% 0,rgba(255,236,190,.82),rgba(255,236,190,0) 60%);opacity:0;transition:opacity .45s;pointer-events:none;}
.rc-pan.lit .rc-cone{opacity:1;}
.rc-lamp{position:absolute;top:0;left:50%;transform:translateX(-50%);width:78px;height:auto;pointer-events:none;z-index:3;}
.rc-lamp.on{opacity:0;transition:opacity .35s;}
.rc-pan.lit .rc-lamp.on{opacity:1;}
.rc-pan.lit .rc-lamp.off{opacity:0;}
.rc-phead{position:absolute;top:40px;left:26px;z-index:5;font-family:'Baristo',serif;font-size:30px;line-height:1.12;pointer-events:none;color:#cfcfcf;opacity:.32;transition:color .45s,opacity .45s;}
.rc-pan.lit[data-k="0"] .rc-phead{color:#06cd57;opacity:1;}
.rc-pan.lit[data-k="1"] .rc-phead{color:#3a86d8;opacity:1;}
.rc-pan.lit[data-k="2"] .rc-phead{color:#d67c5e;opacity:1;}
.rc-txt{position:absolute;left:0;right:0;bottom:0;padding:26px;text-align:center;z-index:4;pointer-events:none;background:linear-gradient(to top,rgba(0,0,0,.6),rgba(0,0,0,0));}
.rc-txt p{font-family:'Baloo2',sans-serif;font-weight:500;color:#cfcfcf;font-size:15px;margin-bottom:16px;letter-spacing:.3px;opacity:.4;transform:translateY(10px);transition:opacity .45s,transform .45s,color .45s,font-size .45s;}
.rc-pan.lit .rc-txt p{opacity:1;transform:none;color:#fff;font-size:19px;}
.rc-rbwrap{display:inline-flex;align-items:center;gap:10px;pointer-events:auto;}
.rc-rb{font-family:'Baloo2',sans-serif;font-weight:700;font-size:16px;text-decoration:none;padding:12px 28px;border-radius:26px;background:transparent;border:2px solid;transition:background .45s,border-color .45s,color .45s,box-shadow .3s;}
.rc-rbc{width:46px;height:46px;border-radius:50%;background:transparent;border:2px solid;display:flex;align-items:center;justify-content:center;text-decoration:none;transition:background .45s,border-color .45s,color .45s,box-shadow .3s;}
.rc-rbc svg{transition:transform .25s;}
.rc-rb:hover,.rc-rbc:hover{box-shadow:0 8px 22px rgba(0,0,0,.32);}
.rc-rbc:hover svg{transform:translateX(2px);}
.rc-rb,.rc-rbc{border-color:#e5b395;color:#fff;}
.rc-pan.lit[data-k="0"] .rc-rb,.rc-pan.lit[data-k="0"] .rc-rbc{background:#1e1e1e;border-color:#06cd57;color:#06cd57;}
.rc-pan.lit[data-k="1"] .rc-rb,.rc-pan.lit[data-k="1"] .rc-rbc{background:#1e1e1e;border-color:#3a86d8;color:#3a86d8;}
.rc-pan.lit[data-k="2"] .rc-rb,.rc-pan.lit[data-k="2"] .rc-rbc{background:#1e1e1e;border-color:#d67c5e;color:#d67c5e;}
/* ==================== /RC HOME ==================== */


/* ==================== RC KATEGORİ PANELİ (desktop) ==================== */
.cat-tab{position:fixed;left:0;top:calc(var(--rc-hdr-h,120px) + 140px);z-index:60;background:#808080;color:#ffffff;border:none;
  border-radius:12px 0 0 12px;padding:16px 9px;cursor:pointer;font-family:'Baloo2',sans-serif;font-weight:700;
  font-size:14px;writing-mode:vertical-rl;transform:rotate(180deg);letter-spacing:1.5px;
  box-shadow:2px 2px 12px rgba(0,0,0,.5);transition:background .2s;}
.cat-tab:hover{background:#8f8f8f;}
.cat-overlay{position:fixed;top:var(--rc-hdr-h,120px);left:0;right:0;bottom:0;background:rgba(0,0,0,.55);z-index:65;
  opacity:0;pointer-events:none;transition:opacity .35s;}
.cat-overlay.open{opacity:1;pointer-events:auto;}
.cat-drawer{position:fixed;left:0;top:var(--rc-hdr-h,120px);bottom:0;width:300px;background:#141414;z-index:70;
  transform:translateX(-100%);transition:transform .35s ease;overflow-y:auto;padding:22px 0;
  border-right:1px solid #333;font-family:'Baloo2',sans-serif;}
.cat-drawer.open{transform:translateX(0);}
.cat-head{font-family:'Baloo2',sans-serif;font-weight:700;color:#fff;font-size:21px;padding:0 24px 14px;
  display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #262626;margin-bottom:8px;}
.cat-close{cursor:pointer;color:#999;font-size:22px;line-height:1;}
.cat-close:hover{color:#fff;}
.cat-grp{width:100%;background:none;border:none;text-align:left;cursor:pointer;padding:15px 24px 9px;
  color:#ffffff;font-family:'Baloo2',sans-serif;font-weight:700;font-size:12px;letter-spacing:1.2px;
  text-transform:uppercase;display:flex;align-items:center;gap:8px;}
.cat-cnt{margin-left:auto;color:#6f6f6f;font-size:11px;font-weight:500;letter-spacing:0;}
.cat-chev{transition:transform .25s;color:#8a8a8a;flex-shrink:0;}
.cat-grp[aria-expanded="false"] .cat-chev{transform:rotate(-90deg);}
.cat-grp-body{display:none;}
.cat-grp-body.open{display:block;}
.cat-link{display:block;padding:9px 24px;color:#d0d0d0;text-decoration:none;font-weight:500;font-size:15px;
  transition:background .2s,color .2s,padding-left .2s;}
.cat-link:hover{background:#1f1f1f;color:#fff;padding-left:30px;}
.cat-link.active{color:#fff;background:#1f1f1f;box-shadow:inset 3px 0 0 #ffffff;}
.cat-sep{height:1px;background:#262626;margin:14px 24px 8px;}
.cat-state{font-weight:700;}
.cat-state--new.active{box-shadow:inset 3px 0 0 #008BFF;}
.cat-state--sale.active{box-shadow:inset 3px 0 0 #FF0019;}
.cat-state--bundles.active{box-shadow:inset 3px 0 0 #FF6600;}
.cat-state--free.active{box-shadow:inset 3px 0 0 #06cd57;}

/* Mağaza sayfası yardımcıları */
.rc-shop-empty{width:100%;text-align:center;color:#707070;font-family:'Baloo2',sans-serif;font-weight:500;
  font-size:17px;padding:60px 0;}
.rc-shop-clear{display:inline-block;margin-top:8px;color:#8a8a8a;text-decoration:none;
  font-family:'Baloo2',sans-serif;font-weight:500;font-size:14px;transition:color .2s;}
.rc-shop-clear:hover{color:#fff;}
/* ==================== /RC KATEGORİ PANELİ ==================== */

/* Yatay bardaki mağaza yönlendirme butonları (filtre değil, sayfa değiştirir) */
a.filter-btn{text-decoration:none;display:inline-flex;align-items:center;}
.filter-btn--shop{color:#ffffff;border-color:#e5b395;}
.filter-btn--shop:hover{background:#e5b395;border-color:#e5b395;color:#1a1a1a;}

/* ═══════════════════════════════════════════════════════════════
   DESIGN SERVICES — Portfolio vitrini + lightbox + kare fiyat + form
   (18 Tem 2026, önizlemeden taşındı. Desktop-only: main.css sadece
   desktop'a enqueue ediliyor, mobil mobile.css yüklüyor.)
   Sonda: aşağıdaki ds-price/ds-input/ds-btn kuralları yukarıdaki
   varsayılanları BİLEREK ezer (kare kart, degrade, metin düzeltmesi).
═══════════════════════════════════════════════════════════════ */

/* ── Portfolio ızgara ── */
.ds-showcase { max-width: 1100px; margin: 0 auto; padding: 20px 24px 70px; }
.ds-showcase-title { font-family: 'Baloo2', sans-serif; font-weight: 700; font-size: 34px; color: #fff; text-align: center; margin: 0 0 28px; }
.ds-showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Dönen mor-mavi kontur (hero renkleri #7B2FBE mor · #00D8FF mavi) */
@property --ds-ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.ds-showcase-cell {
    position: relative; aspect-ratio: 1/1; border-radius: 16px; overflow: hidden;
    padding: 3px; background: #141414;
}
.ds-showcase-cell::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: conic-gradient(from var(--ds-ang), #7B2FBE, #00D8FF, #7B2FBE, #00D8FF, #7B2FBE);
    animation: ds-spin 4s linear infinite;
}
@keyframes ds-spin { to { --ds-ang: 360deg; } }
.ds-showcase-cell img {
    position: relative; z-index: 1;
    width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 13px;
}
.ds-cell--zoom { cursor: pointer; transition: transform .2s, box-shadow .2s; }
.ds-cell--zoom img { object-position: top; }
.ds-cell--zoom:hover { transform: translateY(-4px); box-shadow: 0 0 24px rgba(0,216,255,.35); }

/* ── Lightbox ── */
.ds-lightbox { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,.9); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 32px; }
.ds-lightbox.open { display: flex; }
.ds-lightbox-scroll {
    width: min(88vw, 440px); max-height: 90vh;
    overflow-y: auto; overflow-x: hidden;
    border: 2px solid #7B2FBE; border-radius: 14px; background: #141414;
    box-shadow: 0 10px 50px rgba(0,0,0,.6);
    scrollbar-width: thin; scrollbar-color: #00D8FF transparent;
}
.ds-lightbox-scroll::-webkit-scrollbar { width: 8px; }
.ds-lightbox-scroll::-webkit-scrollbar-track { background: transparent; }
.ds-lightbox-scroll::-webkit-scrollbar-thumb { background: #00D8FF; border-radius: 8px; }
.ds-lb-slide { width: 100%; height: auto; display: block; }
.ds-lightbox-scroll.square { width: min(88vw, 560px); max-height: 90vh; overflow: hidden; }
.ds-lb-divider { height: 40px; background: linear-gradient(90deg, #7B2FBE, #00D8FF); }
.ds-lightbox-close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; padding: 6px; z-index: 1; }
.ds-lightbox-close:hover { color: #00D8FF; }

/* ── Fiyat kartları: kare + mor-mavi çapraz degrade + beyaz hizalı yazı ── */
.ds-price-card {
    aspect-ratio: 1/1; gap: 0; padding: 34px 26px;
    background: linear-gradient(135deg, #7B2FBE, #00D8FF, #7B2FBE);
}
.ds-price-card:hover { background: linear-gradient(135deg, #8d3fd0, #22ddff, #8d3fd0); transform: translateY(-4px); }
.ds-price-title, .ds-price-amount, .ds-price-sub { color: #fff; margin: 0; text-align: center; width: 100%; }
.ds-price-title { font-size: 23px; line-height: 1.3; min-height: 2.6em; display: flex; align-items: flex-start; justify-content: center; }
.ds-price-amount { font-size: 62px; flex: 1; display: flex; align-items: center; justify-content: center; }
.ds-price-sub { font-size: 18px; min-height: 1.5em; display: flex; align-items: flex-end; justify-content: center; }

/* ── Form: input mavi degrade kontur + GÖRÜNÜR metin · buton aktif/pasif ── */
.ds-input {
    border: 2px solid transparent;
    background: linear-gradient(#fff,#fff) padding-box,
                linear-gradient(135deg,#00D8FF,#7B2FBE) border-box;
    color: #1a1a1a;   /* düzeltme: eskiden #FFFFFF (beyaz üstüne beyaz = görünmez) */
}
.ds-input::placeholder { color: #8a8a8a; }
.ds-btn {
    border: 2px solid transparent;
    background: linear-gradient(#0d0d0d,#0d0d0d) padding-box,
                linear-gradient(135deg,#7B2FBE,#00D8FF) border-box;
    color: #fff;
    transition: background .25s, color .2s, transform .2s;
}
.ds-btn:hover { background: linear-gradient(135deg,#7B2FBE,#00D8FF); color: #fff; transform: translateY(-2px); }
.ds-btn:disabled { opacity: .45; cursor: default; transform: none; }

/* ── Arama sayfalama (search.php desktop) ────────────────────────── */
.rc-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 40px 0 8px;
}
.rc-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #cccccc;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.rc-pagination a.page-numbers:hover {
    border-color: #e5b395;
    color: #e5b395;
}
.rc-pagination .page-numbers.current {
    background: #e5b395;
    border-color: #e5b395;
    color: #111111;
}
.rc-pagination .page-numbers.dots {
    border-color: transparent;
    color: #555555;
}


/* ── Klavye odağı görünürlüğü (denetim A1) ───────────────────────────────────
   Dosyada 8 adet `outline: none` var ama yerine hiçbir gösterge konmamıştı;
   klavyeyle gezen kullanıcı nerede olduğunu göremiyordu.

   `:focus-visible` YALNIZCA klavye odağında tetiklenir — fareyle tıklayan
   kullanıcı hiçbir değişiklik görmez. account.css ve free.css bu deseni zaten
   kullanıyordu, main.css'e uygulanmamıştı.

   Özgüllük: element + pseudo-class (0,1,1) > tek sınıf (0,1,0),
   bu yüzden `outline: none` veren sınıf kurallarını geçer.                    */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid #e5b395;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ── Yukarı çık butonu — desktop (22 Tem 2026) ──
   Yeni floating element; mevcut hiçbir kuralı ezmez. */
.rc-totop {
    position: fixed;
    right: 28px;
    /* Chat launcher'ı (56px, bottom:28) ile çakışmasın: onun ÜSTÜNE al.
       28 (chat alt) + 56 (chat yükseklik) + 12 (boşluk) = 96px */
    bottom: 96px;
    width: 52px; height: 52px;
    z-index: 900;
    display: flex; align-items: center; justify-content: center;
    background: rgba(24,24,26,.9); color: #e5b395;
    border: 2px solid #e5b395; border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0,0,0,.45);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(14px) scale(.85);
    transition: opacity .3s, transform .3s cubic-bezier(.34,1.56,.64,1), visibility .3s, background .2s, color .2s, box-shadow .2s;
}
.rc-totop svg { transition: transform .2s ease; }
.rc-totop.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.rc-totop:hover { background: #e5b395; color: #1a1a1a; transform: translateY(-3px) scale(1.06); box-shadow: 0 12px 26px rgba(229,179,149,.4); }
.rc-totop:hover svg { transform: translateY(-2px); }
.rc-totop:focus-visible { outline: 2px solid #e5b395; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
    .rc-totop { transition: opacity .25s, visibility .25s; transform: none; }
    .rc-totop.show { transform: none; }
    .rc-totop:hover { transform: none; }
}

/* ── SKIP LINK (WCAG 2.4.1) — normalde gizli, klavye odağında görünür ── */
.rc-skip-link{position:absolute;left:-9999px;top:0;z-index:100000;background:#0f0f0f;color:#fff;padding:10px 18px;border-radius:0 0 8px 0;font-size:14px;font-weight:600;text-decoration:none}
.rc-skip-link:focus{left:0;outline:2px solid #e5b395;outline-offset:2px}
