html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-display: swap;
  overflow-y: scroll;
}

body {
  zoom: 0.85;
  font-family: Montserrat, sans-serif !important;
  font-size: clamp(13px, 1.2vw, 15px);
}

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
  width: 44px !important;
}

p {
  padding-bottom: 10px !important;
}

br {
  padding-bottom: 10px !important;
}

.btn-primary {
  background: #92d6ad !important;
  padding: 10px !important;
  color: white !important;
  border-radius: 10px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  zoom: 0.4 !important;
}

:root {
  --app-height: 100%;
}

@supports (height: 100dvh) {
  :root {
    --app-height: 100dvh;
  }
}

.sidebarMobile {
  height: var(--app-height) !important;
}

.h-vh {
  height: 118dvh;
}

.container {
  margin: auto;
}

/* === BASE === */
.grid {
  display: grid;
}

.gap-6 {
  gap: 1.5rem;
}

/* === GRID COLUMNS (default / mobile) === */
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  /* === COLUMN SPAN (default / mobile) === */
  .col-span-1 {
    grid-column: span 1 / span 1;
  }

  .col-span-2 {
    grid-column: span 2 / span 2;
  }

  .col-span-3 {
    grid-column: span 3 / span 3;
  }

  .col-span-4 {
    grid-column: span 4 / span 4;
  }

  .col-span-5 {
    grid-column: span 5 / span 5;
  }

  /* === BREAKPOINTS === */

  /* sm: ≥640px */
  @media (min-width: 640px) {
    .sm\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sm\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .sm\:grid-cols-5 {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .sm\:col-span-1 {
      grid-column: span 1 / span 1;
    }

    .sm\:col-span-2 {
      grid-column: span 2 / span 2;
    }

    .sm\:col-span-3 {
      grid-column: span 3 / span 3;
    }

    .sm\:col-span-4 {
      grid-column: span 4 / span 4;
    }

    .sm\:col-span-5 {
      grid-column: span 5 / span 5;
    }
  }

  /* md: ≥768px */
  @media (min-width: 768px) {
    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:grid-cols-5 {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .md\:col-span-1 {
      grid-column: span 1 / span 1;
    }

    .md\:col-span-2 {
      grid-column: span 2 / span 2;
    }

    .md\:col-span-3 {
      grid-column: span 3 / span 3;
    }

    .md\:col-span-4 {
      grid-column: span 4 / span 4;
    }

    .md\:col-span-5 {
      grid-column: span 5 / span 5;
    }
  }

  /* lg: ≥1024px */
  @media (min-width: 1024px) {
    .lg\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:grid-cols-5 {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .lg\:col-span-1 {
      grid-column: span 1 / span 1;
    }

    .lg\:col-span-2 {
      grid-column: span 2 / span 2;
    }

    .lg\:col-span-3 {
      grid-column: span 3 / span 3;
    }

    .lg\:col-span-4 {
      grid-column: span 4 / span 4;
    }

    .lg\:col-span-5 {
      grid-column: span 5 / span 5;
    }
  }

  /* xl: ≥1280px */
  @media (min-width: 1280px) {
    .xl\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xl\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .xl\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .xl\:grid-cols-5 {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .xl\:col-span-1 {
      grid-column: span 1 / span 1;
    }

    .xl\:col-span-2 {
      grid-column: span 2 / span 2;
    }

    .xl\:col-span-3 {
      grid-column: span 3 / span 3;
    }

    .xl\:col-span-4 {
      grid-column: span 4 / span 4;
    }

    .xl\:col-span-5 {
      grid-column: span 5 / span 5;
    }
  }

  /* 2xl: ≥1536px */
  @media (min-width: 1536px) {
    .\32xl\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .\32xl\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .\32xl\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .\32xl\:grid-cols-5 {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .\32xl\:col-span-1 {
      grid-column: span 1 / span 1;
    }

    .\32xl\:col-span-2 {
      grid-column: span 2 / span 2;
    }

    .\32xl\:col-span-3 {
      grid-column: span 3 / span 3;
    }

    .\32xl\:col-span-4 {
      grid-column: span 4 / span 4;
    }

    .\32xl\:col-span-5 {
      grid-column: span 5 / span 5;
    }
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    zoom: 0.4;
  }

  @media (min-width: 1536px) {
    .container {
      max-width: 1560px !important;
    }
  }

  .font-serif {
    font-family: Playfair Display, serif !important;
  }

  .player {
    border-radius: 10px !important;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
      0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
      0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
      var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  /* ====== Aris Temel Renkler (değiştirilebilir) ====== */
  :root {
    --color-primary: #92d6ad;
    --color-primary-dark: #51936b;
    --color-luxury: #1f2937;
    /* text-luxury */
    --color-gray-200: #e5e7eb;
    --ring-primary-20: rgba(146, 214, 173, 0.2);
    /* primary %20 */
  }

  /* ====== Butonlar ====== */
  .btn-primary {
    background-color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    /* py-3 px-6 */
    border-radius: 0.5rem;
    /* rounded-lg */
    font-weight: 500;
    /* font-medium */
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* shadow-md */
    transform: translateY(0);
  }

  .btn-primary:hover {
    background-color: var(--color-primary-dark);
    /* hover:bg-primary-dark */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* hover:shadow-lg */
    transform: translateY(-0.125rem);
    /* hover:-translate-y-0.5 */
  }

  .btn-secondary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
    padding: 0.75rem 1.5rem;
    /* py-3 px-6 */
    border-radius: 0.5rem;
    /* rounded-lg */
    font-weight: 500;
    /* font-medium */
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* shadow-md */
    transform: translateY(0);
  }

  .btn-secondary:hover {
    background-color: var(--color-primary);
    /* hover:bg-primary */
    color: #fff;
    /* hover:text-white */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* hover:shadow-lg */
    transform: translateY(-0.125rem);
    /* hover:-translate-y-0.5 */
  }

  /* ====== Navigasyon Linki (alt çizgi animasyonlu) ====== */
  .nav-link {
    color: var(--color-luxury);
    /* text-luxury */
    position: relative;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-link:hover {
    color: var(--color-primary);
  }

  /* hover:text-primary */
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    /* after:h-0.5 */
    width: 0;
    /* after:w-0 */
    background-color: var(--color-primary);
    /* after:bg-primary */
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
    /* after:transition-all after:duration-300 */
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* hover:after:w-full */

  /* ====== Profil Sekmeleri ====== */
  .profile-tab {
    padding: 0.75rem 1.5rem;
    /* px-6 py-3 */
    border-bottom: 2px solid transparent;
    /* border-b-2 border-transparent */
    color: #4b5563;
    /* text-gray-600 */
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .profile-tab:hover {
    color: var(--color-primary);
  }

  /* hover:text-primary */
  .profile-tab.active {
    border-bottom-color: var(--color-primary);
    /* border-primary */
    color: var(--color-primary);
    /* text-primary */
  }

  /* ====== Menü Öğeleri ====== */
  .menu-item {
    padding: 0.4rem 1rem;
    /* px-4 py-3 */
    color: #374151;
    /* text-gray-700 */
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-item:hover {
    background-color: rgba(146, 214, 173, 0.05);
    /* hover:bg-primary/5 */
    color: var(--color-primary);
    /* hover:text-primary */
  }

  .menu-item.active {
    background-color: rgba(146, 214, 173, 0.1);
    /* bg-primary/10 */
    color: var(--color-primary);
    border-right: 2px solid var(--color-primary);
    /* border-r-2 border-primary */
  }

  /* ====== Animasyon ====== */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-fadeIn {
    animation: fadeIn 0.5s ease-out;
  }

  /* ====== Form Elemanları (input, select, textarea) ====== */
  input,
  select,
  textarea {
    border-radius: 0.5rem;
    /* rounded-lg */
    border: 1px solid var(--color-gray-200);
    /* border-gray-200 */
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
  }

  input:focus,
  select:focus,
  textarea:focus {
    border-color: var(--color-primary);
    /* focus:border-primary */
    box-shadow: 0 0 0 3px var(--ring-primary-20);
    /* focus:ring focus:ring-primary/20 */
  }

  /* ====== Arkaplan Deseni ====== */
  .bg-pattern {
    background-image: radial-gradient(circle at 2px 2px,
        rgba(146, 214, 173, 0.1) 1px,
        transparent 0);
    background-size: 20px 20px;
  }

  .btn-primary {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    border-radius: 0.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(146 214 173 / var(--tw-bg-opacity, 1)) !important;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color),
      0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
      var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
  }

  /* x-cloak için CSS - Alpine.js yüklenene kadar gizler */
  [x-cloak] {
    display: none !important;
  }

  /* Sayfa yüklenirken layout bozukluğunu önlemek için */
  .account-layout {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .account-layout.loaded {
    opacity: 1;
  }

  .category-description {
    padding: 30px;
    color: gray;
    border-radius: 10px;
    margin-bottom: 40px;
    background: #ffffff;
    margin-top: 6rem;
    font-size: 13px;
    text-align: justify;
    position: relative;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px,
      rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px,
      rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
      rgba(42, 51, 70, 0.04) 0px 6px 6px -3px,
      rgba(14, 63, 126, 0.04) 0px 12px 12px -6px,
      rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
  }

  .category-description-icon {
    position: absolute;
    top: -6px;
    zoom: 3;
    left: 50%;
    color: #90cfa9;
    transform: translate(-50%);
  }

  /* Mega menu responsive positioning fix */
  .mega-menu-dropdown {
    margin-top: 16px !important;
  }

  @media screen and (max-width: 1024px) {

    /* Tablet ve küçük ekranlar için mega menü positioning */
    .mega-menu-dropdown {
      left: auto !important;
      right: 0 !important;
      transform: none !important;
      width: calc(100vw - 32px) !important;
      max-width: 500px !important;
      margin-top: 12px !important;
      /* Aynı margin-top değeri */
    }
  }

  @media screen and (max-width: 768px) {

    /* Mobil için mega menü tam genişlik */
    .mega-menu-dropdown {
      left: 0 !important;
      right: 0 !important;
      transform: none !important;
      width: 100vw !important;
      max-width: none !important;
      margin-left: -16px !important;
      margin-right: -16px !important;
      margin-top: 12px !important;
      /* Aynı margin-top değeri */
    }
  }

  .player.right-content-area-supported>.content-area-sibling-enabled {
    border-radius: 10px !important;
  }

  .player .vp-video-wrapper object,
  .player .vp-video-wrapper video {
    border-radius: 10px !important;
  }

  .player {
    border-radius: 10px !important;
  }

  /* ====== SCROLLBAR STYLES ====== */
  .scrollbar-thin::-webkit-scrollbar {
    height: 8px;
  }

  .scrollbar-thin::-webkit-scrollbar-thumb {
    background: #ffffff00;
    border-radius: 4px;
  }

  .scrollbar-thin::-webkit-scrollbar-track {
    background: transparent;
  }

  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }

  .scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* ====== CATEGORY SEGMENT BAR ====== */
  #catSegBar .seg {
    width: 10px;
    background: #e5e7eb;
    border-radius: 2px;
    transition: height 200ms ease, background-color 200ms ease;
  }

  #catSegBar .seg.active {
    background: #92d6ad;
  }

  #catLeft,
  #catRight {
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }

  #catLeft:hover,
  #catRight:hover {
    opacity: 1;
  }

  #catLeft.opacity-50,
  #catRight.opacity-50 {
    opacity: 0.5;
  }

  /* ====== SKELETON SHIMMER ANIMATION ====== */
  @keyframes shimmer {
    0% {
      transform: translateX(-100%);
    }

    100% {
      transform: translateX(100%);
    }
  }

  .animate-shimmer {
    animation: shimmer 2s infinite;
  }

  /* ====== FILTER STYLES ====== */
  .shadow-lg {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.04) !important;
  }

  .filter-label {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px;
  }

  .filter-label:not(.selected):hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08),
      0 2px 4px -1px rgba(0, 0, 0, 0.04) !important;
    transform: translateY(-1px);
  }

  .filter-label.selected {
    border: 1.5px solid rgba(34, 197, 94, 0.4) !important;
    background: linear-gradient(135deg,
        rgba(240, 253, 244, 0.95) 0%,
        rgba(220, 252, 231, 0.95) 100%) !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.12),
      0 0 0 3px rgba(34, 197, 94, 0.04) !important;
  }

  .filter-label.selected:hover {
    border: 1.5px solid rgba(34, 197, 94, 0.5) !important;
    background: linear-gradient(135deg,
        rgba(240, 253, 244, 1) 0%,
        rgba(220, 252, 231, 1) 100%) !important;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.15),
      0 0 0 3px rgba(34, 197, 94, 0.06) !important;
    transform: translateY(-1px);
  }

  .filter-section-title {
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 16px;
  }

  .filter-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(34, 197, 94, 0.3),
        transparent);
    border-radius: 2px;
  }

  /* ====== RANGE SLIDER STYLES ====== */
  input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    -webkit-appearance: none;
    appearance: none;
    background: white;
    border: 2px solid #10b981;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    background: white;
    border: 2px solid #10b981;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  /* ====== ETBIS STYLES ====== */
  #ETBIS img {
    height: 50px;
    width: 50px !important;
    margin: auto;
  }

  @media (max-width: 598px) {
    #ETBIS {
      top: 5px;
    }

    .bankalar-img {
      width: 100% !important;
    }
  }

  /* ====== COOKIE POPUP ====== */
  #cookie-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 3;
  }

  #cookie-popup h1 {
    font-size: 20px;
  }

  #cookie-popup p {
    margin: 10px 10px 40px 10px;
    font-size: 14px;
  }

  #cookie-popup p:last-child {
    margin-bottom: 20px;
  }

  #cookie-popup button {
    padding: 15px;
    background-color: #7e211f;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
  }

  #cookie-popup button:hover {
    background-color: #5a1614;
  }

  /* ====== PRODUCT STYLES ====== */
  .benzer-urunler .product-layout {
    height: 200px !important;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .benzer-urunler .product-layout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .benzer-urunler .product-layout .product-thumb {
    height: 120px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
  }

  .benzer-urunler .product-layout .product-thumb img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }

  .benzer-urunler .product-layout .caption {
    padding: 8px 12px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* ====== TAB STYLES ====== */
  .tab-btn-minimal-pro {
    position: relative;
    transition: all 0.2s ease;
  }

  .tab-btn-minimal-pro.active {
    color: #10b981 !important;
    border-bottom-color: #10b981 !important;
    font-weight: 600;
  }

  .tab-btn-minimal-pro:hover {
    background-color: rgba(16, 185, 129, 0.05);
  }

  .tab-content-minimal {
    display: none;
    animation: fadeIn 0.3s ease-in;
  }

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

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Tab Design */
  @media (max-width: 768px) {
    .tab-btn-minimal-pro {
      padding: 12px 16px !important;
      font-size: 13px !important;
    }
  }

  /* Star Rating Styles */
  .star-icon {
    transition: all 0.2s ease;
  }

  /* ====== BREADCRUMB SCROLL ====== */
  .breadcrumb-scroll {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  /* ====== PRODUCT LAYOUT STYLES ====== */
  .benzer-urunler .product-layout {
    height: 200px !important;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .benzer-urunler .product-layout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .benzer-urunler .product-layout .product-thumb {
    height: 120px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
  }

  .benzer-urunler .product-layout .product-thumb img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }

  .benzer-urunler .product-layout .caption {
    padding: 8px 12px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .benzer-urunler .product-layout .caption h4,
  .benzer-urunler .product-layout .caption .price {
    display: none !important;
  }

  .benzer-urunler .product-layout .caption .button-group {
    margin: 0;
    padding: 0;
  }

  .benzer-urunler .product-layout .caption .button-group .btn {
    width: 100%;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    background: #3b82f6;
    color: white;
    border: none;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: background-color 0.2s ease;
  }

  .benzer-urunler .product-layout .caption .button-group .btn:hover {
    background: #2563eb;
    color: white;
  }

  .benzer-urunler .product-layout .caption .button-group .btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
  }

  /* Grid düzenlemesi - 2-3 ürün sığacak şekilde */
  .benzer-urunler .w-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }

  @media (min-width: 640px) {
    .benzer-urunler .w-full {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 639px) {
    .benzer-urunler .w-full {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* ====== ADDITIONAL ANIMATIONS ====== */
  @keyframes slideUp {
    from {
      transform: translateY(20px);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Share Modal Animation */
  #shareModal:not(.hidden) {
    animation: fadeIn 0.3s ease-out;
  }

  #shareModal .relative {
    animation: slideUp 0.3s ease-out;
  }

  /* Star Rating Styles */
  .star-label:hover .star-icon {
    transform: scale(1.1);
  }

  /* Wishlist button animation */
  .prd_wishlist i {
    transition: all 0.3s ease;
  }

  .prd_wishlist:active i {
    transform: scale(1.2);
  }

  /* ====== GRID LAYOUT ====== */
  .grid {
    display: grid;
  }

  .gap-8 {
    gap: 2rem;
  }

  @media (min-width: 1024px) {
    .lg\:grid-cols-12 {
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .lg\:col-span-8 {
      grid-column: span 8 / span 8;
    }

    .lg\:col-span-4 {
      grid-column: span 4 / span 4;
    }

    .sticky {
      position: sticky;
    }

    .top-24 {
      top: 6rem;
    }
  }

  /* ====== COOKIE BUTTON CONTAINER ====== */
  .button-container {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
  }

  .cookiealert .acceptcookies {
    margin: 0 0 0 10px !important;
  }


  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: Montserrat, sans-serif !important;
  }

  h1 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
  }

  h2 {
    font-size: 1.2rem !important;
    font-weight: 500 !important;
  }

  h3 {
    font-size: 1rem !important;
    font-weight: 400 !important;
  }

  .text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem;
  }

  .text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem;
  }