/* ===============================
   INSTAGRAM STYLE UI SYSTEM
================================ */

:root {
    --bg-main: #ffffff;
    --text-main: #262626;
    --text-muted: #8e8e8e;
    --border-soft: #dbdbdb;

    --accent-blue: #000000;
    --accent-danger: #ed4956;
    --accent-success: #2ecc71;
}

/* Reset küçük dokunuş */
* {
    box-sizing: border-box;
}

body {
    background: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont;
    font-size: 14px;
    line-height: 1.45;
}

/* Link */
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    opacity: .85;
}

/* ===============================
   CARD
================================ */
.ui-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
}

/* ===============================
   BUTTONS
================================ */
.btn-primary {
    background: var(--accent-blue);
    color: #fff;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
}

.btn-secondary {
    background: #fff;
    border: 1px solid var(--border-soft);
    color: var(--text-main);
    border-radius: 8px;
    padding: 8px 16px;
}

.btn-danger-text {
    color: var(--accent-danger);
    background: transparent;
}

/* ===============================
   INPUT
================================ */
input, textarea, select {
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent-blue);
}

/* ===============================
   TEXT HELPERS
================================ */
.text-muted {
    color: var(--text-muted);
}
/* =========================================================
   INSTAGRAM-LIKE UI REVISION
   Only visual polish – NO structural changes
========================================================= */

/* -------------------------
   ROOT & GLOBAL FEEL
------------------------- */
body {
    background-color: #fafafa;
    color: #262626;
    -webkit-font-smoothing: antialiased;
}

a {
    transition: color .15s ease, background .15s ease, box-shadow .15s ease;
}

/* -------------------------
   TYPOGRAPHY POLISH
------------------------- */
h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: -0.2px;
}

p {
    line-height: 1.55;
    color: #444;
}

.text-slate-400 {
    color: #8e8e8e !important;
}
.text-slate-500 {
    color: #737373 !important;
}
.text-slate-600 {
    color: #555 !important;
}

/* -------------------------
   CARDS (Instagram flat style)
------------------------- */
.shadow-card {
    box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
}

.bg-white {
    background-color: #ffffff;
}

.rounded-2xl {
    border-radius: 14px !important;
}

.border {
    border-color: #e5e7eb !important;
}

/* Hover polish (no jump, no scale) */
.hover\:shadow-xl:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.10) !important;
    transform: none !important;
}

/* -------------------------
   BUTTONS
------------------------- */
.bg-primary {
    background-color: #000000 !important;
}
.bg-primaryhover:hover {
    background-color: #1877f2 !important;
}

button,
.btn,
a.bg-primary {
    font-weight: 500;
    border-radius: 10px !important;
}

/* Outline / light buttons */
.bg-slate-100 {
    background-color: #efefef !important;
}
.bg-slate-100:hover {
    background-color: #e4e4e4 !important;
}

/* -------------------------
   INPUTS & FORMS
------------------------- */
input,
select,
textarea {
    border-radius: 10px !important;
    border-color: #dbdbdb !important;
    background-color: #fff;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #000000 !important;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.15);
}
input#navSearch{
    border: none !important;
	border-left: solid 1px #dbdbdb !important;
}

#searchWrapper {
    background: #fff !important;
    border: 1px solid #dbdbdb !important;
}
.search-focus {
    box-shadow: 0 0 0 2px rgba(0,0,0,0.25) !important;
}

/* -------------------------
   HEADER & NAV
------------------------- */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #dbdbdb;
}

header a {
    color: #262626;
}

header a:hover {
    color: #000000;
}

/* Mega menu */
.mega-menu {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

/* -------------------------
   ICON BUTTONS (wishlist, bell)
------------------------- */
.wishlist-btn {
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    border: 1px solid #e5e7eb;
}

.wishlist-btn:hover {
    background-color: #fff;
}

.material-icons {
    font-weight: normal;
}
.headerLogo{
	background-color:transparent !important;
}
/* -------------------------
   BADGES (trust score etc.)
------------------------- */
.bg-emerald-50 {
    background-color: #ecfdf5 !important;
}
.text-emerald-700 {
    color: #047857 !important;
}

/* Red accents (favorite, alerts) */
.text-red-500 {
    color: #ed4956 !important;
}

/* -------------------------
   TAGS / CHIPS
------------------------- */
.rounded-full {
    border-radius: 9999px;
}


.bg-primary {
    background-color: rgb(254 57 57) !important;
}
.text-primary {
    color: rgb(0 0 0) !important;
}
/* -------------------------
   DROPDOWNS
------------------------- */
#userMenuPanel,
#notifDropdown {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

/* -------------------------
   OWL CAROUSEL NAV
------------------------- */
.owl-prev,
.owl-next {
    background: #ffffff !important;
    border: 1px solid #e5e7eb;
}

.owl-prev span,
.owl-next span {
    color: #262626;
}

/* -------------------------
   MOBILE POLISH
------------------------- */
@media (max-width: 768px) {
    body {
        background-color: #fff;
    }

    header {
        box-shadow: none;
    }
}
/*
.homeCat {
	border-radius: 50% !important;
    width: 120px;
    height: 120px;
	margin-left: auto;
    margin-right: auto;
}*/
.countdownDiv {
	font-family: "Orbitron", sans-serif;
    font-size: 24px !important;
    margin-bottom: 20px !important;
    margin-top: 15px;
}
.cdgun,.cdsaat,.cddakika,.cdsaniye{
	font-size:12px !important;
	margin-left:5px;
}
.d-flex {
    display: flex;
    justify-content: space-between;
}



/* ===============================
   PRODUCT CARDS (Instagram Feed)
=============================== */

.product-card,
.bg-white.rounded-2xl.shadow {
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06) !important;
    transition: box-shadow .2s ease;
}

.product-card:hover,
.bg-white.rounded-2xl.shadow:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.10) !important;
}

/* Image ratio – clean & calm */
.product-card img,
.bg-white img {
    border-radius: 12px;
    background-color: #f3f3f3;
}


/* Price */
.product-card .text-primary,
.bg-white .text-primary {
    font-weight: 600;
}


.oneCikanSaticilar .text-xs {
    color: #ffffff;
}
.oneCikanSaticilar .saticiBaslik{color: #000000 !important;}
/* ===============================
   WISHLIST BUTTON
=============================== */

.wishlist-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: 1px solid #e5e7eb;
}

.wishlist-btn .material-icons {
    font-size: 18px;
}

.wishlist-btn:hover {
    background: #fff;
}

.wishlist-btn .text-red-500 {
    color: #ed4956 !important;
}

/* ===============================
   TRUST BADGE
=============================== */

.trust-badge,
.absolute.top-2.left-2 {
    background: rgba(255,255,255,0.95) !important;
    border: 1px solid #e5e7eb;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.trust-badge span,
.absolute.top-2.left-2 span {
    font-size: 11px;
}

/* ===============================
   FREE PRODUCTS
=============================== */

.free-product-card,
.bg-white.rounded-xl {
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.free-product-card img {
    border-radius: 12px;
}

/* Countdown */
[data-countdown] {
    font-size: 12px;
    color: #ed4956;
    font-weight: 500;
}

/* ===============================
   SELLER CARDS
=============================== */

.seller-card,
.bg-white.rounded-2xl.shadow-card {
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.seller-card img {
    border-radius: 50%;
}

/* ===============================
   CAROUSEL ITEMS
=============================== */

.owl-carousel .bg-white {
    margin-bottom: 6px;
}

.owl-carousel .bg-white:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}

.akilliOneriler {
    color: #fff;
}
/* ===============================
   PROFILE HEADER
=============================== */

.profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
}

.profile-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    background: #f3f3f3;
}

.profile-username {
    font-size: 20px;
    font-weight: 600;
    color: #262626;
}

.profile-actions a,
.profile-actions button {
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid #dbdbdb;
    background: #fff;
}

.profile-actions a.primary,
.profile-actions button.primary {
    background: #0095f6;
    color: #fff;
    border-color: #0095f6;
}
/* ===============================
   PROFILE STATS
=============================== */

.profile-stats {
    display: flex;
    gap: 32px;
    margin-top: 12px;
}

.profile-stat {
    text-align: center;
}

.profile-stat .count {
    font-weight: 600;
    font-size: 16px;
    color: #262626;
}

.profile-stat .label {
    font-size: 13px;
    color: #8e8e8e;
}
/* ===============================
   PROFILE TRUST SCORE
=============================== */

.profile-trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f1fdf6;
    color: #1f9254;
    border: 1px solid #cceedd;
}

.profile-trust .material-icons {
    font-size: 16px;
}
/* ===============================
   PROFILE BIO
=============================== */

.profile-bio {
    margin-top: 12px;
    font-size: 14px;
    color: #262626;
    max-width: 520px;
}

.profile-meta {
    margin-top: 6px;
    font-size: 13px;
    color: #8e8e8e;
}

.profile-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .profile-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

.profile-products img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    background: #f3f3f3;
}


.profile-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid #efefef;
    margin-top: 24px;
}

.profile-tab {
    padding: 12px 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #8e8e8e;
    cursor: pointer;
    border-top: 2px solid transparent;
}

.profile-tab.active {
    color: #262626;
    border-top-color: #262626;
    font-weight: 600;
}
.gsText{
	max-width: 130px;
}
.catIcon{
    border-radius: 50% !important;
    width: 80px !important;
    height: 80px !important;
}
.catIcon span{
    color: #fff !important;
    font-size: 40px;
}
.owlTextBlockTitle{
	font-size: clamp(28px, 3.2vw, 48px) !important;
    font-weight: 900 !important;
    letter-spacing: -.3px;
    line-height: 1.05 !important;
    margin: 0 0 10px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}
.owlTextBlockSub{
	margin: 0 0 14px;
    font-size: 19px;
    opacity: .92;
	color:#fff;
}
.homeSlider .owl-dots {
    margin-top: 30px;
}
.homeSlider .owl-dots .owl-dot span {
    width: 25px !important;
    height: 12px !important;
    background: #d1d5db !important;
}
.aionayli {
    position: absolute;
    width: 70px !important;
    right: 10px;
    top: 10px;
}
.font-bold {
    font-weight: 800 !important;
}
.homeCatName {
    font-size: 0.8rem !important;
}
@media (max-width: 767px) {
.aionayli {
    position: absolute;
    width: 70px !important;
    right: 10px;
    top: 10px;
}
.owlInnerT{
	background-color: rgb(0 0 0 / 0.7) !important;
}
.catIcon {
    width: 40px !important;
    height: 40px !important;
}
.catIcon span {
    font-size: 25px;
}
.homeCat{
	padding:0.5rem 0 !important;
}
.homeCatName{
	font-size:12px;
}
.homeMostSearch{
	display:none;
}
section.max-w-7xl.mx-auto.mt-10.px-4 .gap-4 {
    gap: 0.3rem;
}
.homeCatSection .text-sm {
    font-size: 0.6rem !important;
    line-height: 0.65rem !important;
}
.homeCatTitle{display:none !important;}
.homeCatSection{margin-top:1.5rem!important}
.owlTextBlockTitle {
    font-size: clamp(26px, 5vw, 40px) !important;
}
.owlTextBlockSub {
    font-size: 16px;
	line-height: 1.25;
}
.popularSlider .owl-nav {
	margin-top: -190px !important;
}

.homeSlider.owl-theme .owl-nav {
	margin-top: -40px;
}
	
.homeSlider .owl-prev,.homeSlider .owl-next {
    width: 30px;
    height: 30px;
}
	
.popularSlider img {
	height: 15rem; !important;
}
.mgButton {
    width: calc(100% - 100px);
    margin-left: auto;
    margin-right: auto;
}
}
.successBadge{font-weight:900}
.trustBadge {
    color: #fff;
    padding: 3px 10px 3px 35px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 10px;
	display: flex;
    justify-content: space-between;
    align-items: center;
	width: fit-content;
	letter-spacing: -0.5px;
}
.trustBadge .material-icons {
    font-size: 20px;
    margin-right: 3px;
    position: absolute;
    margin: -35px;
    color: #ffffff;
    border-radius: 50%;
    padding: 4px;
	border: solid 2px;
}
.featuredBadge, .eliteBadge,.scoreBadge{
	z-index:1;
}
.scoreBadge{
	margin-left:15px;
	margin-top:15px;
}
.eliteBadge{
	margin-right:15px;
	margin-top:15px;
}
h2 .material-icons {
    color: #fe3939 !important;
}
span.material-icons.text-primary.text-base{
	color: #fe3939 !important;
}
.headerLogo {
    border-radius: 0 !important;
}
.owl-item .bg-primary\/10 {
    background-color: rgb(254 57 57 / 10%) !important;
}
.bg-red-500 {
    background-color: rgb(254 57 57) !important;
}
.btn-outline-primary {
    background-color: #ffffff !important;
    color: #fe3939 !important;
    border: solid 2px #fe3939;
    font-weight: 900 !important;
}
.iconUsername {
    display: flex;
    align-items: center;
}
.bluetick {
    width: 20px !important;
    margin-right: 3px;
}
.swal2-container button.swal2-confirm {
    background-color: #fe3939 !important;
}
.homeCatSection a{
	border: none !important;
	box-shadow: none !important;
	background-color: transparent !important;
	padding:0.5rem 0rem !important;
}

/* =========================
   INSTAGRAM STORY STYLE
========================= */

.story-item {
    display:flex;
    flex-direction:column;
    align-items:center;
    text-decoration:none;
}

/* 1️⃣ RENKLİ STORY BORDER */
.story-outer {
    width:100px;
    height:100px;
    border-radius:50%;
    padding:3px; /* Renkli border kalınlığı */
    display:flex;
    align-items:center;
    justify-content:center;
	transition: width 200ms ease-in-out,height 200ms ease-in-out,margin 200ms ease-in-out;
}

/* 2️⃣ BEYAZ BOŞLUK */
.story-white-gap {
    width:100%;
    height:100%;
    border-radius:50%;
    background:#ffffff;
    padding:4px; /* 🔴 BEYAZ BOŞLUK MİKTARI */
    display:flex;
    align-items:center;
    justify-content:center;
}

/* 3️⃣ RENKLİ HALKA (ikon zemini) */
.story-inner {
    width:100%;
    height:100%;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.story-inner .material-icons {
    font-size:40px;
    color:#ffffff;
	transition: font-size 150ms ease-in-out;
}

/* Yazı */
.story-text {
    margin-top:6px;
    font-size:12px;
    font-weight:600;
    color:#1f2937;
    text-align:center;
    max-width:80px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.categoryStorySlider button.owl-prev,.categoryStorySlider button.owl-next {
    border-radius: 50% !important;
    width: 25px;
    height: 25px;
	margin-top: -6px !important;
}
.categoryStorySlider button.owl-prev {
	margin-left: -40px !important;
}
.categoryStorySlider button.owl-next {
	margin-right: -40px !important;
}
/* Mobil */
@media (max-width:768px){
    .story-outer {
        width:85px;
        height:85px;
    }
    .story-inner .material-icons {
        font-size:35px;
    }
	.categoryStorySlider button.owl-prev {
	margin-left: -25px !important;
}
.categoryStorySlider button.owl-next {
	margin-right: -25px !important;
}
.categoryStorySlider button.owl-prev, .categoryStorySlider button.owl-next {
    margin-top: -15px !important;
}
.story-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-left: 16px;
    padding-bottom: 6px;

    /* 🔥 KRİTİK */
    padding-right: 0;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.story-scroll::-webkit-scrollbar {
    display: none;
}

}
/* =========================
   OWL WHITE GAP FIX
========================= */
.homeSlider.owl-carousel {
    overflow: hidden !important;
}

.homeSlider .owl-stage-outer {
    overflow: hidden !important;
}

.homeSlider .owl-stage {
    display: flex !important;
}
/* =========================
   HOME SLIDER PARALLAX
========================= */
.homeSlider .owlInner {
    position: relative;
    overflow: hidden;
}

.homeSlider .owlImage {
    will-change: transform;
    transform: translateY(0);
    transition: transform .1s linear;
}
/* Mobil owl overscroll fix */
@media (max-width:768px){
    .owl-carousel .owl-stage {
        padding-right: 0 !important;
    }
}
/* =========================
   HOME SLIDER PARALLAX FIX
========================= */
.homeSlider .owlInner {
    position: relative;
    overflow: hidden;
}

.homeSlider .owlImage {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%; /* 🔥 ÖNEMLİ */
    object-fit: cover;
    will-change: transform;
    transform: translate3d(0,0,0);
}
/* =========================
   HOME SLIDER PARALLAX (FINAL)
========================= */

.homeSlider .owlInner {
    position: relative;
    overflow: hidden;
}

/* Parallax wrapper */
.homeSlider .owlParallax {
    position: absolute;
    inset: 0;
    height: 180%;
    will-change: transform;
}

/* Gerçek resim */
.homeSlider .owlImage {
    width: 100%;
    height: 130%;
    object-fit: cover;
}
.homeSlider,
.homeSlider .owl-stage-outer,
.homeSlider .owl-stage,
.homeSlider .owl-item {
    overflow: hidden !important;
}
.story-item:hover .story-white-gap {
    padding: 2px;
}
.story-item:hover .story-inner .material-icons {
    font-size: 70px;
	transition: font-size 150ms ease-in-out
}
.story-item:hover .story-outer {
    width: 110px;
    height: 110px;
    margin-top: -10px;
	transition: width 200ms ease-in-out,height 200ms ease-in-out,margin 200ms ease-in-out;
}
.categoryStorySlider .owl-item{
	padding:10px 0 0 0;
}
.free-buy-btn[data-locked="1"] {
    opacity: .6;
    cursor: not-allowed;
}
.rankLabel{
	font-weight:800;
}
.freeStoreAccessBadge{
	font-weight:800;
}
.trustScoreBadge{
	font-weight:800;
}

.rank-badge{
    font-size:11px;
    font-weight:700;
    padding:3px 8px;
    border-radius:999px;
    margin-left:6px;
}
.rank-badge.l1{background:#e5e7eb;color:#374151;}
.rank-badge.l2{background:#dbeafe;color:#1e40af;}
.rank-badge.l3{background:#dcfce7;color:#166534;}
.rank-badge.l4{background:#fef3c7;color:#92400e;}
.rank-badge.l5{background:#fee2e2;color:#991b1b;}

.free-access{
    font-size:11px;
    padding:3px 8px;
    border-radius:999px;
    background:#ecfeff;
    color:#155e75;
    display:inline-flex;
    align-items:center;
    gap:4px;
}
.free-locked{
    background:#fef2f2;
    color:#991b1b;
}
.free-buy-btn{
    align-items: center;
    display: flex;
    justify-content: center;
}
.btn-outline-secondary {
    border: solid 2px #777f8a;
}


nav>a,#catMenuBtn,#searchCategory {
    font-weight: 700;
}
.headerPriceLP {
    margin-right: -10px;
}
.yeniBox {
    border-radius: 10px 10px 10px 2px;
	background: linear-gradient(357.5deg, #3e567c 1.59%, #3a5475 21.23%, #2d3c5b 58.6%, #809dc0 97.4%);
	box-shadow: 0 0.953955px 1.90791px rgba(60, 77, 107, 0.25), 0 3.81582px 5.72373px rgba(60, 77, 107, 0.25), inset 0 0 2px 0.5px #001c40, inset 0 -1px 3px #d7ebff;
	font-size: 0.5rem;
	padding: 1px 6px;
}
.yeniBox>span {
	-webkit-background-clip: text;
    background-clip: text;
	line-height: 0.625rem;
	font-weight: 700;
	text-align: center;
	text-rendering: optimizeLegibility;
	text-wrap: nowrap;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color:#ffffff;
}

.seYeni{
	position: absolute;
    margin-left: 70px;
    margin-top: -12px;
}
.nasilYukselirim .text-sm{
	color:#ffffff;
}
.katilButon {
    color: rgb(254 57 57) !important;
    background: #ffffff !important;
    font-weight: 800 !important;
    align-items: center;
    display: flex;
    gap: 10px;
}
.nasilButon {
    font-weight: 800;
	align-items: center;
    display: flex;
    gap: 10px;
}
.swal2-shown > [aria-hidden='true'] {
  transition: 0.1s filter;
  filter: blur(7px);
}
.swal2-popup {
    background: hsl(0deg 0% 100% / 80%);
}
div:where(.swal2-icon).swal2-warning {
    border-color: #e66b00;
    color: #e66b00;
}
h2.swal2-title{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: #000 !important;
	font-weight: 800;
}
.swal2-html-container {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: #000 !important;
	font-weight: 500;
}
.headerLR {
	font-weight: 800;
    border: solid;
    padding: 0 10px;
    border-radius: 10px 10px 10px 10px;
    font-size: 12px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.headerLR:hover {
    background:linear-gradient(357.5deg, #3e567c 1.59%, #3a5475 21.23%, #2d3c5b 58.6%, #809dc0 97.4%);
	color:#fff !important;
	border-radius: 10px 10px 10px 2px;
}
.headerLRIcon{
	margin-right:5px;
}
.swal2-success-circular-line-left,.swal2-success-circular-line-right,.swal2-success-fix{
	    background-color:transparent !important;
}
@media (max-width:768px){
	.homeSlider .owlImage {
		object-position: 70% 0% !important;
	}
}
/* =========================
   FOTO PREVIEW + SORTABLE
========================= */

.photo-item{
    position: relative;
    cursor: move;
    user-select: none;
}

.photo-item img{
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

/* Ana foto butonu */
.setMainBtn{
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 999px;
    cursor: pointer;
    border: none;
    display: none;
}

/* Hover olunca göster */
.photo-item:hover .setMainBtn{
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Ana foto seçiliyse */
.photo-item.is-main::after{
    content: "ANA FOTO";
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: #16a34a;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 6px;
}

/* Sortable drag state */
.photo-item.dragging{
    opacity: 0.5;
}

.photo-item.sortable-ghost{
    opacity: 0.3;
}
.btnDeleteFreeItem {
    bottom: 7px;
    top: auto;
}
.align-items-center {
    align-items: center;
}
@media (max-width: 767px) {
    .owl-theme.askidaCarousel .owl-nav {
        margin-top: -140px;
    }
}

.owl-carousel .owl-stage-outer {
    padding: 2px !important;
}

a:hover {
    opacity: 1;
}
  .anishadow{
   	position: relative;
    border-radius: 20px !important;
    
   }
  
   .anishadow:before,
   .anishadow:after{
   	content: '';
   	position: absolute;
   	top: -1px;
   	left: -1px;
	
   	background: linear-gradient(45deg,#BF953F, #000000, #B38728, #FBF5B7, #000000,#BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
	background: linear-gradient(45deg,#fb0094,#0000ff,#00ff00,#ffff00,#ff0000,#fb0094,#0000ff,#00ff00,#ffff00,#ff0000);
   	background-size: 400% 400%;
   	width: calc(100% + 2px);
   	height: calc(100% + 2px);
   	border-radius: 20px;
   	z-index: -1;
    animation: animate 3s ease alternate infinite;
   }
   .anishadow:after{
   	filter: blur(2px);
   }
	@keyframes animate{
		0%{
			background-position: 0 50%;
		}
		33%{
			background-position: 33% 50%;
		}
		66%{
			background-position: 66% 50%;
		}
		100%{
			background-position: 100% 50%;
		}
	}
.rank-box{margin-top:10px;max-width: 93%;}
.rank-label{font-size:13px;font-weight:600}
.rank-bar{
    height:5px;
    background:#e5e7eb;
    border-top-left-radius:10px;
	border-top-right-radius:10px;
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
    overflow:hidden;
	margin-left: 29px;
    margin-top: -5px;
}
.rank-fill{
    height:100%;
    background:linear-gradient(90deg,#22c55e,#16a34a);
    width:0;
    transition:width 1s ease;
}
.rank-info{
    font-size:11px;
    color:#6b7280;
    margin-top:4px;
}

.goldTitle {
    background-image: linear-gradient(0deg,rgba(191, 158, 8, 1) 0%, rgba(247, 227, 139, 1) 50%, rgba(191, 158, 8, 1) 100%);
	
    color: transparent;
    background-clip: text;
	font-weight:900;
	font-size:60px !important;
	margin-bottom:0;
}
.goldSubTitle {
    background-image: linear-gradient(0deg,rgba(204, 204, 204, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(204, 204, 204, 1) 100%);
    color: transparent;
    background-clip: text;
	font-weight:900;
	font-size:40px;
	margin-top:-10px;
}
.goldDesc{
	padding:3px;
}
.goldDesc span{
	background:transparent;
	display:block;
}




.module-border-wrap {
  --box-border--border: linear-gradient(105deg, rgba(191, 158, 8, 1) 0%, rgba(247, 247, 223, 1) 100%);
  border-radius: 0.75rem;
  /* classic 9-slide-scaling with 2px border 4px rounded corners. change `rx` and `ry` parameters to adjust border-radius */
  --box--border__top-left: url("data:image/svg+xml,<svg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='1' y='1' width='18' height='18' rx='4' ry='4' stroke='%23000' stroke-width='2' /></svg>");
  --box--border__top: url("data:image/svg+xml,<svg preserveAspectRatio='none' width='100' height='10' viewBox='0 0 100 10' fill='none' xmlns='http://www.w3.org/2000/svg'><line x1='-1' y1='1' x2='101' y2='1' stroke='%23000' stroke-width='2'/></svg>");
  --box--border__top-right: url("data:image/svg+xml,<svg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='-9' y='1' width='18' height='18' rx='4' ry='4' stroke='black' stroke-width='2' /></svg>");
  --box--border__left: url("data:image/svg+xml,<svg preserveAspectRatio='none' width='10' height='100' viewBox='0 0 10 100' fill='none' xmlns='http://www.w3.org/2000/svg'><line x1='1' y1='-1' x2='1' y2='101' stroke='%23000' stroke-width='2'/></svg>");
  --box--border__right: url("data:image/svg+xml,<svg preserveAspectRatio='none' width='10' height='100' viewBox='0 0 10 100' fill='none' xmlns='http://www.w3.org/2000/svg'><line x1='9' y1='-1' x2='9' y2='101' stroke='%23000' stroke-width='2'/></svg>");
  --box--border__bottom-left: url("data:image/svg+xml,<svg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='1' y='-9' width='18' height='18' rx='4' ry='4' stroke='%23000' stroke-width='2' /></svg>");
  --box--border__bottom: url("data:image/svg+xml,<svg preserveAspectRatio='none' width='100' height='10' viewBox='0 0 100 10' fill='none' xmlns='http://www.w3.org/2000/svg'><line x1='-1' y1='9' x2='101' y2='9' stroke='%23000' stroke-width='2'/></svg>");
  --box--border__bottom-right: url("data:image/svg+xml,<svg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='-9' y='-9' width='18' height='18' rx='4' ry='4' stroke='black' stroke-width='2' /></svg>");
  
  padding: 1rem;
  position: relative;
  resize: both;
  overflow: hidden;
}

.module-border-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--box-border--border);
  mask:
    var(--box--border__top-left) 0 0 / .625rem .625rem,
    var(--box--border__top) .625rem 0 / calc(100% - 1.25rem) .625rem,
    var(--box--border__top-right) 100% 0 / .625rem .625rem,
    var(--box--border__left) 0 .625rem / .625rem calc(100% - 1.25rem),
    var(--box--border__right) 100% .625rem / .625rem calc(100% - 1.25rem),
    var(--box--border__bottom-left) 0 100% / .625rem .625rem,
    var(--box--border__bottom) .625rem 100% / calc(100% - 1.25rem) .625rem,
    var(--box--border__bottom-right) 100% 100% / .625rem .625rem;
  mask-repeat: no-repeat;
  border-radius: 1.25rem;

}

@media (max-width: 767px) {
.goldTitle {
    font-size: 50px !important;
}

.goldSubTitle {
    font-size: 24px;
	margin-top:-5px;
}
}