:root {
	--tw-gradient-from-position: 0%;
	--tw-gradient-via-position: 0%;
	--tw-gradient-to-position: 100%;
}

.vertical-text {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
}
.tag {
	display: inline-block;
	padding: 10px 20px;
	background: #f0f0f0;
	color: #333;
	font-size: 1.2rem;
	font-weight: bold;
	border-radius: 5px;
	position: relative;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.tag:before {
	content: '';
	position: absolute;
	left: -10px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 10px solid #f0f0f0;
}
.tag:after {
	content: '';
	position: absolute;
	left: -18px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: #fff;
	border: 2px solid #ccc;
	border-radius: 50%;
}
.bubble{
}
.bubble *{
	transition: box-shadow 0.3s ease;
}
.bubble:hover img{
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.bubble img{
	border-radius: 50%;
	
  object-fit: cover;
}

.bubble p:after {
  display:block;
  content: '';
  border-bottom: solid 3px #019fb6;  
  transform: scaleX(0);  
  transition: transform 250ms ease-in-out;
}
.bubble:hover p:after { transform: scaleX(1); }
.bubble p.fromRight:after{ transform-origin:100% 50%; }
.bubble p.fromLeft:after{  transform-origin:  0% 50%; }

.aspect{
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.aspect-ratio-4-3 {
	aspect-ratio: 4 / 3;
}
.aspect-ratio-3-4 {
	aspect-ratio: 3 / 4;
}
.aspect-ratio-4-1 {
	aspect-ratio: 4 / 1;
}
.aspect-ratio-4-2 {
	aspect-ratio: 4 / 2;
}
.aspect-ratio-3-2 {
	aspect-ratio: 3 / 2;
}

.aspect-ratio-1-1 {
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.aspect-ratio-16-9 {
	aspect-ratio: 16 / 9;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.aspect-ratio-3-4 img,
.aspect-ratio-4-3 img,
.aspect-ratio-1-1 img,
.aspect img,
.aspect .index,
.aspect-ratio-4-2 .index {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1s ease; /* 2 saniyede artacak */
}
/* Hover sınıfı varsa animasyon */
.aspect-hover img:hover{
	width: 110%;
	height: 110%;
	transition: all 1s ease; /* 2 saniyede artacak */
}
.listings{
	
}
.listings a{
	text-decoration: none;
}
.listing .listing-hover{
	visibility:hidden;
}
.listing:hover .listing-hover{
	visibility: visible;
}
.listingSliderBtn{
    height: 60px !important;
    width: 60px!important;
    text-indent: 0!important;
	background-color:unset!important;
}
.slider-aspect-ratio-4-3 {
	aspect-ratio: 4 / 3;
	background-color: #f0f0f0;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.slider-aspect-ratio-4-3.active,.slider-aspect-ratio-4-3.carousel-item-start{
	display:flex!important;
}
.overlay {
	z-index:10000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* %50 saydam siyah */
}

.side-box {
	z-index:10001;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%; /* Ekranın %50'si */
    height: 100%;
	overflow-y:scroll;
}
.stepper-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}

.stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: -50%;
  z-index: 2;
}

.stepper-item::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 2;
}

.stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
  margin-bottom: 6px;
}

.stepper-item.active {
  font-weight: bold;
}

.stepper-item.completed .step-counter {
  background-color: #4bb543;
}

.stepper-item.completed::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #4bb543;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 3;
}

.stepper-item:first-child::before {
  content: none;
}
.stepper-item:last-child::after {
  content: none;
}

.cover-container{
	height: calc(100vh - 104px);
}
.divider-inner-shadow {
	width: 100%;
	height: 3rem;
	background-color: rgba(0, 0, 0, .1);
	border: solid rgba(0, 0, 0, .15);
	border-width: 1px 0;
	box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  }
/*input[type='radio'], input[type='checkbox'] { 
     transform: scale(2); 
 }
input[type="radio"].hidden-input {
            display: none;
        }

        .box {
            display: inline-block;
            transition: all 0.3s ease;
        }
        input[type="radio"].hidden-input:checked + .box {
            border-color: #4CAF50;
            background-color: #f0f0f0;
            color: #4CAF50;
        }*/

.list-group {
  width: 100%;
}

.form-check-input:checked + .form-checked-content {
  opacity: .5;
}

.form-check-input-placeholder {
  border-style: dashed;
}
[contenteditable]:focus {
  outline: 0;
}

.list-group-checkable .list-group-item {
  cursor: pointer;
}
.list-group-item-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.list-group-item-check:hover + .list-group-item {
  background-color: var(--bs-secondary-bg);
}
.list-group-item-check:checked + .list-group-item {
  color: #fff;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.list-group-item-check[disabled] + .list-group-item,
.list-group-item-check:disabled + .list-group-item {
  pointer-events: none;
  filter: none;
  opacity: .5;
}

.list-group-radio .list-group-item {
  cursor: pointer;
  border-radius: .5rem;
}
.list-group-radio .form-check-input {
  z-index: 2;
  margin-top: -.5em;
}
.list-group-radio .list-group-item:hover,
.list-group-radio .list-group-item:focus {
  background-color: var(--bs-secondary-bg);
}

.list-group-radio .form-check-input:checked + .list-group-item {
  background-color: var(--bs-body);
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 2px var(--bs-primary);
}
.list-group-radio .form-check-input[disabled] + .list-group-item,
.list-group-radio .form-check-input:disabled + .list-group-item {
  pointer-events: none;
  filter: none;
  opacity: .5;
}
.imageLink {
  display: inline-block;
  overflow: hidden; /* Taşmaları önlemek için */
  transition: transform 0.3s ease; /* Geçiş animasyonu */
	position: relative;
}
.imageLink .text{
	position: absolute;
	left:10px;
	bottom:10px;
}

.imageLink:hover {
  transform: scale(1.1); /* Resmi %10 büyüt */
}
.infoLink{
	text-decoration: underline;
	text-decoration-style: dashed;
	cursor: pointer;
	position: relative;
}
.infoLink:hover{
	text-decoration-style: solid;
}
.large-2x {
	transform: scale(2);
}
.small-text{
	font-size: small;
}
.listingImageSmall{
	width: 150px!important;
}
.img-100{
	width: 100px!important;
}
.img-50{
	width: 50px!important;
}
.quantity{
	width: 60px!important;
}
.scroll-area {
	height: 200px; /* Yükseklik */
	padding: 10px; /* İç boşluk */
	overflow-y: auto; /* Yatay scroll kapalı, dikey scroll otomatik */
	scrollbar-width: thin; /* Firefox için ince scrollbar */
}

/* Chrome, Safari ve Edge için scrollbar özelleştirme */
.scroll-area::-webkit-scrollbar {
	width: 8px; /* Scrollbar genişliği */
}

.scroll-area::-webkit-scrollbar-track {
	background: #f1f1f1; /* Scrollbar track rengi */
}

.scroll-area::-webkit-scrollbar-thumb {
	background: #888; /* Scrollbar thumb rengi */
	border-radius: 4px; /* Kenar yuvarlaklığı */
}

.scroll-area::-webkit-scrollbar-thumb:hover {
	background: #555; /* Hover rengi */
}

/* İçerik için örnek stil */
.scroll-content {
	line-height: 1.6;
	color: #333;
}

.customTooltip {
	position: relative;
	border-bottom: 1px dotted black;
  }
  
  .customTooltip .tooltiptext {
	visibility: hidden;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	top: 150%;
	left: 50%;
	margin-left: -60px;
  }
  
  .navbar .dropdown-fullwidth {
    position: static
}

.navbar .dropdown-fullwidth .dropdown-menu {
    top: 32px;
	min-width: 970px;
	max-width: 1320px;
    margin: 1.25rem auto;
    left: 0;
    right: 0;
    padding: 1rem 0
}
.chat{
	z-index:1000;
	min-height: 500px;
	min-width: 350px;
	position: fixed;
	right: 10px;
	bottom: 0px;
}
.chat .chat-header{
    width: 100%;
    box-shadow: 1px 1px 5px #000;
}
.chat .chat-body{
	overflow-y: auto;
	max-height: 500px;
	width: 100%;
}
.chat .chat-footer{

    width: 100%;
    box-shadow: -1px -1px 5px #000;
}
.chat .chat-footer .chat-text{
    width: 100%;
    border: none;
}
.rating .star {
	font-size: 24px;
	cursor: pointer;
	color: #ccc;
}
.rating .star.filled {
	color: gold;
}
.star-rating {
    position: relative;
    display: inline-block;
    font-size: 24px;
}

.star-rating .empty-stars {
    color: lightgray;
}

.star-rating .full-stars {
    color: gold;
    position: absolute;
    overflow: hidden;
    white-space: nowrap;
	top:0;
}
.hover-zoom {
    transition: transform 0.3s ease-in-out;
}

.hover-zoom:hover {
    transform: scale(1.05);
}
.hover-shadow {
    transition: box-shadow 0.3s ease-in-out; /* Hem giriş hem çıkışta geçiş */
  }
.hover-shadow:hover {
	box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.5);
	transition: box-shadow 0.3s ease-in-out;
}
.content-narrow-xxs  { max-width: 300px; }
.content-narrow-xs  { max-width: 540px; }
.content-narrow-sm  { max-width: 720px; }
.content-narrow-md  { max-width: 960px; }
.content-narrow-lg  { max-width: 960px; }
.content-narrow-xl  { max-width: 1140px; }
.content-narrow-xxl { max-width: 1320px; }
[class^="content-narrow-"] {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
@keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 0.75; }
	100% { opacity: 1; }
  }
  
  .blink {
	animation: blink 1s infinite;
  }
  .hover {
	transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  
  .hover:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
  }
  .wave-divider-bottom {
	width: 100%;
	overflow: hidden;
	line-height: 0;
	height: 80px;
  }
  
  .wave-divider-bottom svg {
	display: block;
	width: 100%;
	height: 100%;
  }
  
  .animated-wave {
	  animation: waveFlow 12s ease-in-out infinite alternate;
  
  }
  
  @keyframes waveFlow {
	0% {
	  d: path("M0,0 L0,120 C360,150 1080,50 1440,100 L1440,0 Z");
	}
	100% {
	  d: path("M0,0 L0,80 C360,100 1080,100 1440,50 L1440,0 Z");
	}
  }
  .custom-gradient {
	background-image: linear-gradient(to right, #79dfff, rgba(121, 223, 255, 0));
  }
  .absoluteBackground{
	position: absolute!important;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
	pointer-events: none;
}
.overlayBackground{
	position: relative;
}
  /* Sayfa sonuna doğru fade out */
  .overlayBackground::after, .absoluteBackground::after {
	content: "";
	position: absolute!important;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	position: absolute;
	inset: 0;
	background: linear-gradient(
	  to bottom,
	  rgba(0,0,0,0.55),
	  rgba(0,0,0,0.15),
	  rgba(0,0,0,0.55)
	);
	pointer-events: none;
  }
.imageTextBackground{
	background: linear-gradient(to bottom, transparent, var(--background-color, #fff));
}
[data-bs-theme="dark"] .imageTextBackground{
	background: linear-gradient(to bottom, transparent, var(--background-color, #000));
}
/* Dark mode */
[data-bs-theme="dark"]  .overlayBackground::after,[data-bs-theme="dark"]  .absoluteBackground::after {
  background: linear-gradient(to bottom, transparent, var(--background-color, #000));
}

  .hero-gradient-container {
	position: absolute;
	width: 100%;
	height: 100vh; /* üst bölüm kaplasın */
	overflow: hidden;
	background: transparent;
	z-index: -1;
  }
  
  .gradient-layer {
	position: absolute;
	width: 200%;
	height: 200%;
	top: -50%;
	left: -50%;
	opacity: 0.6;
	animation: floaty 20s infinite ease-in-out;
	background-blend-mode: screen;
	will-change: transform;
	z-index: 0;
	pointer-events: none;
	filter: blur(80px);
	transition: opacity 0.3s ease;
  }
  
  /* Katmanlar */
  .layer1 {
	background: radial-gradient(circle at 30% 30%, var(--gradient-layer1), transparent 100%);
	animation-delay: 0s;
  }
  
  .layer2 {
	background: radial-gradient(circle at 70% 40%, var(--cgradient-layer2), transparent 100%);
	animation-delay: 5s;
  }
  
  .layer3 {
	background: radial-gradient(circle at 40% 70%, var(--gradient-layer3), transparent 100%);
	animation-delay: 10s;
  }
  
  .layer4 {
	background: radial-gradient(circle at 60% 60%, var(--gradient-layer4), transparent 100%);
	animation-delay: 15s;
  }
  
  /* Animasyon */
  @keyframes floaty {
	0% {
	  transform: translate(0%, 0%) scale(1);
	}
	50% {
	  transform: translate(10%, 10%) scale(1.2);
	}
	100% {
	  transform: translate(0%, 0%) scale(1);
	}
  }
  
  /* Sayfa sonuna doğru fade out */
  .hero-gradient-container::after {
	content: "";
	position: absolute;
	bottom: 0;
	height: 40%;
	width: 100%;
	background: linear-gradient(to bottom, transparent, var(--background-color, #fff));
	pointer-events: none;
	z-index: 1;
  }
  .transition {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.aymudo-divider {
	position: relative;
	height: 5px;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0,0,0,0.3), rgba(0,0,0,0.1));
	margin: 2rem 0;
  }
  
  .aymudo-divider .divider-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--bs-body-bg); /* Sayfa rengini uyumlu alır */
	padding: 0 1rem;
	font-size: 1.25rem;
	color: rgba(0, 0, 0, 0.5);
  }
  .gradient-theme{
	background:linear-gradient(0deg, #efebf8 0%, #fbf0ef 100%);
  }
  .remaining-height{
	height: 100vh;
  }
  .console-container {
	font-size:4em;
	text-align:center;
	height:200px;
	width:600px;
	display:block;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
  }
  .console-underscore {
	display:inline-block;
	position:relative;
	top:-0.14em;
	left:10px;
  }


  .layoutArea {
	--area-auto-rows:30px;
	--area-gap:10px;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: var(--area-auto-rows);
	gap: var(--area-gap);
}

.layoutArea .item {
	--item-column-span: 4;
	--item-row-span: 1;
	--item-column-span-md: 6;
	--item-row-span-md: 1;
	--item-column-span-sm: 6;
	--item-row-span-sm: 1;
	--animation-order: 0;
  --item-column-start: auto;
  --item-row-start: auto;
  --item-column-start-md: auto;
  --item-row-start-md: auto;
  --item-column-start-sm: auto;
  --item-row-start-sm: auto;
  --item-back-color:none;
	order: var(--item-order, 0);
	
  grid-column: var(--item-column-start, auto) / span var(--item-column-span, 4);
  grid-row: var(--item-row-start, auto) / span var(--item-row-span, 1);
  
	animation: fadeIn 0.6s ease calc(var(--animation-order, 0) * 0.1s);
	overflow: hidden;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: var(--item-back-color);
}
.animation-order-1{animation: fadeIn 0.6s ease calc(1 * 0.1s);}
.animation-order-2{animation: fadeIn 0.6s ease calc(2 * 0.1s);}
.animation-order-3{animation: fadeIn 0.6s ease calc(3 * 0.1s);}
.animation-order-4{animation: fadeIn 0.6s ease calc(4 * 0.1s);}
.layoutArea .item > * {
	grid-area: 1 / 1; /* üst üste bindirme */
  }
.overlay-content {
	position: absolute;
	left:0;
	top:0;
	right: 0;
	bottom: 0;
	padding: 10px;
	z-index:1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
  }
  .layoutArea .item:hover .hover-hidden{
	display: none;
  }
  .layoutArea .item .hover-show{
	display: none;
  }
  .layoutArea .item:hover .hover-show{
	display: block;
  }
.layoutArea .item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1s ease; /* 2 saniyede artacak */
}
.layoutArea .item:hover img{
	transform: scale(1.1); /* %110 büyütme */
}
/* Tablet */
@media (max-width: 992px) {
	.layoutArea .item {
	grid-column: var(--item-column-start-md, auto) / span var(--item-column-span-md, 6);
	grid-row: var(--item-row-start-md, auto) / span var(--item-row-span-md, 1);
  }
}

/* Mobil */
@media (max-width: 600px) {
	.layoutArea .item {
	grid-column: var(--item-column-start-sm, auto) / span var(--item-column-span-sm, 6);
	grid-row: var(--item-row-start-sm, auto) / span var(--item-row-span-sm, 1);
  }
}
/* Hover efektleri */
/* Hover efektleri ve animasyon */
 .item .itemHover {
	transition: 
	  transform 0.5s ease-in-out,  /* Transform animasyonu */
	  color 0.5s ease-in-out;      /* Renk animasyonu */
  }
  
   .item:hover .itemHover {
	transform: translate3d(var(--hover-translate-x, 0), var(--hover-translate-y, 0), 0) 
			   scale(var(--hover-scale, 1));
	color: var(--hover-color, inherit) !important;
  }

/* Animasyon */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.expo-swiper {
	width: 100%;
	height: 100%;
	padding: 60px 0;
  }
  
  .expo-slide {
	width: 320px;
	transition: transform 0.6s ease, opacity 0.6s ease;
  }
  
  .expo-slide .slide-inner {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
	transform: scale(0.9);
	transition: all 0.6s ease;
  }
  
  .expo-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.1);
	transition: transform 0.8s ease;
  }
  
  .expo-slide .slide-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	color: #fff;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	padding: 20px;
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
  }
  
  .expo-slide.swiper-slide-active .slide-inner {
	transform: scale(1.1);
  }
  
  .expo-slide.swiper-slide-active img {
	transform: scale(1);
  }
  
  .expo-slide.swiper-slide-active .slide-overlay {
	opacity: 1;
	transform: translateY(0);
  }
  
  .expo-slide.swiper-slide-prev,
  .expo-slide.swiper-slide-next {
	opacity: 0.6;
	transform: scale(0.85);
	filter: blur(1px);
  }
  .marquee-wrapper {
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
	position: relative;
  }
  
  .marquee {
	display: inline-flex;
	white-space: nowrap;
	will-change: transform;
	transition: transform 0s linear;
  }

/* Tüm hover-show class’ları varsayılan olarak görünür */
.hover-show-sm,
.hover-show-md,
.hover-show-lg,
.hover-show-xl,
.hover-show-xxl {
  display: block;
}

/* lg ve üzeri için hover-show-lg: sadece hover olunca görünür */
@media (min-width: 992px) {
  .hover-parent .hover-show-lg {
    display: none;
  }

  .hover-parent:hover .hover-show-lg {
    display: block !important;
  }
}

/* xl ve üzeri için hover-show-xl */
@media (min-width: 1200px) {
  .hover-parent .hover-show-xl {
    display: none;
  }

  .hover-parent:hover .hover-show-xl {
    display: block !important;
  }
}

/* xxl ve üzeri için hover-show-xxl */
@media (min-width: 1400px) {
  .hover-parent .hover-show-xxl {
    display: none;
  }

  .hover-parent:hover .hover-show-xxl {
    display: block !important;
  }
}

/*sheet*/
/* overlay */
.sheet-overlay{
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,0,.45); /* dark mode için Bootstrap değişkeni kullanabiliriz */
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease;
	z-index: 2;
  }
  
  /* bottom sheet */
  .bottom-sheet{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--bs-body-bg); /* dark mode uyumlu */
	transform: translateY(100%);
	transition: transform .32s cubic-bezier(.2,.8,.2,1);
	z-index: 3;
	padding: 16px;
	overflow: auto;
  }
  
  /* aktif durum */
  .bottom-sheet-container.active .bottom-sheet{
	transform: translateY(0);
  }
  .sheet-overlay.active{
	opacity: 1;
	pointer-events: all;
  }
  
  /* header ve body */
  .sheet-header { display:flex; align-items:center; justify-content:space-between; gap:.5rem; }
  .sheet-body { padding-top:.5rem; }
  
  /* responsive opsiyonel */
  @media(min-width:900px){
	.bottom-sheet{ width: 100%; left:auto; }
  }
  /*sheet*/

  /*responsive-table*/
  .responsive-table {
	width: 100%;
	border-collapse: collapse;
	border-collapse: separate; /* Önemli, spacing çalışması için */
	border-spacing: 10px 5px;  /* yatay 10px, dikey 5px */
	margin-bottom: 30px;
	line-height: 1.4;
  }
  .responsive-table tr {
	  position: relative;
  }
  .responsive-table td {
	vertical-align: top; /* Hücre içi üst hizalı */
  }
  
  
  .responsive-table .img-box{
	  width: 80px;
	  max-height: 110px;
	  margin-right: 24px;
	  border-radius: 2.5px;
	  overflow: hidden;
  }
  
  .responsive-table th,
  .responsive-table .sub-item {
	padding: 12px 15px;
	text-align: center;
  }
  
  .responsive-table th:first-child,
  .responsive-table .sub-item:first-child {
	text-align: left;
  }
  
  .responsive-table th:last-child,
  .responsive-table .sub-item:last-child {
	text-align: right;
  }
  
  /* Mobil görünüm */
  @media (max-width: 768px) {
  .responsive-table .title-item{
	  display: grid;
  }
  .responsive-table td:not(:last-child) {
		  border-bottom: 1px dashed;
  }
  .responsive-table .img-box{
	  position: absolute;
		  top: 0;
		  left: 0;
		  overflow: hidden;
		  margin-bottom: 0;
		  padding-bottom: 0;
		  border-bottom: none;
  }
	.responsive-table thead {
	  display: none;
	}
  
	.responsive-table tr {
	  padding-inline-start:100px;
	  display: block;
	  margin-bottom: 15px;
	}
  
	.responsive-table .sub-item {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding: 10px;
	  text-align: right;
	  position: relative;
	  border: none;
	  border-bottom: 1px solid #ddd;
	  flex-direction: row-reverse;
	}
  
	.responsive-table .sub-item:after {
	  content: attr(cart-data-title);
	  position: absolute;
	  left: 10px;
	  top: 50%;
	  transform: translateY(-50%);
	  font-weight: 600;
	  text-align: left;
	  color: #555;
	}
  }/*responsive-table*/
  .selectContainerBorder {
  border: 1px dotted;
  position: relative;
}
.selectContainerBorder * {
    pointer-events: none !important;
}
.selectContainerBorder {
    pointer-events: auto !important;
}
.selectContainerBorder.active{
	background: rgba(0,0,0,0.2);  /* Arka planı bozmadan %10 koyulaştırma */
}
.selectContainerBorder:hover::after {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.1);  /* Arka planı bozmadan %10 koyulaştırma */
  z-index:100000;  pointer-events: none;   /* 🔥 TIKLAMAYI ENGELLEMESİN */

}
.dots {
    width: 100%;
    position: relative;
    margin: 0 20px;
}

.dots:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-bottom: 1px dashed rgba(145, 118, 90, 0.3);
}
.cursor-pointer {
    cursor: pointer; /* seçilebilir */
}

.cursor-not-allowed {
    cursor: not-allowed; /* seçilemez */
}
.bg-cover {
    background-size: cover;        /* alanı tamamen kaplar */
    background-position: center;   /* ortalar */
    background-repeat: no-repeat;  /* tekrar etmez */
}
.border-item {
    border-bottom: 1px solid rgba(255,255,255,.5);
}

/* 2 kolon – sağ kolon */
.border-item:nth-child(2n) {
    border-left: 1px solid rgba(255,255,255,.5);
}
@media (min-width: 768px) {
    .border-item {
        border-bottom: 1px solid rgba(255,255,255,.5);
        border-left: 1px solid rgba(255,255,255,.5);
    }

    .border-item:first-child {
        border-left: none;
    }
}

.swipe-wrapper {
	position: relative;
	overflow: hidden;
}

.swipe-card {
	position: relative;
	z-index: 2;
	background: #fff;
	transition: transform .25s ease;
}

.swipe-action {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	z-index: 1;
}

.swipe-action.left {
	left: 0;
}

.swipe-action.right {
	right: 0;
}
.logo-container {
	width: 180px;          /* tek yerden kontrol */
	height: 60px;          /* header için ideal */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.logo-container img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.markdown-content p {
	margin: 0!important;
  }
  /* Base: default auto */
[class^="vh-"] {
	height: auto;
  }
  
  /* SM ve altı */
  @media (max-width: 575.98px) {
	.vh-sm-100 {
	  height: 100vh;
	}
  }
  
  /* MD ve altı */
  @media (max-width: 767.98px) {
	.vh-md-100 {
	  height: 100vh;
	}
  }
  
  /* LG ve altı */
  @media (max-width: 991.98px) {
	.vh-lg-100 {
	  height: 100vh;
	}
  }
  
  /* XL ve altı */
  @media (max-width: 1199.98px) {
	.vh-xl-100 {
	  height: 100vh;
	}
  }
  
  /* XXL ve altı */
  @media (max-width: 1399.98px) {
	.vh-xxl-100 {
	  height: 100vh;
	}
  }