.animated-link {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
  background: linear-gradient(
    90deg, 
    rgba(184, 134, 11, 0.9) 0%,   
    rgba(219, 112, 147, 0.85) 50%,
    rgba(218, 165, 32, 0.9) 100%  
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s infinite;
}
.animated-link span {
  color: #d4af37 !important; /* gold */
}
@keyframes shimmer {
  0% { background-position: -100% 0; }
  50% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
header.beyazclass  .animated-link {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
  background: linear-gradient(
    90deg, 
    rgba(255, 215, 160, 0.8) 0%,    /* soft altın */
    rgba(255, 182, 193, 0.85) 50%, /* rose gold efekti */
    rgba(255, 228, 196, 0.75) 100% /* şampanya */
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s infinite;
}

header.beyazclass:hover  .animated-link {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
  background: linear-gradient(
    90deg, 
    rgba(184, 134, 11, 0.9) 0%,   
    rgba(219, 112, 147, 0.85) 50%,
    rgba(218, 165, 32, 0.9) 100%  
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s infinite;

}


.ozel-row.spacer-v1{
    display: flex!important;
    flex-wrap: wrap!important;

}
.ozel-row.spacer-v1 img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.magaza-col, .dikey-mobil.mobil-saat{
    width: 100%;
}

.menu-tab {
    width: 100%;
    padding: 20px 0;
  }
  
  .menu-tab-list {
    display:  flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #e5e5e5;
  }
  
  .menu-tab-list-item {
    margin: 0 20px;
    padding: 8px 0;
    position: relative;
  }
  
  .menu-tab-list-item a {
    text-decoration: none;
    font-size: 14px!important;
    text-transform: uppercase;
    letter-spacing: 1px!important;
    padding: 10px 0;
    padding-bottom: 0px!important;
  }
  
  .menu-tab-list-item.active a {
    color: #000;
  }
  
  .menu-tab-list-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: left;
    animation: slideRight 0.3s ease forwards;
  }
  .link-hover-effect{
    position: relative;
  }
  .link-hover-effect:hover::after{
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: left;
    animation: slideRight 0.3s ease forwards;
  }
  
  @keyframes slideRight {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(1);
    }
  }
  .menu-tab-content {
    display: none;
    padding: 30px;
  }
  
  .menu-tab-content.active {
    display: block;
  }
  
  .menu-tab-list-item:hover a {
    color: #000;
  }
  .menu-container{
    max-width: 960px;
    margin: auto;
  }
  .tab-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
  }
  .tab-list-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .tab-list-item a {
    width: auto;
    display: inline-block;
    margin: auto;
  }
  .tab-list-item a  span{
    color: #333;
      transition: all 0.3s ease;
      text-decoration: dotted;
      font-weight: 300;
      text-transform: uppercase;
      font-size: 14px;
      margin-top: 10px;
      display: block;
      font-family: 'Jason-text';
      letter-spacing: 0.5px;
  
  }
  
  
  .relative{
    position: relative;
  }
  .view-all {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .view-all a{
    color: #333;
      transition: all 0.3s ease;
      font-weight: 300;
      text-transform: uppercase;
      font-size: 14px;
      margin-top: 10px;
      display: block;
      font-family: 'Jason-text';
      letter-spacing: 0.5px;
      text-decoration: underline!important;
      text-underline-offset: 2px;
      
  }
  
  .slider-container {
      height: 1000px;
      position: relative;
      width: 100%;
      margin: 0 auto;
      overflow: hidden;
  }
  @media screen and (max-width: 768px) {
      .slider-container {
          height: 390px;
      }
      .magaza-section{
        margin-top: 30px!important;
        margin-bottom: 30px!important;
      }
  }

  .before-image,
  .after-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .after-image {
      clip: rect(0, 400px, 500px, 0);
  }

  .slider-handle {
      position: absolute;
      top: 0;
      left: 50%;
      width: 1px;
      height: 100%;
      background: #fff;
      cursor: ew-resize;
      z-index: 10;
      transform: translateX(-50%);
  }

  .slider-handle::before {
      content: '';
      position: absolute;
      background-image: url(https://www.robertobravo.com/img/before-after-icon.png);
      background-size: cover;
      background-repeat: no-repeat;
      top: 50%;
      left: 50%;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      transform: translate(-50%, -50%);

  }

  .slider-handle::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
  }

  .label {
      position: absolute;
      bottom: 20px;
      padding: 8px 16px;
      background: rgba(0, 0, 0, 0.7);
      color: white;
      border-radius: 20px;
      font-size: 14px;
      font-weight: bold;
      z-index: 5;
  }

  .before-label {
      left: 20px;
  }

  .after-label {
      right: 20px;
  }

  .instructions {
      text-align: center;
      margin-bottom: 20px;
      color: #666;
      font-size: 16px;
  }
  @media (max-width: 600px) {

      .label {
          font-size: 12px;
          padding: 6px 12px;
          bottom: 10px;
      }
      
      .before-label {
          left: 10px;
      }
      
      .after-label {
          right: 10px;
      }
  }
  .magaza-section{
    position: relative;

  }
  @media (max-width: 768px) {
    .slider-container img{ 
      aspect-ratio: 1/1;
    }
  }
  /* .slider-container{
    margin: auto;
    aspect-ratio: 1/1;
  } */

  @media (min-width:778px) {
    .slider-container{
      max-width: 1220px;
      height: 630px;
    }
  }
  .magaza-section .ustalan1{
    position: absolute;
    top: 30px;
    left: 20px;
    width: 100%;
    text-align: center;
    width: 100%;
    z-index: 1;
  }
  .magaza-section .altalan1{
    position: absolute;
    bottom: 20px;
    left: 20px;
    margin: auto;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;

  }
  .filter-container label{
    font-size: 14px!important;
    font-weight: 300!important;
  }


  .footer {
    background-color: #f8f8f8;
    padding: 60px 0 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    margin: 0 auto;
    padding: 0 5rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 3rem;
  }
  .footer-container {
    padding: 0px;
  }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 14px;
    font-weight:300;
    color: #1c1c1c!important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    margin-top: 0px;
}
@media screen and (min-width: 768px) {
  .footer-section h3{
    margin-bottom: 20px!important;
  }
 
}
.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #1c1c1ca6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #333;
}

.footer-section p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
}



.copyright {
    color: #888;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 8px;
    align-items: center;
}

.payment-icon {
    width: 40px;
    height: 25px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: white;
    text-align: center;
}

.amex { background-color: #006fcf; }
.diners { background-color: #0079be; }
.discover { background-color: #ff6000; }
.maestro { background-color: #eb001b; }
.mastercard { background-color: #eb001b; }
.shopify { background-color: #5e72e4; }
.unionpay { background-color: #e21836; }
.visa { background-color: #1a1f71; }

.whatsapp-icon {
    width: 35px;
    height: 35px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    /* margin-left: 10px; */
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }
    .payment-methods img{
        max-width: 100%!important;
    }
  
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}


.grid-container img{
  padding: 20px;
}
.add-to-cart, .notify-product{
  margin: auto;
font-size: 14px;
font-weight: 500;
background-color: #a8a8a8 !important;
color: #fff;
width: 100%;
padding: 12px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
font-family: 'MaisonNeue', sans-serif;
box-shadow: 0 2px 4px rgba(0,0,0,0.1); max-width: 300px; margin-top: 10px;
}
@media (max-width: 768px) {
  .add-to-cart{
    font-size: 12px;
    padding: 8px 10px;
    width: 90%;
    margin: auto;
    margin-top: 10px;
  }
}

.product-item {
  position: relative;
  transition: all 0.3s ease;
}
.yuzuk-olcu-item{
  cursor: pointer;
}
.yuzuk-olcu-item.active{
  background-color: #000;
  color: #fff;
}

.add-to-cart-btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #ffffffb3;
  color: #000;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  justify-content: center;
}

.add-to-cart-btn svg {
  width: 20px;
  height: 20px;
}

.product-item:hover .add-to-cart-btn {
  opacity: 1;
}
@media (min-width: 768px) {
  .product-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
}
@media (max-width: 768px) {
  .add-to-cart-btn  {
   display: none;
  }
}
.product-item .text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.yuzuk-olcu-container{
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: #fff;
  padding: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 5px !important;
  z-index: 999;
  opacity: 0;
  transition: transform 0.3s ease;
  pointer-events: none;
  transform: translateY(100%);

  flex-wrap: wrap;        
}
.yuzuk-olcu-container div{
  width: 25px;
  height: 25px;
  background-color: #fff;
  border: 1px solid #000;
  display: flex;
  font-size: 12px;
  align-items: center;
  justify-content: center;
}
.yuzuk-olcu-container.active{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


.drawer-footer {
  margin-top: auto;
  /* padding: 15px; */
  border-top: 1px solid #e0e0e0;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  font-size: 14px;
 background-color:#f3f3f3;
}

.order-summary-row:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.order-total {
  font-weight: bold;
}
.checkout-btn-container{
padding: 15px;

}
.checkout-btn {
  width: 100%;
  padding: 15px;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}
.drawer {
  height: 100vh;
  max-height: 100vh;
  background-color: white;
  display: flex;
  flex-direction: column;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}
.cart-item {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}

.cart-item:hover {
  background-color: #f9f9f9;
}

.item-image {

  margin-right: 20px;
}
.item-image img{
width: 100px;
object-fit: cover;

height: 100px;
}

.item-details {
  flex-grow: 1;
}

.item-title {
font-weight: 600;
font-size: 16px;
letter-spacing: 0.5px;
margin-bottom: 5px;
}
.item-detail{
font-size: 13px;
color: #757575;
font-weight: 400;
margin-bottom: 8px;
}
.drawer-title{
font-weight: bold;
font-size: 15px;
letter-spacing: 1px;
font-family: 'MaisonNeue';
}

.item-price {
  color: #222;
  font-size: 15px;
  font-weight: 500;
}

.remove-item {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-item:hover {
  background-color: #f0f0f0;
}

.remove-item svg {
  transition: all 0.2s ease;
}

.remove-item:hover svg {
  fill: #ff4444;
}

.collections{
  padding: 30px 22px;

}

.collections-title {
  text-align: center;
  font-weight: 300; /* Daha ince */
  letter-spacing: 3px;
  margin-bottom: 30px;
  font-size: 30px;
  width: 100%;
  font-family: 'Jason-text';
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

.collections{
  padding: 50px 45px;
}

}

.collection-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eee;
}

.collection-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.collection-box:hover img {
  transform: scale(1.1);
}

.collection-box .title {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 400;
  text-shadow: 0 0 5px rgba(0,0,0,0.4);
  z-index: 2;
}

.collection-box::before{
  content: "";
  background: rgb(0 0 0 / 50%);
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}


	.price-desktop{
		display: flex;
		align-items: center;
	}
		.product-info-text{
	display: flex;color:#757575;font-size: 13px!important;align-items: center;gap:2px;margin-bottom: 10px;margin-top: 15px;    font-weight: normal;
		}
		.product-text span {
			font-size: 13px!important;
			font-family: 'MaisonNeue' !important;
			margin-bottom: 10px;
			color: #757575;
			letter-spacing: normal;
		}
		.table td, .table th , .table * {
			font-size: 13px!important;
			font-family: 'MaisonNeue' !important;
			margin-bottom: 10px;
			font-weight: normal!important;
			color: #757575!important;
			letter-spacing: normal;
		}
		.desktop-info .info-part-1{
			width: 100%;
		}
		.desktop-info .info-part-1 h1{
			margin-bottom: 15px;
			white-space: normal;
			line-height: 1.2;
			letter-spacing: 0.2px;
		}
		@media (max-width: 767px) {
		.product-text .buttons{
			flex-direction: column;
			margin-top: 20px;
		}
		.info-part-1{
			margin-top: 20px;
		}
		}
		.buttons-container{
			display: flex;
			gap: 10px;
		}
		.buttons-container button{
			white-space: nowrap;
    text-transform: uppercase;
	padding-right: 20px;
	padding-left: 20px;

		}
		.buttons-container button:hover {
    background-color: #555555!important; /* Üzerine gelindiğinde arka plan rengi */
}
		@media (max-width: 767px) {
			.buttons-container {
				margin-top: 15px;
			}
		}

	 /* @media (min-width: 767px) {
		.product-info-container{
			position: fixed;
			right: 0;
			bottom: 0;
			width: 50%;
			height:auto;
			background-color: #fff;
			display: flex;
			width: 100%;
			z-index: 99;
			border-top: 1px solid #dedede8f;
		}
		.product-info-container .open-slideover.iletisim {
	        display: none !important;
		}
		.input-container{
			display: flex;
			justify-content: space-between;
			align-items: center;
			gap: 10px;
		}
		.product-info-container  select{
			margin-bottom: 0;
			margin-top: 0 !important;
		}
		.product-text{
			width: 100%!important;
			max-width: 100%!important;
			display: flex;
        justify-content: space-between;
		padding: 13px;
		}
		.product-text .price{       
			 width: 100% !important;
        display: flex;
        justify-content: flex-end;
        margin-bottom: 0;
		margin-top: 0 !important;
		align-items: baseline;
		}
		.product-info-container form{
			width: 100%;
		}
		.product-info-text{
			margin-top: 0;
			margin-bottom: 0;
		}
		.cargoo{
			display: none!important;
		}
		.all-info{
			display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        white-space: nowrap;
		}
		.buttons{
			width: 100%;
			max-width: 200px;
			min-width: 200px;
		}
		.product-text h1{
			margin-bottom: 0;
		}
		.price-desktop{
			border-left: 1px solid #dedede8f;
			padding-left: 10px;
			font-size: 15px;
		}
		.product-text span{
			font-size: 16px;
		}
	}  */
	.d-none{
		display:none!important;
	}
.font-ayar-1 strong{
	font-size: 16px!important;
}
.font-ayar-1 p{
	font-size: 16px!important;
}
	.slider3 .owl-nav{
		position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0px;

	}
	.slider3 .owl-prev{
		position: absolute;
    top: 0;
    left: 10px;
font-size: 15px;
	}
	.slider3 .owl-next{
		position: absolute;
    top: 0;
    right: 10px;
    font-size: 15px;

	}
	.slider3 .owl-dots{
        width: 100%;
        display: flex;
        justify-content: center;
        position: absolute;
        bottom: 8px;
    }
   .slider3 .owl-dot{
    margin:0 5px;
        background-color: #333;
       height: 10px;
    width: 10px;
    border-radius: 50%;
    }
    .slider3 .owl-dot.active{
        background-color: #929492;
    }
	.product-text button{
		background-color: #333333!important;
	}
	.taksitSecenekleri{border:1px solid #ccc;float:left;width:100%}.taksitSecenekleri ul{float:left;width:100%}.taksitSecenekleri li{border-top:1px solid #ccc;float:left;width:100%}.taksitSecenekleri li:nth-child(even){background:#f9f9f9}.taksitSecenekleri li:first-child{border:0;display:table;width:100%}.taksitSecenekleri li:first-child .imgOrtala{height:50px;vertical-align:middle;text-align:center;display:table-cell}.taksitSecenekleri li:first-child .imgOrtala img{margin:0 auto}.taksitSecenekleri span{font-size:11px;width:33.33%;text-align:center;float:left;display:block;line-height:2.5}
	@media (max-width: 767px) {
		.ring{float: initial!important;}
		.product-text .ring select{
			height: 40px!important;
			width: 140px!important;
		}
		
	}
.bakimayar{

	font-size: 16px!important;
}
.table table{
margin-top: 15px;
margin-bottom: 15px;
}
footer{
	    border-top: 1px solid #c8cacc;
}
.begenEkle{
	display: none;
}


	@media (min-width:1440px) {
		.bigimg{

		    min-height: 482px;
		}

		}

	@media (min-width: 767px) {

		.font-ayar-1{
	max-width: 33.3%;
}

		.bakimayar{
			margin-left: 33.3%;
			max-width: 33.3%;
			font-size: 16px!important;
		}


	.owl-carousel.visible-xs{
		display: none!important;
	}

}
	@media (max-width: 767px) {
.tab-alpha ul li {width: 50%!important;}
	}



.product-text h1{
text-transform: capitalize!important;font-weight: 500!important;	font-family: "Jason"!important;
}
	@media (min-width: 767px) {

		/* .ayarcek1{
			margin-top: -65px!important
		} */

.product-img img:not(.bigimg) {
 border:1px solid #dedede;
}
}


.notify-product-container{
  width: 100%;
height: 100%;
background: white;
padding: 23px 40px;
min-width: 300px;
}
.notify-product-body{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;;
  align-items: center;
}
.notify-product-button{
  width: 100%;
  height: 100%;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
}   


.category-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f5f5f5;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .category-section {
    margin-top: -7px;
  }
  .spacer-v1.magaza-section{
    margin-top: -7px!important;
  } 
}
.category-section h2 {
  font-size:24px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  margin-top: 0;
  text-transform: uppercase;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 0 auto;
}
.category-section .category-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.category-section .category-item h3 {
  font-size: 12px;
  letter-spacing: 1px;
  margin: 0 0 5px;
}
.category-section .category-item p {
  margin: 3px 0;
  font-size: 12px;
  color: #777;
}
.category-section .view-all-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 25px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size:13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.category-section .view-all-btn:hover{
  background-color: #000;
  opacity: 0.8;
  color: #fff;
}
.category-section .category-item-image-box{
  aspect-ratio: 683/455;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
}
.category-item-image-box img{
  width: 70%!important;
  height: 70%!important;
  object-fit: contain!important;
  position: absolute;
}
.category-item-text{
  margin-top: 20px;
  margin-bottom: 10px;
}
.category-item-title, .category-item-price{
   font-size: 13px;
   text-transform: uppercase;
   letter-spacing: 1px;
}
.category-item-price{
  opacity: 0.9;
  margin-top: 8px;
  display: block;
}
.category-section .stock-info{
  margin-top: 15px;
}

.category-section .stock-info-text{
  color: #757575;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
.icerik-con img{
  width: 100%!important;
  height: auto!important;
}
/* .menu-list *,.kategorilist li , .ofkelist a {
  text-align: center!important;
} */
/* .menu-list *{
  justify-content: center!important;
  gap: 10px;
} */
/* .back-button {
  justify-content: center!important;
  width: 100%!important;
} */
 .menu-list{
  justify-content: start!important;
  gap:120px!important;
 }

}

@media (max-width: 992px) {
  .products-carousel img {
      max-width: 200px;
      margin: 0 auto;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  /* Kapsayıcı artık sadece pulse animasyonu için değil, çıkacak ekstra border efektini göstermek için before kullanacak */
  transition: all 0.3s ease;
}

.whatsapp-float a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;                /* ikon ile yazı arası boşluk */
  padding: 5px 15px;       /* kapsayıcı buton boyutu */
  background-color: #25d366;
  color: #fff;
  border-radius: 999px;     /* tam oval */
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  /* box-shadow: 2px 2px 3px #999; */
  white-space: nowrap;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.whatsapp-float:hover a {
  transform: scale(1.03);
  /* box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); */
  color: #fff;
}

/* Pulse efektini dışarıdan border ile göstermek için before pseudo-element kullanalım */
.whatsapp-float::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border-radius: 999px;
  /* background: rgba(37, 211, 102, 0.14); */
  z-index: 1;
  pointer-events: none;
  /* animation: pulse-border 2s infinite; */
}

/* icon ve text */
.whatsapp-float .whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-text {
  line-height: 0.3;
  font-size: 13px !important;
  padding-top:3px !important;
  padding-right:5px !important;
}

/* @keyframes pulse-border {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  }
  60% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.22);
    box-shadow: 0 0 0 16px rgba(37,211,102,0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.4);
    box-shadow: 0 0 0 28px rgba(37,211,102,0);
  }
} */

@media (max-width: 768px) {
  .whatsapp-float {
      /* width: 50px; */
      height: 50px;
      bottom: 20px;
      right: 20px;
  }
  
  .whatsapp-float svg {
      width: 17px;
      height: 17px;
  }
  
.whatsapp-float a {
  padding: 2.5px 10px!important;
}
}

.link-list .column2{
  display:block!important;
  column-count: 2!important;

}
.link-list .column2 a{
  display:block!important;
} 


@media (min-width: 992px) {
  .cart-icon-wrapper { position: relative; display: inline-block; }
  .cart-hover-preview {
    position: absolute; top: 90%; right: 0; margin-top: 8px;
    min-width: 300px; max-width: 320px; background: #fff; border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    z-index: 9999; pointer-events: none;
  }
  .cart-icon-wrapper:hover .cart-hover-preview {
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
  }
  .cart-hover-preview-inner { padding: 16px; max-height: 70vh; overflow-y: auto; }
  .cart-hover-body .cart-hover-empty { padding: 24px 16px; font-size: 15px; color: #757575; }
  .cart-hover-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid #eee; }
  .cart-hover-item:last-child { border-bottom: none; }
  .cart-hover-item .cart-hover-image { flex-shrink: 0; width: 72px; height: 72px; border-radius: 6px; overflow: hidden; background: #f5f5f5; }
  .cart-hover-item .cart-hover-image img { width: 100%; height: 100%; object-fit: cover; }
  .cart-hover-item .cart-hover-info { flex: 1; min-width: 0; }
  .cart-hover-item .cart-hover-title { font-weight: 600; font-size: 13px; line-height: 1.35; color: #000; margin-bottom: 4px; }
  .cart-hover-item .cart-hover-code { font-size: 12px; color: #333; margin-bottom: 6px; }
  .cart-hover-item .cart-hover-price { font-weight: 600; font-size: 14px; color: #000; }
}
@media (max-width: 991px) { .cart-hover-preview { display: none !important; } 
  .search-submenu{
    overflow-y: auto!important;
    max-height: calc(100vh - 64px)!important;
    height: calc(100vh - 64px)!important;
  }
}