<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 17:1 Unexpected "{"

**/

/* .main-product__block-variant_picker:has(.m-product-option--dropdown variant-select[data-selected-value='']) ~ .main-product__block-buy_buttons button.m-add-to-cart {
  display: inline-block !important;
}

.main-product__block-variant_picker:has(.m-product-option--dropdown variant-select[data-selected-value='']) ~ .main-product__block-buy_buttons button.foxkit-preorder-submit,
.main-product__block-variant_picker:has(.m-product-option--dropdown variant-select[data-selected-value='']) ~ .main-product__block-buy_buttons .foxkit-preorder-note {
  display: none !important;
} */

.m-product-price--inline .price * {
 {
  font-weight: 600 !important;
  font-size: 16px !important;
  color: #1e1e1e !important;
}


.card-container {
  display: flex;
  flex-wrap: nowrap;      /* Prevent wrapping */
  gap: 14px;
  padding: 5px 5px;
  overflow-x: auto;       /* Scroll if needed */
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
}

/* Each card should have fixed width so all fit horizontally */
.card-wrapper {
  flex: 0 0 350px;
  scroll-snap-align: start;
  border-radius: 5px;
  padding: 5px;
  box-sizing: border-box;  
}

/* Hide scrollbar in Webkit browsers */
.card-container::-webkit-scrollbar {
  display: none;
}

/* Icon sizing */

.cart-card svg,
.wishlist-card svg,
.account-card svg,
.recent-order-card svg {
  width: 48px;
  height: 48px;
  /* Ä°steÄŸe baÄŸlÄ± diÄŸer SVG stil Ã¶zellikleri */
}

/* Optional: full desktop view without scroll if enough space */
@media (min-width: 1024px) {
  .card-container {
    justify-content: center;
    overflow-x: hidden;
  }

  .card-wrapper {
    flex: 1 1 200px;
    max-width: 280px;
  }
}

/* --------------------------------------------------
   Card-specific styles (no change for desktop)
   -------------------------------------------------- */
.cart-card,
.wishlist-card,
.account-card,
.recent-order-card {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: fit-content;
  font-family: Arial, sans-serif;
}

.cart-icon,
.wishlist-icon,
.account-icon,
.order-icon {
  margin-right: 10px;
}

.cart-icon-svg,
.wishlist-icon-svg,
.user-icon,
.order-icon-svg {
  width: 40px;
  height: 40px;
  stroke: #0a0744;
}

/* Text inside each card */
.cart-text .title,
.wishlist-text .title,
.account-text .greeting,
.order-text .title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
}

.cart-text .cart-link,
.wishlist-text .wishlist-link,
.order-text .track-link,
.account-text .signin-link {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #333;
}

.cart-text .cart-link:hover,
.wishlist-text .wishlist-link:hover,
.order-text .track-link:hover,
.account-text .signin-link:hover {
  text-decoration: underline;
}

.wishlist-text .wishlist-link.disabled,
.order-text .track-link.disabled {
  color: #aaa;
  cursor: not-allowed;
  text-decoration: none;
}

/* --------------------------------------------------
   MOBILE TWEAKS
   -------------------------------------------------- */
@media (max-width: 767px) {
  /* tighten up the container */
  .card-container {
    gap: 1px;       /* less space between cards */
    padding: 4px;   /* smaller padding around */
    
  }

  /* narrow each card so more of them peek in view */
  .card-wrapper {
    flex: 0 0 260px;  /* narrower card width */
    padding: 4px;     /* smaller internal padding */
  }

  /* reduce card inner padding too */
  .cart-card,
  .wishlist-card,
  .account-card,
  .recent-order-card {
    padding: 0.75rem 1rem;
  }

  /* smaller icon margins &amp; icons */
  .cart-icon,
  .wishlist-icon,
  .account-icon,
  .order-icon {
    margin-right: 8px;
  }

  svg {
    width: 36px;
    height: 36px;
  }
}



.main-header {
    margin-bottom: 20px;
    padding: 30px 20px; /* Ãœst ve altta daha fazla, yanlarda normal boÅŸluk */
    text-align: center; /* Ä°Ã§eriÄŸi ortala */
    border-bottom: 1px solid #eee; /* AltÄ±na ince bir Ã§izgi */
    border-radius: 5px;
}

.main-header h1 {
    font-size: 2.5em; /* Daha bÃ¼yÃ¼k baÅŸlÄ±k */
    color: #333; /* Daha koyu baÅŸlÄ±k rengi */
    margin-bottom: 10px; /* BaÅŸlÄ±k ve altÄ±ndaki paragraf arasÄ±nda boÅŸluk */
    letter-spacing: 0.5px; /* Harfler arasÄ±nda hafif boÅŸluk */
}

.main-headerv p {
    font-size: 1.1em;
    color: #777;
}

/* Main Content Styling */
.main-content {
    max-width: 960px; /* Adjust as needed for your layout */
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 1.8em; /* Reduced size */
    color: #444;
    margin-bottom: 15px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 8px;
}

.subsection-title {
    font-size: 1.4em; /* Further reduced size if you use h3 */
    color: #555;
    margin-bottom: 10px;
}

.section-paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.section-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.list-item {
    font-size: 1.1em;
    margin-bottom: 8px;
}

.section-link {
    color: #007bff; /* Or your preferred link color */
    text-decoration: none;
}

.section-link:hover {
    text-decoration: underline;
}


    /* Container */
    .options-section {
      max-width: 1280px;
      margin: 2rem auto;
      padding: 0 1rem;
    }
    .options-section h2 {
      text-align: center;
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    /* Grid Layout */
    .options-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }

    /* Card */
    .option-card {
      background: #fff;
      border: 2px solid #4A4E69;
      border-radius: 8px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .2s, box-shadow .2s;
    }
    .option-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 12px rgba(0,0,0,.1);
    }

    /* Header */
    .option-card header h3 {
      font-size: 1.25rem;
      color: #333333;
      margin-bottom: 1rem;
    }

    /* Button */
    .option-card .cta {
      display: inline-block;
      text-align: center;
      background: #202563;
      color: #fff;
      padding: .75rem 1.5rem;
      border: none;
      border-radius: 999px;
      font-size: 1rem;
      text-decoration: none;
      margin-bottom: 1rem;
      cursor: pointer;
    }
    .option-card .cta:hover {
      background: #264653;
    }

    /* Details list */
    .option-card dl {
      margin-bottom: 1rem;
    }
    .option-card dt {
      font-weight: bold;
      margin-top: .5rem;
    }
    .option-card dd {
      margin-left: 0;
      margin-bottom: .5rem;
    }

    /* Providers */
    .providers {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      align-items: center;
      margin-top: 1rem;
    }
    .providers img {
      height: 32px;
      object-fit: contain;
    }

    /* Responsive tweaks */
    @media (max-width: 480px) {
      .option-card { padding: 1rem; }
      .option-card header h3 { font-size: 1.1rem; }
      .option-card .cta { font-size: .9rem; padding: .6rem 1.2rem; }
    }

/* Main Banner Container */
.banner-container {
  display: flex;
  flex-wrap: wrap; /* allows responsiveness */
  flex-direction: row;
  max-width: 1250px;
  margin: 10px auto;
  background-color: #FDFCFB;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Left Column: Promotional Message */
.banner-text {
  flex: 1 1 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-text header h1 {
  font-size: 2.3rem;
  color: #444;
  font-weight:600;
  margin-bottom: 20px;
}
.banner-text p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

/* Right Column: Complementary Financing Details */
.banner-promo {
  flex: 1 1 50%;
  position: relative;
  background-image: url('/cdn/shop/files/hero-image-sqaure.webp?v=1745222884');  /* Replace with your background image */  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;  /* Align promo-box to the right */
  padding: 40px;
}

/* Overlay within the Financing Section */
.promo-box {
 /*  background: rgba(0, 0, 0, 0.6); Semi-transparent overlay for readability */
      background-color: #f9eddf;
      border: 2px solid #f0cfa3;
      border-radius: 8px;
      padding: 1.5rem;
      width: 100%;
      max-width: 355px;
      text-align: center;

  /* The promo-box will have a natural gap on its left because its container is flex-end aligned */
}

/* Navigation Links inside the Promo Section */
nav a.button {
  display: inline-block;
  background-color: #202563;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
nav a.button:hover {
  background-color: #264653;
}
nav a:not(.button) {
  display: block;
  margin-top: 10px;
  color: #202563;
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .banner-container {
    flex-direction: column;
  }
  .banner-text,
  .banner-promo {
    flex: 1 1 100%;
    padding: 20px;
  }
  .banner-text header h1 {
    font-size: 2rem;
  }
  .promo-box header h2 {
    font-size: 1.1rem;
  }
}


/* styles.css */



    .trade-section {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 4rem 1rem;
      background-color: #f5f5f5;
    }
    
    .trade-container {
      max-width: 700px;
      text-align: center;
    }
    
    h1 {
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
      color: #333;
    }
    
    .subtext {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }
    
    .main-text {
      font-size: 1rem;
      margin-bottom: 1.5rem;
      color: #444;
    }
    
    
    .cta-button {
      display: inline-block;
      padding: 0.75rem 2rem;
      font-weight: bold;
      background-color: #333;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      margin-top: 1rem;
      transition: background-color 0.3s ease;
    }
    
    .cta-button:hover {
      background-color: #555;
    }
    
      .cta-button {
        padding: 0.75rem;
      }
    }
    
    /* styles.css */
    
    
    
    .consumer-section {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 4rem 1rem;
      border:1px solid;
    }
    
    .consumer-container {
      max-width: 700px; 
      background-color: #f5f5f5;      padding: 4rem 1rem;
      text-align: center;
    }
    
    h1 {
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
      color: #333;
    }
    
    .subtext {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }
    
    .main-text {
      font-size: 1rem;
      margin: 1.5rem 0;
      color: #444;
    }
    
    
    
    
    
    .search-form,
    .dealer-form {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    
    .search-form input,
    .dealer-form input {
      padding: 0.75rem 1rem;
      font-size: 1rem;
      border: 1px solid #ccc;
      width: 100%;
      max-width: 320px;
      border-radius: 4px;
    }
    
    .btn {
      padding: 0.75rem 2rem;
      font-weight: bold;
      background-color: #333;
      color: #fff;
      border: none;
      cursor: pointer;
      border-radius: 4px;
      transition: background-color 0.3s ease;
      width: 100%;
      max-width: 200px;
    }
    
    .btn:hover {
      background-color: #555;
    }
    
    @media (max-width: 600px) {
      h1 {
        font-size: 1.5rem;
      }
    
      .search-form,
      .dealer-form {
        flex-direction: column;
        align-items: center;
      }
    
      .btn {
        max-width: 100%;
      }
    }




    .subtext {
      font-size: 0.95rem;
      color: #777;
      margin-bottom: 2rem;
    }
    .m-tab-content__inner ol {
      list-style-type: decimal;
      margin-left: 20px;
      padding-left: 0;
    }
    .m-tab-content__inner ul {
      list-style-type: disc;
      margin-left: 20px;
      padding-left: 0;
    }
    .m-tab-content__inner ol li,
    .m-tab-content__inner ul li {
      margin-bottom: 5px;
      line-height: 1.4;
    }
    .m-tab-content__inner ol.lower-alpha {
      list-style-type: lower-alpha;
    }
    .m-tab-content__inner ul.circle {
      list-style-type: circle;
    }
    .m-tab-content__inner li.ozel-stil {
      font-weight: bold;
      color: navy;
    }

    .m-tab-content__inner h2,
    .m-tab-content__inner h3,
    .m-tab-content__inner h4,
    .m-tab-content__inner h5,
    .m-tab-content__inner h6 {
      /* BaÅŸlÄ±k etiketleri iÃ§in istediÄŸiniz stilleri buraya ekleyin */
      margin-top: 1em; /* Ãœst boÅŸluk */
      margin-bottom: 0.5em; /* Alt boÅŸluk */
      line-height: 1.2; /* SatÄ±r yÃ¼ksekliÄŸi */
      color: #333; /* Metin rengi */
    }
    
    /* Ä°steÄŸe baÄŸlÄ± olarak her baÅŸlÄ±k seviyesi iÃ§in farklÄ± stiller tanÄ±mlayabilirsiniz */
    .m-tab-content__inner h2 {
      font-size: 2em;
      font-weight: bold;
    }
    
    .m-tab-content__inner h3 {
      font-size: 1.5em;
      font-weight: bold;
    }
    
    .m-tab-content__inner h4 {
      font-size: 1.2em;
      font-weight: bold;
    }
    
    .m-tab-content__inner h5 {
      font-size: 1em;
      font-weight: bold;
    }
    
    .m-tab-content__inner h6 {
      font-size: 0.8em;
      font-weight: bold;
      color: #777;
    }

    .rounded-full {
        border-radius: 9999px;
    }
    .text-center {
        display: inline-block;
        text-align: center;
        color: #146359;
        font-weight: bold;
        padding: 5px 10px;
        font-size: 12px;
    }
    .bg-green-500 {
        background-color: #e9f6f4; /* Tailwind's green-500 color */
    }

    @media screen and (min-width: 1024px) {
        .m-product-card__media:hover .m-product-card__main-image, .m-product-card__media:hover .m-placeholder-svg {
            transform: none !important;
        }
    }

  body .m-currency--saved {
      padding-inline: 5px;
  }
  .foxkit-stock-countdown {
    display: block !important
  }
  .m-topbar .social-media-links a.social-media-links--item:not([aria-label="Instagram"],[aria-label="Support"]) {
      display: none;
  }
  
  .m-faqs-link.m-active {color: rgb(var(--color-foreground));}
  
  .collection-header--small.items-start {
      padding: 10px 0 10px;
  }
  
  @media (max-width:1024px){
    .sf-custom .sf-custom__grid .sf-custom__block.sf-custom__block--image_with_text.lg\:w-1\/2, 
    .sf-custom .sf-custom__grid .sf-custom__block.sf-custom__block--newsletter.lg\:w-1\/2 {
      width: 50% !important;
  }
  }
  
  .collection-description {
    height: 150px; /* Adjust this value to control the height of the description before it is collapsed */
    overflow: hidden;
  }
  
  .collection-description.expanded {
    height: auto;
  }



  .tabs {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
    }

  .tabs li {
    margin-right: 10px;
    padding: 10px;
    background-color: #eee;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    font-weight: bold;
  }

  .tabs li.active {
    background-color: #fff;
    border-bottom: 2px solid #ccc;
  }

  .tab-content {
    display: none;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0 0 5px 5px;
  }

  .tab-content.active {
    display: block;
  }


  .prod__tag-new {
      background-color: black;
  }
  
  
  /* diamond color clarity box */
  .container-diamond {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid;
  }
  
  .container-diamond h4 {
    padding-bottom: 7px;
  }
  
  @media (max-width: 768px) {
      .color-heading {
          font-size: 16px; /* Mobilde daha kÃ¼Ã§Ã¼k boyut */
      }
  }
  
  @media (min-width: 769px) {
      .color-heading {
          font-size: 21px; /* MasaÃ¼stÃ¼ boyutu */
      }
  }

  .container-diamond a {
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .container-diamond a:hover {
    color: #ff9900; /* veya istediÄŸiniz baÅŸka bir renk */
    text-decoration: underline;
  }
  .letter {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 5px;
    font-size: 16px;
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    text-align: center;
    line-height: 30px;
  }
  
  .letter-clarity {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 5px;
    font-size: 16px;
    width: 40px;
    height: 30px;
    border: 1px solid #000;
    text-align: center;
    line-height: 30px;
  }
  
  .left-box {
    flex: 1;
    padding: 20px;
   border-right: 1px #ccc solid;
  }
  .right-box {
    flex: 1;
    padding: 20px;
    text-align: left;
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  .container-couponbox {
    display: flex;
    margin-top: -10px;
    justify-content: space-between;
    align-items: center;
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

   .side-by-side {
        display: flex;
        align-items: center;
    }

  .left-side a {
  text-decoration:underline;
  }
  
  .left-side {
    flex: 1;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 5px;
  }
  
  .right-side {
    flex: 1;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    margin-left: 1px;
  }
  .discount {
    background-color: #f7e5d3;
    border: 2px dashed #000;
    padding: 10px;
    border-radius: 5px;
  }
  .discount p {
    margin: 0;
    font-size: 17px;
    font-weight: bold;
    color: #333;
  } 

  /*popup Stil ayarlarÄ± */
  
  .popup-container {
    position: relative;
    display: inline-block;
    z-index: 1; /* DiÄŸer iÃ§eriklerin Ã¼zerinde gÃ¶rÃ¼necek */
  }
  .popup {
    display: none;
    position: absolute;
    width: 500px;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);
    background-color: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px; /* DikdÃ¶rtgen ÅŸekli iÃ§in kenar yuvarlama */
    z-index: 2; /* DiÄŸer iÃ§eriklerin Ã¼zerine Ã§Ä±kacak */
  }

.popup-container a { text-decoration: underline ;}


/* tooltip color clarity color box */

  .tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip:hover {
    background-color: white;
    color: black;
}

.tooltip::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px; /* ÃœÃ§genin yÃ¼ksekliÄŸi/2 */
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent black;
}

.tooltip::after {  
    content: attr(data-tooltip) " â–¶";
    position: absolute;
    background-color: white;
    color: black;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    z-index: 999;
    width: 200px;
    text-align: center;
    bottom: 90%;
    left: 20%;
    transform: translateX(-20%);
}

    .tooltip:hover::after {
        visibility: visible;
        opacity: 1;
    }


 .tooltip-container {
        position: relative;
        display: inline-block;
    }

    .question-icon {
        display: inline-block;
        width: 20px;
        height: 20px;
        background-color: #ccc;
        color: white;
        text-align: center;
        border-radius: 50%;
        cursor: pointer;
    }

    .tooltip-content {
        position: absolute;
        top: calc(100% + 10px); /* Ã–nceki deÄŸeri koruyarak, altÄ±na 10px ekledik */
        left: 50%;
        transform: translateX(-50%);
        width: 370px;
        background-color: white;
        border: 1px solid #ccc;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
        z-index: 999;
        text-align: center; /* Metni ortala */
    }

    .tooltip-content-rightside {
        position: absolute;
        top: calc(100% + 15px); /* Ã–nceki deÄŸeri koruyarak, altÄ±na 15px ekledik */
        left: 60%;
        transform: translateX(-100%);
        width: 350px;
        background-color: white;
        border: 1px solid #ccc;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
        z-index: 999;
        text-align: center; /* Metni ortala */
          }

    .tooltip-container:hover .tooltip-content {
        visibility: visible;
        opacity: 1;
    }

    .tooltip-container:hover .tooltip-content-rightside {
        visibility: visible;
        opacity: 1;
    }


    .arka-plan-renkli {
        background-color: #FFD700; /* Ã–rnek olarak altÄ±n rengi kullanÄ±ldÄ± */
    }






    /* Base styling for the slider */
  .slider {
    width: 100%;
    height: 292px;
    padding:0px;
    position: relative;
    margin: 0 auto;
  }

  /* Styling for each slide */
  .slide {
    width: 100%;
  height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    margin: 0 auto;
  }

  /* Different backgrounds for each slide */
  .slide:nth-child(1) { background-color: #fff; }
  .slide:nth-child(2) { background-color: #fff; }
  .slide:nth-child(3) { background-color: #fff; }


 /* Navigation buttons */
  .prev, .next {
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 24px;
    color: #333;
    padding: 10px;
    background-color: #ddd;
    border: none;
    outline: none;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s, background-color 0.3s, color 0.3s;
  }

  .slider:hover .prev, .slider:hover .next {
    opacity: 0.7;
  }

  .prev:hover, .next:hover {
    background-color: #333;
    color: #fff;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }



  
  .slider-container {
    text-align: center;
  }
  
  #slider {
    width: 80%;
    margin: 0 auto;
    position: relative;
  }
  
  .slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
  
  .label {
    flex: 1;
    position: relative;
    font-weight: bold;
    cursor: pointer;
  }
  
  .label::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #333; /* veya istediÄŸiniz renk */
    border-radius: 50%;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0; /* BaÅŸlangÄ±Ã§ta gÃ¶rÃ¼nmez */
    transition: opacity 0.3s;
  }
  
  .label:hover::after, #slider:focus .label::after {
    opacity: 1;
  }
  
  .description {
    margin-top: 20px;
  }
  
  #slider-image {
    max-width: 100px;
    display: block;
    margin: 0 auto;
  }
  
  #description-text {
    margin-top: 10px;
  }
  
  .chart {
    background-color: #f0f0f0;
    height: 20px;
    width: 100%;
    margin-top: 20px;
    position: relative;
  }
  
  .chart-bar {
    height: 100%;
    background-color: #3498db; /* veya istediÄŸiniz renk */
    position: absolute;
    transition: width 0.3s;
  }


/* diamond shape box*/

.image-container {
    display: flex;
    border:1px solid;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom:40px;
    padding-top:25px;
    padding-left:40px;
    padding-right:40px;
    flex-wrap: wrap; /* Ekleme: Mobil cihazlarda resimler sÄ±ralÄ± bir ÅŸekilde yer alacak */


  }
  .image-wrapper {
    width: 89px;
    height: 89px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
    padding:10px;
  }


  .image-wrapper:hover {
    transform: scale(1.1);
  }
  .image {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .image-label {
    text-align: center;
    margin-top: 3px;
    font-size: 12px;
  }










      /* Yeni CSS Stilleri */
    .ana-kapsayici {
      text-align: center;
      padding: 20px;
    }

    .slider-etiketleri {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .etiket {
      flex: 1;
    }

    .aciklama {
      margin-bottom: 20px;
    }

    .aciklama-metni {
      font-style: italic;
    }

    .grafik {
      width: 100px;
      
      background-size: cover;
      background-repeat: no-repeat;
      margin: 0 auto;
      position: relative;
      top: 50px; /* Slider'Ä±n Ã¼stÃ¼ne kaydÄ±rma miktarÄ± */
    }


    /* Slider Stili */
    input[type="range"] {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      height: 8px;
      border-radius: 5px;
      background: #f7e5d3;
      outline: none;
      opacity: 0.7;
      transition: opacity 0.2s;
    }

    input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #3498db;
      cursor: pointer;
    }

    input[type="range"]:hover {
      opacity: 1;
    }
    /* SonuÃ§ olarak oluÅŸan CSS stilleri */


  /* Style note tab */

  .style-note_zengodacom-container {
      display: flex;
      justify-content: space-between;
      padding: 20px;
  }
  
  .style-note_zengodacom-column {
      flex-basis: calc(50% - 20px);
      padding: 10px;
      border: 0px solid #ddd;
  }
  
  .style-note_zengodacom-column img {
      max-width: 100%;
      height: auto;
      margin-top: 10px;
  }

  @media (max-width: 768px) {
      .style-note_zengodacom-container {
          flex-direction: column;
      }
  
      .style-note_zengodacom-column {
          flex-basis: 100%;
          margin-bottom: 20px;
      }
  }

  blockquote {
    background-color: #f1e9e1; /* AlÄ±ntÄ± arka plan rengi */
    border-left: 4px solid #ccc; /* AlÄ±ntÄ± sol Ã§izgi rengi ve kalÄ±nlÄ±ÄŸÄ± */
    margin: 10px 0; /* AlÄ±ntÄ± arasÄ±ndaki boÅŸluk */
    padding: 10px; /* AlÄ±ntÄ± iÃ§eriÄŸi ile kenarlar arasÄ±ndaki boÅŸluk */
    font-style: italic; /* AlÄ±ntÄ± metninin italik stilde olmasÄ± */
  }

  /* Sekme iÃ§eriklerini stillemek iÃ§in gereken CSS */
  .tabcontent {
    display: none;
  }

  /* Aktif sekme stilini tanÄ±mlamak iÃ§in gereken CSS */
  .active {
    background-color: #fff; /* Aktif sekme arka plan rengi */
  }


  .main-product__block.main-product__block-shipping {
    background-color: #fff;
}


.sf-nav .sf-menu-item-parent .sf__parent-item {
    font-size: 13px;

}



   .kare-kutu-1 {
      border: 2px solid #333;
      background: yellow;
      padding: 0px;
      text-align: center;
    }

    .buton1 {
      display: block;
      border:1px solid #000;
      width: 100px;
      font-size: 13px;
      padding: 10px;
      background-color: white;
      color: #000;
      text-decoration: none;
      border: 2px solid #4CAF50;
      margin: 10px auto;
    }

    .metin1 {
      font-size: 18px;
      margin: 10px 0;
      color: #000;
    }

    .ust-baslik1 {
      font-size: 24px;
      font-weight: bold;
      margin: 10px 0;
      color: #000;
    }

    .baslik1 {
      font-size: 20px;
      margin: 10px 0;
      color: #000;
    }

    .alt-baslik1 {
      font-size: 16px;
      font-style: italic;
      margin: 10px 0;
      color: #000;
    }



 /* Kupon KÄ±rmÄ±zÄ± kutu stilini ayarla */
    .kupon-kutu {
      background-color: #d72628; /* KÄ±rmÄ±zÄ± renk */
      color: #fff; /* Beyaz renkli metin */
      border-radius: 3px;
      width: 63%; /* Mobil cihazlarda tam geniÅŸlik */
      text-align: center; /* Metni ortala */
      margin: 4px 6px;

    }

    /* Kupon ismi stilini ayarla */
    .kupon-isim {
      font-size: 14px;
      font-weight: bold;
    }



  .metafield-box {
    position: relative;
    display: inline-block; /* Ã–ÄŸeleri yan yana hizalamak iÃ§in */
    padding: 3px; 
  }


  
  .metafield-box::after {
    width: 170px;
    content: attr(data-tooltip); /* Tooltip iÃ§eriÄŸini Ã¶znitelikten al */
    position: absolute;
    bottom: calc(100% + 5px); /* Ana Ã¶ÄŸenin altÄ±nda olacak ÅŸekilde ayarla */
    left: 50%; /* Yatayda merkezi hizalama */
    transform: translateX(-50%); /* Yatayda merkezi hizalama */
    background-color: #fff;
    color: #000;
    padding: 4px;
    margin:5px;
    border-radius: 1px;
    border: 1px solid #D3D3D3;
    border-width: thin;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 999; /* Tooltip'in diÄŸer Ã¶ÄŸelerin Ã¼zerinde olmasÄ±nÄ± saÄŸlar */

  }

  
  
  .metafield-box:hover::after {
    opacity: 1;
    visibility: visible;
  }


  
  .has-metafield {
     /*  background-color: #dff0d8;  YeÅŸil bir arka plan rengi */
      box-shadow: 1px 1px 1px 1px #D3D3D3; -webkit-box-shadow: 1px 1px 1px 1px #D3D3D3;-moz-box-shadow:1px 1px 1px 1px #D3D3D3;
      border: 1px solid #bababa;
      border-width: thin;
      color: #000; /* renk  metin rengi */
      font-size: 12px;
      line-height: 1.5;
      font-weight:bold;
      padding: 3px 10px 2px;
      border-radius: 3px; 
      margin:2px;

    /* EÄŸer meta alanÄ± varsa, farklÄ± bir arka plan rengi veya stil uygulayabilirsiniz */
  }
  
    .no-metafield {
      /* EÄŸer meta alanÄ± yoksa, farklÄ± bir arka plan rengi veya stil uygulayabilirsiniz */
    }
  
    .no-metafield::after {
    content: none; /* no-metafield sÄ±nÄ±fÄ±na sahip Ã¶ÄŸeler iÃ§in tooltip iÃ§eriÄŸini kaldÄ±r */
  }
  


    .custom-table {
      display: table;
      width: 33%; /* Tabloyu %50 geniÅŸliÄŸinde ayarladÄ±k */
      border-collapse: collapse;
    }
    
    .custom-table-row {
      display: table-row;
    }
    
    .custom-table-cell {
      display: table-cell;
      padding: 8px;
      border: 1px solid #ccc;
    }
    
    .custom-header {
      font-weight: bold;
      background-color: #f2f2f2;
    }

    .note {
    background-color: #fcfbf5;
    border-left: 6px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
    }



      .sf__index-custom-html .rte .section__heading {
          margin-bottom: 13px;
      }
      .sf__index-custom-html .block__content-header {
          margin-bottom: 40px;
      }
      .sf__index-custom-html .block__content-body {
          margin-bottom: 60px;
      }
      .sf__index-custom-html .block__content-body h3 {
          font-size: 24px;
          line-height: 1.33;
          margin-bottom: 10px;
      }
      .sf__index-custom-html .block__content-header p,
      .sf__index-custom-html .block__content-body p {
          font-size: 15px;
      }
      .sf__index-custom-html .block__content-footer {
          padding-top: 24px;
          margin-top: 90px;
          border-top: 1px solid #ededed;
      }
      .sf__index-custom-html .block__content-footer .block__item h4 {
          font-size: 48px;
          line-height: 1.33;
      }
      .sf__index-custom-html .block__content-footer .block__item p {
          font-size: 18px;
      }
      
      @media (max-width: 767px) {
          .sf__index-custom-html .block__content-body {
              margin-bottom: 30px;
          }
          .sf__index-custom-html .block__content-footer {
              margin-top: 30px;
          }
          .sf__index-custom-html .block__content-footer .block__item h4 {
              font-size: 32px;
          }
      }
      
      
      
      
      .security-features {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #f5f5f5;
        padding: 2px 5px;
        overflow-x: auto;
        white-space: nowrap;
      }
      
      .feature-container {
        display: flex;
      }
      
      .feature {
        display: flex;
        align-items: center;
        margin-right: 15px;
      
      }
      
      .icon {
        width: 40px;
        height: 40px;
        margin-right: 5px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
      }
      
      /*
      .icon.payment {
        background-image: url('path/to/payment-icon.png');
      }
      
      .icon.logistics {
        background-image: url('path/to/logistics-icon.png');
      }
      
      .icon.privacy {
        background-image: url('path/to/privacy-icon.png');
      }
      
      .icon.protection {
        background-image: url('path/to/protection-icon.png');
      }*/
      
     .feature span {
        font-size: 14px;
        color: #333;
      }
      
      .safety-link {
        font-size: 14px;
        color: #007bff;
        text-decoration: none;
        white-space: nowrap;
      }
      
      @media (max-width: 768px) {
        .security-features {
          font-size: 12px;
        }
        
        .icon {
          width: 16px;
          height: 16px;
        }
        
        span {
          font-size: 12px;
        }
        
        .safety-link {
          font-size: 12px;
        }
      }


    .circle-number {
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 50%;
        background-color: green;
        color: white;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        margin-right: 10px;
    }



      .payment-methods {
      list-style: none;
      padding: 0;
      display: flex;
      justify-content: center;
      gap: 20px;
  }

    .payment-methods li {
        display: flex;
        align-items: center;
    }
    
    .payment-icon {
        width: 40px;
        height: 40px;
        display: inline-block;
        background-size: contain;
        background-repeat: no-repeat;
        margin-right: 10px;
    }
    
    .payment-icon.visa {
        background-image: url('/cdn/shop/files/Visa_Inc._logo.svg?v=1722612968');
    }
    
    .payment-icon.mastercard {
        background-image: url('https://upload.wikimedia.org/wikipedia/commons/a/a4/Mastercard_2019_logo.svg');
    }
    
    .payment-icon.amex {
        background-image: url('/cdn/shop/files/Mastercard_2019_logo.svg?v=1722613023');
    }
    
    .payment-icon.paypal {
        background-image: url('/cdn/shop/files/PayPal_Logo2014.svg?v=1722613059');
    }
    
    .payment-icon.applepay {
        background-image: url('/cdn/shop/files/Apple_Pay_logo.svg?v=1722613095');
    }


    .long-text {
        display: none;
      }
  
    .read-more {
        color: blue;
        cursor: pointer;
    }

    .retail-price {
        color: red;
    }


    td ul li {
    display: flex;
    justify-content: space-between;
}


    .new-badge {
      display: inline-block;
      background-color: #ff4e00;
      color: white;
      padding: 5px 10px;
      font-size: 12px;
      font-weight: bold;
      text-transform: uppercase;
      border-radius: 3px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

   .highlight-box {
      padding: 0px;
      background-color: #f8d7da;
      border: 1px solid #f5c6cb;
      color: #721c24;
      font-size: 15px;
      font-weight: bold;
      text-align: center;
      border-radius: 3px;
      margin-top: 1px;
      display: inline-block;
    }




    .highlight-box {
        padding: 2px 10px;
        background-color: #fff;
        border: 1px dashed #ffc107;
        color: #856404;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        border-radius: 2px;
        margin: 0px auto;
        display: inline-block;
        width: fit-content;
    }

    .highlight-box span {
        font-family: 'Courier New', Courier, monospace;
        letter-spacing: 2px;
        padding: 0 0px;
        background-color: #fff;
        border-radius: 4px;
    }

    .m-product-tag--soldout  {
            background-color:#000;
            color:#fff;
    }


   .m-price-item--sale {
       color:#930606;
       font-weight:bold;
   }
  
  
  .m-product-card {
       color:#000;
     }



    .review-section {
       text-align: center;
          font-family: Arial, sans-serif;
          background-color: #f7e5d3;
          padding: 7px;
          margin-top: 10px;
          border-radius: 10px;
          margin-bottom: 7px;
      }
      
      .stars {
        margin-bottom: 8px;
      }
      
      .icon-star {
        color: #000; /* Gold color for stars */
        font-size: 20px;
      }
      
      .review-text {
        font-size: 15px;
        margin-bottom: 10px;
        font-style: italic;
        margin-top: 10px;
      }
      
      .reviewer-info {
        display: inline-block;
        text-align: center;
      }
      
      .reviewer-details {
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .reviewer-photo {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 10px; /* Space between photo and text */
      }
      
      .reviewer-name {
        font-weight: bold;
        margin: 0;
        text-align: left;
      }
      
      .verified-buyer {
        display: flex;
        align-items: center;
        font-size: 14px;
        /* color: #fcf4f4; */
        margin: 0;
      }
      
      .icon-checkmark {
        display: inline-block;
        width: 15px;
        height: 15px;
        background-color: green; /* Background color for the checkmark circle */
        border-radius: 50%;
        margin-right: 5px;
        position: relative;
      }
      
      .icon-checkmark::before {
        content: "\2713"; /* Unicode character for checkmark */
        color: white;
        font-size: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }


    .guarantees ul {
        list-style-type: none;
        padding: 0;
        }

    .guarantees li {
      font-size: 18px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }

    .guarantees-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
        margin-bottom:15px;
        padding: 10px;
      
    }

.guarantee-item {
    background-color: white;
    padding: 20px;
    width: 45%;      border: 1px solid #bababa;

  /*  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.guarantee-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.guarantee-item p {
    font-size: 0.9em;
    color: #555;
}

.guarantee-item a {
    color: #007bff;
    text-decoration: none;
}

.guarantee-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .guarantee-item {
        width: 100%;
    }
}


      .days, 
    .hours, 
    .mins, 
    .secs{
      background-color: #ffffff !important;
      display: flex;
      flex-direction: column;
      text-align: center;
      /* padding: 4.5px 14px; */
      border-radius: 2px;
      font-size: 12px;
      color: #19384F;
      height: 32px;
      width: 32px;
      padding: 4px;
    }
  .announcement-bar__wrapper{
        padding: 1rem 0;
    margin: 0;
    letter-spacing: .1rem;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
  }
    @media(max-width: 993px){
      .days, .hours, .mins, .secs {
    background-color: #ffffff !important;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* padding: 4.5px 10px; */
    border-radius: 2px;
    font-size: 10px;
    padding: 4px;
}
    }
    .countdown-timer{
      display: flex;
      gap: 5px;
      height: 32px;
    }
    .countdown-title{
      font-size: 14px;
      line-height: 12px;
    }
    .countdown-subtitle{
      font-size: 9px;
      line-height: 13px;
    }


      .star-rating {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: system-ui, -apple-system, sans-serif;
        margin-bottom: 10px;
      }

      .stars {
        display: inline-flex;
      }
      
      .star {
        font-size: 20px;
        line-height: 1;
      }
      
      .star.filled {
        color: #000;
      }
      
      .star.half-filled {
        color: #000;
        opacity: 0.5;
      }
      
      .star.empty {
        color: #000;
        opacity: 0.2;
      }


      .main-product__block .m-product-title {
          line-height: 1.2;
          font-size: 22px !important;
          font-weight:bold;
      }
      .main-product__block .m-button--secondary {
        background-color: #264653 !important;
        color: #fff !important;
        font-weight: bold;
        min-height: 58px;
        line-height: 1.6em;
        padding-top: 4px;
        padding-bottom: 0;
        border-radius: 2px;
        max-width: none;
      }
      .m-main-product--info {
        background-color: #f7f5f4;
        padding-top: 20px;
        padding-bottom: 22px;
      }
      .main-product__block.main-product__block-shipping {
        background-color: #f7f5f4;
      }
      .main-product__block-collapsible_tab {
        margin-top: 10px;
        margin-bottom: 20px;
      }



              /* Ana kapsayÄ±cÄ± */
        .content-container {
            max-width: 600px;
            margin-top: 5px auto;
            background: #F3EEED;
            padding: 20px;
            border-bottom-right-radius: 8px;
            border-bottom-left-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* BaÅŸlÄ±k ve butonun bulunduÄŸu Ã¼st kÄ±sÄ±m */
        .header-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .header-section h2 {
            font-style: italic;
            font-size: 18px;
            margin: 0;
            color: #333;
        }

        /* Randevu butonu */
        .btn-appointment {
            display: inline-flex;
            align-items: center;
            background-color: #f7f1f0;
            border: 1px solid #e0d6d5;
            border-radius: 20px;
            padding: 10px 15px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
            font-weight: bold;
            transition: background 0.3s;
        }

        .btn-appointment:hover {
            background-color: #eae0de;
        }

        .btn-appointment img {
            width: 16px;
            height: 16px;
            margin-right: 8px;
        }

        /* AÃ§Ä±klama paragrafÄ± */
        .text-description {
            font-size: 14px;
            color: #555;
            margin: 0;
            line-height: 1.5;
        }

        /* Responsive ayarlar: ekran daraldÄ±kÃ§a Ã¶ÄŸeler alt alta gelsin */
        @media (max-width: 480px) {
            .header-section {
                flex-direction: column;
                align-items: flex-start;
            }
            .header-section h2 {
                margin-bottom: 10px;
            }
        }

#v3-slider-container {
            overflow: hidden;
            position: relative;
            padding: 20px 5px;
            max-width: 1500px;
            margin-right: auto;
            margin-left: auto;
        }

        @media only screen and (min-width: 768px) {
            #v3-slider-container {
                width: max-content;
            }
        }

        #v3-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            padding: 5px;
        }

        .v3-slider-card {
            flex: 0 0 80%;
            max-width: 300px;
            height: max-content;
            display: flex;
            flex-direction: column;
            background-color: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            box-sizing: border-box;
            gap: 10px;
            transition: transform 0.3s ease;
            justify-content: space-around;
            margin-right: 10px;
        }

        #v3-pagination {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }

        .v3-pagination-dot {
            width: 18px;
            height: 6px;
            background-color: #0d437d29;
            cursor: pointer;
            margin: 0 4px;
            border-radius: 5px;
        }

        .v3-pagination-dot.active {
            background-color: #f05454;
            width: 22px;
        }

        .content-container {
            padding: 10px;
        }

        .feature-title {
            margin: 0px;
            font-weight: 700;
            color: #203E5C;
        }

        .feature-image {
            border-top-right-radius: 10px;
            border-top-left-radius: 10px;
        }

        .feature-description {
            font-size: 15px;
            font-weight: 500;
        }




        body.unique-body-ABC123 {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 20px;
  }

  .unique-float-animation-container-DEF456 {
    overflow-x: auto;
    white-space: nowrap;
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px;
  }

  .unique-float-animation-container-DEF456::-webkit-scrollbar {
    display: none;
  }

  .unique-comment-box-GHI789 {
    display: inline-block;
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    width: 300px;
    max-width: 90%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    margin-right: 10px;
    vertical-align: top;
    white-space: normal;
  }

  @keyframes unique-float-JKL012 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }

  .unique-float-animation1-MNO345 {
    animation: unique-float-JKL012 4s ease-in-out infinite;
    animation-delay: 0s;
  }

  .unique-float-animation2-PQR678 {
    animation: unique-float-JKL012 4s ease-in-out infinite;
    animation-delay: 1s;
  }

  .unique-float-animation3-STU901 {
    animation: unique-float-JKL012 4s ease-in-out infinite;
    animation-delay: 2s;
  }

  .unique-float-animation4-VWX234 {
    animation: unique-float-JKL012 4s ease-in-out infinite;
    animation-delay: 3s;
  }


/* CSS ile yan yana sÄ±ralama ve gÃ¶rÃ¼nÃ¼m iyileÅŸtirmeleri */
  .product-meta-list {
    list-style: none; /* Liste iÅŸaretlerini kaldÄ±rÄ±r */
    padding: 0;
    margin: 0;
    display: flex; /* Liste Ã¶ÄŸelerini yan yana sÄ±ralar */
    flex-wrap: wrap; /* Gerekirse alt satÄ±ra geÃ§melerini saÄŸlar */
    gap: 10px; /* Ã–ÄŸeler arasÄ±nda boÅŸluk bÄ±rakÄ±r */
  }

  .product-meta-item {
    white-space: nowrap; /* Metnin tek satÄ±rda kalmasÄ±nÄ± saÄŸlar */
  }

  .collection-item a {
    text-decoration: none; /* BaÄŸlantÄ± alt Ã§izgilerini kaldÄ±rÄ±r */
    color: inherit; /* BaÄŸlantÄ± rengini ebeveyninden alÄ±r */
    /* Ä°steÄŸe baÄŸlÄ± olarak renk, font-weight gibi stil ekleyebilirsiniz */
  }

  .product-type-item .product-type-label {
    font-weight: bold; /* "ÃœrÃ¼n Tipi:" yazÄ±sÄ±nÄ± kalÄ±n yapar */
    margin-right: 5px; /* Etiket ile deÄŸer arasÄ±na boÅŸluk bÄ±rakÄ±r */
  }
 
</pre></body></html>