﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

html {
  overflow-x: hidden;
  width: 100%;
}


@font-face {
  font-family: 'Helvetica Rounded';
  font-display: swap;
  font-weight: bold;
  src: local('Helvetica Rounded Bold'), local('HelveticaRounded-Bold');
  font-display: swap;
}

.rnler {
  width: 100%;
  min-height: 100vh;
}

.rnler .div {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}


.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid #f0f0f0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 40px;
}

.logo-link {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 180px;
  height: auto;
  object-fit: contain;
}


.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.5px;
}

.navigation {
  display: flex;
  gap: 48px;
  align-items: center;
  position: relative;
}

.nav-link {
  font-size: 20px;
  font-family: 'Helvetica Rounded', 'Helvetica Rounded Bold', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: bold;
  color: #333333;
  text-decoration: none;
  padding-bottom: 8px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #000000;
}

.nav-link.active {
  color: #000000;
}

.nav-underline {
  position: absolute;
  bottom: 0;
  height: 3px;
  background-color: #000000;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  z-index: 1;
}


.nav-dropdown {
  position: relative;
  display: inline-block;
  align-self: flex-start;
}

.dropdown-trigger {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000000;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  min-width: 320px;
  max-width: 400px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translate3d(-15px, 0, 0);
  pointer-events: none;
  will-change: transform, opacity;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.nav-dropdown .dropdown-menu.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 140px;
}


.dropdown-accordion {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 280px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.dropdown-cat-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-cat-item:last-child {
  border-bottom: none;
}

.dropdown-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  transition: color 0.15s ease;
  will-change: color;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.dropdown-cat-header:hover {
  color: #d62828;
}

.dropdown-cat-header.no-children {
  cursor: default;
}

.dropdown-cat-header.no-children:hover {
  color: #ffffff;
}

.dropdown-cat-header.no-children .dropdown-item {
  padding: 0;
  margin: 0;
  color: #ffffff;
}

.dropdown-cat-header.no-children .dropdown-item:hover {
  color: #d62828;
}

.dropdown-cat-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  line-height: 1;
  text-align: center;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  color: #ffffff;
  transition: border-color 0.15s ease;
  will-change: border-color;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.dropdown-cat-header:hover .dropdown-cat-toggle {
  border-color: rgba(255, 255, 255, 0.4);
}

.dropdown-cat-title {
  flex: 1;
  color: inherit;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  font-size: 15px;
  font-family: 'Helvetica Rounded', 'Helvetica Rounded Bold', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: bold;
}

.dropdown-cat-panel {
  padding: 0 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(-20px, 0, 0);
  will-change: transform, opacity;
  contain: layout style paint;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-cat-panel.open {
  max-height: 500px;
  opacity: 1;
  padding: 8px 0 8px 32px;
  transform: translate3d(0, 0, 0);
  transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), padding 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-cat-panel[hidden] {
  display: none;
}

.dropdown-cat-panel .dropdown-item {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Helvetica Rounded', 'Helvetica Rounded Bold', 'Arial Rounded MT Bold', Arial, sans-serif;
}

.dropdown-item {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  padding: 10px 12px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  border-radius: 6px;
  font-family: 'Helvetica Rounded', 'Helvetica Rounded Bold', 'Arial Rounded MT Bold', Arial, sans-serif;
  letter-spacing: 0.3px;
  line-height: 1.4;
  display: block;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.dropdown-item:hover {
  color: #d62828;
  background-color: rgba(255, 255, 255, 0.05);
  transform: translate3d(4px, 0, 0);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.info-icon svg {
  fill: #666666;
  stroke: #666666;
  transition: all 0.3s ease;
}

.info-icon:hover {
  color: #d62828;
}

.info-icon:hover svg {
  fill: #d62828;
  stroke: #d62828;
}


.info-icon svg[fill="none"] {
  fill: none;
  stroke: #666666;
  transition: stroke 0.3s ease;
}

.info-icon:hover svg[fill="none"] {
  fill: none;
  stroke: #d62828;
}


.info-popover {
  position: fixed;
  max-width: 280px;
  width: calc(100vw - 40px);
  background: #ffffff;
  color: #111111;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 12px 14px;
  z-index: 3000;
  font-size: 14px;
  line-height: 1.5;
}

.info-popover h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.info-popover-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #6b7280;
}


.mobile-menu-toggle {
  display: none;
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  width: auto;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  gap: 4px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 2000;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: #111111;
  color: #ffffff;
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 2001;
  padding: 20px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-title {
  font-size: 18px;
  font-weight: 700;
}

.mobile-menu-close {
  background: #ffffff;
  color: #111111;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

.mobile-menu-section {
  margin-top: 8px;
}

.mobile-menu-section h4 {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 8px;
}

.mobile-menu a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.numune-btn {
  background-color: #d62828;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.numune-btn:hover {
  background-color: #b91c1c;
}

/* Intermediate Screen Sizes to Prevent Overlap */
@media (max-width: 1150px) {
  .logo-section {
    margin-left: 20px;
  }

  .navigation {
    gap: 30px;
  }
}

@media (max-width: 1000px) {
  .navigation {
    gap: 15px;
  }

  .nav-link {
    font-size: 17px;
  }

  .header-right {
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .logo-icon {
    width: 150px;
  }

  .nav-link {
    font-size: 16px;
  }

  .numune-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}


.hero-section {
  padding: 10px 0 40px 0;
}

.hero-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 10px;
  overflow: visible;
}

.hero-text {
  flex: 1;
  max-width: 240px;
  padding-top: 0;
  padding-left: 20px;
  margin-left: 0;
}

.hero-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 40px;
}

.product-showcase {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  min-width: 0;
  overflow: visible;
  position: relative;
  margin-left: 0;
  width: 100%;
  contain: layout style;
}


.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  overflow: visible;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  contain: layout style;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  padding: 55px 0 30px 0;
  box-sizing: border-box;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.carousel-slide {
  position: absolute;
  top: 35px;
  left: 50%;
  width: 160%;
  height: calc(100% - 100px);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  transform: translate3d(-50%, 0, 0);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  contain: layout style paint;
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}


.carousel-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
  will-change: auto;
}


/* Performance: Remove will-change after transition */
.carousel-slide:not(.active) {
  will-change: opacity;
}

.carousel-slide.active ~ .carousel-slide,
.carousel-slide:not(.active) {
  will-change: opacity;
}

.carousel-slide img:not(.arm-reaching) {
  width: auto !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  object-position: center center;
  max-width: none !important;
  display: block;
  margin-left: 0 !important;
  position: relative;
  left: 0;
  transform-origin: center center;
  transform: scale(1.45) translateZ(0);
  cursor: pointer;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

/* Video styles for carousel */
.carousel-slide video {
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  object-position: center center;
  max-width: none !important;
  display: block;
  margin-left: 0 !important;
  position: relative;
  left: 0;
  transform: translateY(-80px) translateX(25px) translateZ(0);
  transform-origin: center center;
  contain: layout style paint;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  pointer-events: auto;
}

/* Ensure video doesn't block button clicks */
.carousel-slide.video-slide video {
  z-index: 1;
  pointer-events: auto;
}

/* Video Sound Toggle Button - Horizontal Video Positioning */
.carousel-slide .video-sound-toggle {
  position: absolute !important;
  /* Position relative to carousel-wrapper (parent of carousel-slide) */
  right: 20px !important;
  bottom: 20px !important;
  width: 50px !important;
  height: 50px !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
  /* More visible on PC */
  border: 2px solid #000 !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  z-index: 9999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  color: #000 !important;
  font-size: 20px !important;
  pointer-events: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  transform: none !important;
  /* Force visibility - ensure button is above everything */
  position: absolute !important;
  top: auto !important;
  left: auto !important;
  isolation: isolate !important;
}

/* Ensure button is visible when video slide is active - override contain property */
.carousel-slide.active.video-slide .video-sound-toggle {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 9999999 !important;
  position: absolute !important;
}

/* Hide button when video slide is not active */
.carousel-slide:not(.active) .video-sound-toggle,
.carousel-slide:not(.video-slide) .video-sound-toggle {
  display: none !important;
}

/* For smaller screens, adjust positioning */
@media (max-width: 1200px) {
  .carousel-slide .video-sound-toggle {
    right: 15px;
    bottom: 55px;
  }
}

.carousel-slide.active .video-sound-toggle,
.carousel-slide.video-slide .video-sound-toggle {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 9999999 !important;
}

.carousel-slide .video-sound-toggle:hover {
  background-color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Ensure mobile styles remain untouched by using a min-width guard if needed, 
   but our mobile styles are already in media queries below. */

.arm-reaching {
  position: absolute;
  right: -600px;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
  transform-origin: right center;
  height: auto;
  width: 1800px;
  max-width: none !important;
  min-width: 1200px;
  z-index: 100;
  pointer-events: none;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .arm-reaching {
    width: 250px !important;
    /* Smaller per request */
    min-width: 0 !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) rotate(-20deg) !important;
    height: auto !important;
  }
}


.carousel-slide img[src*="brekkie"],
.carousel-slide img[src*="yesilbardak"],
.carousel-slide img[src*="bardaklar"] {
  margin-left: 20px !important;
  position: relative !important;
  left: 20px !important;
}

/* Adjusted for new slide positions (video is 1st, images are 2nd-6th) */
/* 2nd slide: Eldiven - smaller scale, shifted left, and moved up */
.carousel-slide:nth-child(2) img {
  transform: scale(0.9) translateX(20px) translateY(-80px) !important;
}

.carousel-slide:nth-child(4) img {
  transform: scale(0.9) translateX(-20px) !important;
}

.carousel-slide:nth-child(5) img {
  transform: scale(1.15) !important;
}

.carousel-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 20px;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: 50px;
}

.carousel-btn-next {
  right: 0px;
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.product-showcase>.carousel-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 130px;
  transform: translateX(calc(-47% + 5px));
  margin: 0 auto;
  z-index: 15;
  width: auto;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
  background-color: #000000;
  transform: scale(1.2);
}

.dot:hover {
  background-color: #9ca3af;
}

/* Arm reaching from left side - only visible on eldiven slide */
.arm-reaching {
  position: absolute !important;
  left: -700px !important;
  top: 15% !important;
  transform: translateY(-50%) !important;
  width: auto !important;
  height: 100% !important;
  max-width: none !important;
  max-height: 100% !important;
  object-fit: contain !important;
  z-index: 5 !important;
  opacity: 0;
  transition: all 0.8s ease-in-out;
  pointer-events: none;
}

/* Show arm when eldiven slide is active */
.carousel-slide.active .arm-reaching {
  opacity: 1;
  left: -50px !important;
}


.categories-accordion {
  max-width: 1000px;
  margin: 60px auto 80px auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cat-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.cat-header {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
}

.cat-header.no-children {
  cursor: default;
}

.cat-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.cat-title {
  flex: 1;
}

.cat-panel {
  padding: 0 16px 12px 16px;
}

.cat-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}

.cat-panel a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.cat-panel a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .categories-accordion {
    margin: 40px auto 60px auto;
  }

  .cat-panel ul {
    grid-template-columns: 1fr;
  }
}


.video-wrapper {
  max-width: 1000px;
  margin: 40px auto 60px auto;
  padding: 0 16px;
}

.video-inner {
  position: relative;
  width: 100%;
  padding-top: 45%;

  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.content-placeholder {
  width: 100%;
  height: 400px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  margin: 80px 0;
  background-color: #fafafa;
}


.product-sections {
  max-width: 1200px;
  margin: 0 auto 100px auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.product-section h2 {
  font-size: 22px;
  margin-bottom: 40px;
  margin-top: 20px;
  text-align: center;
  font-family: 'Helvetica Rounded', 'Helvetica Rounded Bold', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 8px;
  color: #000000;
}

.product-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--underline-width, 120px);
  min-width: 80px;
  max-width: 400px;
  height: 3px;
  background-color: #000000;
  border-radius: 2px;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.product-gallery img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 8px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  contain: layout style paint;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}


.product-gallery.gallery-3 img[src*="ambalaj"] {
  height: 550px !important;
}


/* Karton Bardaklar Gallery - Slightly enlarge karton10 */
.product-gallery.karton-bardaklar-gallery img[src*="karton10"] {
  height: 610px !important;
  margin-top: -80px !important;
}


.product-gallery.gallery-3 .gallery-row-separator {
  margin: 10px 0 !important;
}


.product-gallery.gallery-3 img[src*="mendil"]~.gallery-row-separator {
  margin: 10px 0 !important;
}



.product-gallery.gallery-4 img {
  width: auto !important;
  height: 550px !important;
  max-width: none !important;
}




@media (min-width: 769px) {

  .product-gallery img[src*="kibrit3"],
  .product-gallery img[alt*="Kibrit 2"] {
    position: relative !important;
    top: -10px !important;
    margin-top: -10px !important;
  }


  .product-gallery.karton-bardaklar-gallery img[src*="karton8"] {
    transform: scale(1.12) translateY(-20px) !important;
    transform-origin: center top !important;
  }


  .product-gallery.karton-bardaklar-gallery img[src*="karton2"] {
    transform: scale(1.1) translateY(-25px) !important;
    transform-origin: center top !important;
  }


  .product-gallery.karton-bardaklar-gallery img[src*="karton3"] {
    transform: translateY(-10px) !important;
    transform-origin: center top !important;
  }


  .product-gallery.karton-bardaklar-gallery img[src*="karton2"]:hover {
    transform: scale(1.12) translateY(-25px) !important;
  }

  .product-gallery.karton-bardaklar-gallery img[src*="karton3"]:hover {
    transform: translateY(-10px) scale(1.02) !important;
  }

  .product-gallery.karton-bardaklar-gallery img[src*="karton8"]:hover {
    transform: scale(1.14) translateY(-20px) !important;
  }


  .product-gallery.mendil-gallery img[src*="mendil1"] {
    height: 550px !important;
    min-height: 550px !important;
    max-height: 550px !important;
  }

  .product-gallery.mendil-gallery img[src*="mendil2"] {
    height: 550px !important;
    min-height: 550px !important;
    max-height: 550px !important;
  }

  .product-gallery.mendil-gallery img[src*="mendil3"] {
    height: 550px !important;
    min-height: 550px !important;
    max-height: 550px !important;
  }

  .product-gallery.mendil-gallery img[src*="mendil4"] {
    height: 550px !important;
    min-height: 550px !important;
    max-height: 550px !important;
  }

  .product-gallery.mendil-gallery img[src*="mendil5"] {
    height: 550px !important;
    min-height: 550px !important;
    max-height: 550px !important;
  }

  .product-gallery.mendil-gallery img[src*="mendil6"] {
    height: 550px !important;
    min-height: 550px !important;
    max-height: 550px !important;
  }

  .product-gallery.mendil-gallery img[src*="mendil7"] {
    height: 550px !important;
    min-height: 550px !important;
    max-height: 550px !important;
  }

  .product-gallery.mendil-gallery img[src*="mendil8"] {
    height: 550px !important;
    min-height: 550px !important;
    max-height: 550px !important;
  }


  .product-gallery.cakmak-gallery img[src*="cakmak1"],
  .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak1"] {
    height: 800px !important;
    min-height: 800px !important;
    max-height: 800px !important;
    max-width: 700px !important;
    transform: translateY(-120px) !important;
  }

  .product-gallery.cakmak-gallery img[src*="cakmak2"],
  .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak2"] {
    height: 800px !important;
    min-height: 800px !important;
    max-height: 800px !important;
    max-width: 700px !important;
    transform: translateY(-120px) !important;
  }

  .product-gallery.cakmak-gallery img[src*="cakmak3"],
  .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak3"] {
    height: 800px !important;
    min-height: 800px !important;
    max-height: 800px !important;
    max-width: 700px !important;
    transform: translateY(-120px) !important;
  }

  .product-gallery.cakmak-gallery img[src*="cakmak4"],
  .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak4"] {
    height: 800px !important;
    min-height: 800px !important;
    max-height: 800px !important;
    max-width: 700px !important;
    transform: translateY(-120px) !important;
  }


  .product-gallery.cakmak-gallery .gallery-row-separator {
    margin: -50px 0 !important;
  }


  .product-gallery.cakmak-gallery img[src*="cakmak1"]:hover,
  .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak1"]:hover {
    transform: translateY(-120px) scale(1.05) !important;
  }

  .product-gallery.cakmak-gallery img[src*="cakmak2"]:hover,
  .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak2"]:hover {
    transform: translateY(-120px) scale(1.05) !important;
  }

  .product-gallery.cakmak-gallery img[src*="cakmak3"]:hover,
  .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak3"]:hover {
    transform: translateY(-120px) scale(1.05) !important;
  }

  .product-gallery.cakmak-gallery img[src*="cakmak4"]:hover,
  .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak4"]:hover {
    transform: translateY(-120px) scale(1.05) !important;
  }
}


@media (min-width: 769px) {

  .product-gallery.seker-baharat-gallery img[src*="seker2"],
  .product-gallery.seker-baharat-gallery img[src*="seker4"] {
    grid-column: 2 !important;
    justify-self: end !important;
    margin-left: 300px !important;
  }
}

@media (min-width: 769px) {}



.product-gallery.plastik-bardak-gallery {
  align-items: start;
}

.product-gallery.plastik-bardak-gallery img {
  height: 500px;
  display: block;
  align-self: start;
  object-position: top;
}


.product-gallery.plastik-bardak-gallery img.plastik-move-down {
  margin-top: 30px;
}

.product-gallery.plastik-bardak-gallery img.plastik-enlarge {
  height: 550px;
}

.product-gallery.plastik-bardak-gallery img.plastik-enlarge-down {
  height: 550px;
  margin-top: 30px;
}

.product-gallery .product-gallery.plastik-bardak-gallery img.plastik-3 {
  margin-top: 50px !important;
}


.product-gallery img.enlarge-img {
  height: 550px;
}


.product-gallery img.smaller-img {
  height: 300px;
  margin-top: 65px;
}


.product-gallery img.smaller-img-2 {
  height: 320px;
}


.product-gallery img.move-down {
  margin-top: 25px;
}


.product-gallery img.enlarge-img-2 {
  height: 500px;
}


.product-gallery img.extra-large {
  height: 650px;
  margin-top: -70px;
}


.product-gallery img.move-up {
  margin-top: -30px;
}



.product-gallery.gallery-3 {
  grid-template-columns: repeat(2, 1fr);
}


.product-gallery.gallery-3 img:nth-child(3):not([src*="yakakarti"]):not([src*="mendil"]):not([src*="plastik"]):not([src*="cakmak"]),
.product-gallery.gallery-3 img.poset-3,
.product-gallery.gallery-3 img[src*="tsmp3"] {
  height: 500px !important;
  margin-top: 20px !important;
  min-height: 500px !important;
  object-fit: contain !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  transform: scale(1.15) translateY(5px) !important;
  transform-origin: center center !important;
}


.product-gallery.plastik-bardak-gallery.gallery-3 img:nth-child(3) {
  margin-top: 50px !important;
  transform: none !important;
}

.product-gallery.gallery-2 {
  grid-template-columns: repeat(2, 1fr);
}


.gallery-row-separator {
  grid-column: 1 / -1;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  border-radius: 25px;
}


.gallery-row-separator-thick {
  grid-column: 1 / -1;
  height: 2px;
  background-color: #000000;
  margin: 30px 0;
  border-radius: 30px;
}


.footer {
  padding: 60px 0 40px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}


.video-separator {
  width: 100%;
  max-width: none;
  margin: 8px 0 0 0;

  height: 1px;
  background: #f0f0f0;
}

.social-icons {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 2px solid #000000;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #000000;
}

.social-icon:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

.social-icon i {
  font-size: 20px;
  color: #000000;
}

.social-icon:hover {
  background-color: #333333;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.company-name {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}

.address {
  font-size: 16px;
  color: #666666;
}

.contact-info {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 16px;
}

.contact-info a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-info a:hover {
  color: #666666;
}

.copyright {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
  font-size: 14px;
  color: #666666;
}


.referanslar-content {
  padding: 80px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.referanslar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  align-items: center;
  justify-items: center;
  padding-bottom: 100px;
}

.logo-item {
  width: 300px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}




@media (max-width: 1200px) {
  .rnler .div {
    padding: 0 15px;
  }

  .hero-content {
    gap: 40px;
  }

  .product-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }


  .product-sections {
    gap: 60px;
  }

  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-gallery.gallery-3 {
    grid-template-columns: repeat(2, 1fr);
  }


  .product-gallery img {
    height: 500px;
  }


  .product-gallery.gallery-3 img[src*="ambalaj"] {
    height: 550px !important;
  }

  .product-gallery.plastik-bardak-gallery img {
    height: 450px;
    align-self: start;
    object-position: top;
  }

  .product-gallery .product-gallery.plastik-bardak-gallery img.plastik-move-down {
    margin-top: 25px;
  }

  .product-gallery.plastik-bardak-gallery img.plastik-enlarge {
    height: 480px;
  }

  .product-gallery.plastik-bardak-gallery img.plastik-enlarge-down {
    height: 480px;
    margin-top: 25px;
  }

  .product-gallery.plastik-bardak-gallery img.plastik-3 {
    margin-top: 40px !important;
  }

  .product-gallery.plastik-bardak-gallery.gallery-3 img:nth-child(3) {
    margin-top: 40px !important;
    transform: none !important;
  }

  .product-gallery.gallery-3 img:nth-child(3):not([src*="yakakarti"]):not([src*="mendil"]):not([src*="plastik"]):not([src*="cakmak"]),
  .product-gallery.gallery-3 img.poset-3,
  .product-gallery.gallery-3 img[src*="tsmp3"] {
    height: 280px !important;
    margin-top: 0 !important;
    min-height: 280px !important;
    object-fit: contain !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
  }

  .product-gallery img.smaller-img {
    height: 240px;
    margin-top: 45px;
  }

  .product-gallery img.smaller-img-2 {
    height: 260px;
  }

  .product-gallery img.move-down {
    margin-top: 20px;
  }

  .product-gallery img.enlarge-img-2 {
    height: 320px;
  }

  .product-gallery img.enlarge-img {
    height: 360px;
  }

  .product-gallery img.extra-large {
    height: 460px;
    margin-top: -50px;
  }

  .product-gallery img.move-up {
    margin-top: -20px;
  }


  .referanslar-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {


  body {
    font-size: 18px;
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .rnler,
  .rnler .div {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }


  .mobile-menu {
    width: 85%;
    max-width: 380px;
  }

  .header {
    position: relative;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0 40px 0;
  }

  .logo-section {
    margin-left: 0 !important;
    justify-content: center !important;
    width: 100%;
  }

  .navigation {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }


  .nav-dropdown {
    display: none !important;
  }


  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 10px;
  }

  .header-right {
    position: absolute;
    top: 8px;
    right: 10px;
    gap: 8px;
  }

  .info-icon {
    width: 24px;
    height: 24px;
  }

  .info-icon svg {
    width: 20px;
    height: 20px;
  }

  .numune-btn {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 18px;
  }

  .numune-btn.numune-mobile {
    display: inline-flex;
    margin: 4px 0 0 0;
  }

  .info-icon.info-mobile {
    display: inline-flex;
    margin-left: 6px;
    vertical-align: middle;
  }

  .mobile-actions {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
  }


  .nav-underline {
    display: none;
  }

  .nav-link {
    font-size: 18px;
    font-family: 'Helvetica Rounded', 'Helvetica Rounded Bold', 'Arial Rounded MT Bold', Arial, sans-serif;
    font-weight: bold;
  }


  .dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    padding: 16px;
    border-radius: 10px;
  }

  .nav-dropdown .dropdown-menu.show {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }

  .dropdown-column {
    min-width: 0;
    gap: 8px;
  }

  .dropdown-item {
    font-size: 14px;
    padding: 8px 10px;
    font-family: 'Helvetica Rounded', 'Helvetica Rounded Bold', 'Arial Rounded MT Bold', Arial, sans-serif;
    font-weight: bold;
  }

  .hero-section {
    padding: 15px 0 50px 0;
    margin-top: -40px;
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding-top: 0;
  }

  .hero-text {
    padding-top: 0;
    max-width: 100%;
    padding-left: 20px;
    margin-left: 0;
  }

  .hero-text p {
    font-size: 18px;
  }

  .product-showcase {
    padding-top: 0;
    width: 100%;
    margin-left: 0;
  }

  .carousel-container {
    width: 100%;
    max-width: 100%;
    height: 500px;
    margin: 0 auto;
    margin-top: -50px;
    padding: 0 16px;
    overflow-x: hidden;
    overflow-y: visible;
    justify-content: center;
    box-sizing: border-box;
    touch-action: pan-y !important;
  }

  .hero-content {
    gap: 40px;
    max-width: 100%;
  }

  .carousel-wrapper {
    padding: 35px 0;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    touch-action: pan-y !important;
  }

  .carousel-slide {
    position: absolute !important;
    top: 35px;
    left: 50%;
    width: 100%;
    height: calc(100% - 70px);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
  transform: translate3d(-50%, 0, 0);
  pointer-events: none;
  touch-action: pan-y !important;
  }

  .carousel-slide.active {
    opacity: 1 !important;
    z-index: 1;
    pointer-events: auto;
  }

  .carousel-slide img:not(.arm-reaching):not([src*="eldiven"]) {
    width: auto !important;
    height: 100% !important;
    max-height: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    object-fit: contain;
    object-position: center;
    transform: scale(1.1);
    touch-action: pan-y !important;
    pointer-events: auto !important;
  }

  /* Eldiven için özel mobil pozisyon */
  .carousel-slide img[src*="eldiven"] {
    width: auto !important;
    height: 100% !important;
    max-height: 100% !important;
    max-width: 100% !important;
    margin-left: -60px !important;
    object-fit: contain;
    object-position: left center !important;
    transform: translateY(-20px) !important;
  }


  .carousel-slide img[src*="brekkie"],
  .carousel-slide img[src*="yesilbardak"],
  .carousel-slide img[src*="bardaklar"] {
    margin-left: -15px !important;
    transform: translateX(-15px) !important;
  }

  .carousel-slide:nth-child(3) img {
    transform: translateX(-10px) !important;
  }

  .carousel-slide:nth-child(1) img {
    transform: none !important;
  }

  /* Video styling for mobile */
  .carousel-slide video {
    width: auto !important;
    height: 70% !important;
    max-height: 70% !important;
    max-width: 80% !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: translateY(100px) !important;
    touch-action: pan-y !important;
    pointer-events: auto !important;
  }

  .carousel-slide:nth-child(4) img {
    transform: translateY(15px) translateX(-15px) !important;
  }

  /* Video sound toggle button - mobile positioning for horizontal video */
  .carousel-slide .video-sound-toggle {
    bottom: auto !important;
    right: 20px !important;
    top: 170px !important;
    left: auto !important;
    transform: none !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 14px !important;
  }

  .carousel-slide {
    height: calc(100% - 80px);
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

  .product-showcase>.carousel-dots {
    position: relative;
    left: 0;
    right: 0;
    bottom: auto;
    transform: none;
    margin-top: -240px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* Mobile arm reaching adjustments */
  .arm-reaching {
    width: auto !important;
    height: 100% !important;
    max-width: none !important;
    max-height: 100% !important;
    object-fit: contain !important;
    left: -500px !important;
    top: 50% !important;
    transform: translateY(-50%) scale(0.65) !important;
  }

  .carousel-slide.active .arm-reaching {
    left: -200px !important;
    transform: translateY(-50%) scale(0.65) !important;
  }


  .video-wrapper {
    margin: 30px auto 40px auto;
    padding: 0 16px;
  }

  .video-inner {
    border-radius: 8px;
  }

  .product-categories {
    padding: 140px 0 60px 0;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .carousel-btn-prev {
    left: 15px;
  }

  .carousel-btn-next {
    right: 15px;
  }

  .product-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .category img {
    width: 100px;
    height: 100px;
  }

  .category-label {
    font-size: 14px;
  }


  .product-sections {
    gap: 40px;
  }

  .product-section h2 {
    font-size: 18px;
    margin-bottom: 30px;
    padding-bottom: 6px;
  }


  .product-section:has(.seker-baharat-gallery) h2,
  .product-section:has(.gallery-4.seker-baharat-gallery) h2 {
    margin-bottom: 10px !important;
  }

  .product-section h2::after {
    width: var(--underline-width, 100px);
    min-width: 60px;
    max-width: 300px;
    height: 2px;
  }



  .product-gallery {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 0 16px !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: -20px !important;
  }

  .product-gallery.gallery-3,
  .product-gallery.gallery-4,
  .product-gallery.gallery-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }


  .product-gallery img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
  }


  .product-gallery img:not([src*="cakmak"]) {
    min-height: 280px !important;
    max-height: 380px !important;
    height: auto !important;
  }


  .product-gallery.karton-bardaklar-gallery img[src*="karton8"] {
    transform: scale(1.1) translateY(-5px) !important;
    transform-origin: center top !important;
    width: 100% !important;
    height: auto !important;
  }


  .product-gallery.karton-bardaklar-gallery img[src*="karton2"] {
    transform: scale(1.1) translateY(-20px) !important;
    transform-origin: center top !important;
    width: 100% !important;
    height: auto !important;
  }


  .product-gallery.karton-bardaklar-gallery img[src*="karton9"] {
    transform: translateY(-5px) !important;
    transform-origin: center top !important;
  }


  .product-gallery .gallery-row-separator,
  .product-gallery .gallery-row-separator-thick {
    grid-column: 1 / -1 !important;
    display: block !important;
    width: 100% !important;
    height: 1px !important;
    background-color: rgba(0, 0, 0, 0.1) !important;
    margin: 12px 0 !important;
    padding: 0 !important;
  }


  .product-gallery.mendil-gallery .gallery-row-separator,
  .product-gallery.gallery-3.mendil-gallery .gallery-row-separator {
    margin: 5px 0 !important;
  }


  .product-section {
    margin-bottom: 30px !important;
    padding: 0 !important;
  }

  .product-section h2 {
    margin-bottom: 20px !important;
    margin-top: 0 !important;
  }




  .product-gallery img[src*="yakakarti3"],
  .product-gallery img[alt*="Yaka İpi 3"] {
    position: relative !important;
    top: 5px !important;
  }


  .product-gallery img[src*="kibrit3"],
  .product-gallery img[alt*="Kibrit 2"] {
    position: relative !important;
    top: -15px !important;
  }


  .product-gallery.plastik-bardak-gallery img {
    height: 420px;
    align-self: start;
    object-position: top;
  }

  .product-gallery .product-gallery.plastik-bardak-gallery img.plastik-move-down {
    margin-top: 20px;
  }

  .product-gallery.plastik-bardak-gallery img.plastik-enlarge {
    height: 450px;
  }

  .product-gallery.plastik-bardak-gallery img.plastik-enlarge-down {
    height: 450px;
    margin-top: 20px;
  }

  .product-gallery.plastik-bardak-gallery img.plastik-3 {
    margin-top: 35px !important;
  }

  .product-gallery.plastik-bardak-gallery.gallery-3 img:nth-child(3) {
    margin-top: 35px !important;
    transform: none !important;
  }

  .product-gallery.gallery-3 img:nth-child(3):not([src*="yakakarti"]):not([src*="mendil"]):not([src*="plastik"]):not([src*="cakmak"]),
  .product-gallery.gallery-3 img.poset-3,
  .product-gallery.gallery-3 img[src*="tsmp3"] {
    height: 240px !important;
    margin-top: 0 !important;
    min-height: 240px !important;
    object-fit: contain !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
  }

  .product-gallery img.smaller-img {
    height: 200px;
    margin-top: 35px;
  }

  .product-gallery img.smaller-img-2 {
    height: 220px;
  }

  .product-gallery img.move-down {
    margin-top: 18px;
  }

  .product-gallery img.enlarge-img-2 {
    height: 280px;
  }

  .product-gallery img.enlarge-img {
    height: 320px;
  }

  .product-gallery img.extra-large {
    height: 420px;
    margin-top: -45px;
  }

  .product-gallery img.move-up {
    margin-top: -15px;
  }


  .referanslar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .logo-item {
    width: 150px;
    height: 100px;
    padding: 15px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {


  body {
    font-size: 17px;
  }


  .product-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }


  .mobile-menu {
    width: 85%;
    max-width: 380px;
  }

  .rnler .div {
    padding: 0 10px;
  }

  .logo-icon {
    width: 80px;
  }

  .navigation {
    gap: 16px;
  }

  .nav-link {
    font-size: 16px;
  }


  .nav-dropdown .dropdown-menu.show {
    grid-template-columns: 1fr;
  }

  .header-right {
    gap: 12px;
  }

  .numune-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .hero-section {
    padding: 10px 0 40px 0;
  }

  .hero-content {
    flex-direction: column;
    gap: 30px;
    padding-top: 0;
  }

  .hero-text {
    padding-top: 20px;
    max-width: 100%;
  }

  .hero-text p {
    font-size: 17px;
  }

  .product-showcase {
    padding-top: 0;
    width: 100%;
    margin-left: 0;
  }

  .carousel-container {
    width: 100%;
    max-width: 100%;
    height: 400px;
    margin: 0 auto;
    margin-top: -50px;
    padding: 0 12px;
    overflow-x: hidden;
    overflow-y: visible;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero-text {
    margin-left: 0;
    max-width: 100%;
    padding: 0 12px;
    text-align: left;
  }

  .hero-content {
    gap: 30px;
    max-width: 100%;
  }

  .carousel-wrapper {
    padding: 25px 0;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
  }

  .carousel-slide {
    position: absolute !important;
    top: 15px;
    left: 50%;
    width: 100%;
    height: calc(100% - 60px);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .carousel-slide.active {
    opacity: 1 !important;
    z-index: 1;
    pointer-events: auto;
  }

  .carousel-slide img {
    width: auto !important;
    height: 100% !important;
    max-height: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    object-fit: contain;
    object-position: center;
    transform: scale(1.15);
    touch-action: pan-y !important;
    pointer-events: auto !important;
  }


  .carousel-slide img[src*="brekkie"],
  .carousel-slide img[src*="yesilbardak"],
  .carousel-slide img[src*="bardaklar"] {
    margin-left: -15px !important;
    transform: translateX(-15px) !important;
  }

  .carousel-slide:nth-child(3) img {
    transform: translateX(-10px) !important;
  }

  .carousel-slide:nth-child(1) img {
    transform: none !important;
  }

  .carousel-slide:nth-child(2) img {
    transform: translateY(-20px) translateX(10px) !important;
  }

  /* Video styling for small mobile */
  .carousel-slide video {
    width: auto !important;
    height: 65% !important;
    max-height: 65% !important;
    max-width: 75% !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: translateY(75px) !important;
    touch-action: pan-y !important;
    pointer-events: auto !important;
  }

  .carousel-slide:nth-child(4) img {
    transform: translateY(15px) translateX(-15px) !important;
  }

  /* Video sound toggle button - small mobile positioning for horizontal video */
  .carousel-slide .video-sound-toggle {
    bottom: auto !important;
    right: 15px !important;
    top: 140px !important;
    left: auto !important;
    transform: none !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 13px !important;
  }

  .carousel-slide {
    height: calc(100% - 60px);
    touch-action: pan-y !important;
  }

  .carousel-btn-prev {
    left: 8px;
  }

  .carousel-btn-next {
    right: 8px;
  }

  .product-showcase>.carousel-dots {
    position: relative;
    left: 0;
    right: 0;
    bottom: auto;
    transform: none;
    margin-top: -180px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .product-categories {
    padding: 100px 0 60px 0;
  }


  .category img {
    width: 90px;
    height: 90px;
  }

  .category-label {
    font-size: 13px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }


  .video-wrapper {
    margin: 20px auto 30px auto;
    padding: 0 12px;
  }

  .video-inner {
    border-radius: 6px;
  }

  .product-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .category img {
    width: 130px;
  }
}


.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  background-color: #ffffff;
  border: 2px solid #000000;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-popup:not(.hidden) {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-popup.hidden {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}

.cookie-popup-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.cookie-popup-text {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-popup-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.cookie-btn-reject {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #000000;
}

.cookie-btn-reject:hover {
  background-color: #f5f5f5;
  transform: translateY(-1px);
}

.cookie-btn-accept {
  background-color: #000000;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cookie-popup {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    padding: 20px;
  }

  .cookie-popup-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }


  .video-wrapper {
    margin: 30px auto 40px auto;
    padding: 0 16px;
  }

  .video-inner {
    border-radius: 8px;
  }


  .product-sections {
    gap: 24px;
  }

  .product-section h2 {
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 6px;
    font-family: 'Helvetica Rounded', 'Helvetica Rounded Bold', 'Arial Rounded MT Bold', Arial, sans-serif;
    font-weight: bold;
  }

  .product-section h2::after {
    width: var(--underline-width, 80px);
    min-width: 50px;
    max-width: 250px;
    height: 2px;
  }

  .product-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  .product-gallery.gallery-3,
  .product-gallery.karton-bardaklar-gallery,
  .product-gallery.karton-bardaklar-gallery.gallery-3,
  .product-gallery.gallery-3.karton-bardaklar-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }




  .product-gallery .gallery-row-separator,
  .product-gallery .gallery-row-separator-thick {
    grid-column: 1 / -1;
    display: block !important;
    margin: 25px 0 !important;
  }

  .product-gallery img:not([src*="cakmak"]) {
    height: 450px;
    border-radius: 6px;
  }


  .product-gallery.gallery-3 img[src*="ambalaj"] {
    height: 500px !important;
  }


  .product-gallery.gallery-3 .gallery-row-separator {
    margin: 10px 0 !important;
  }


  .product-gallery.mendil-gallery .gallery-row-separator,
  .product-gallery.gallery-3.mendil-gallery .gallery-row-separator,
  .product-gallery.gallery-3:has(img[src*="mendil"]) .gallery-row-separator {
    margin: 5px 0 !important;
  }


  .product-gallery.mendil-gallery img[src*="mendil1"],
  .product-gallery.mendil-gallery img[src*="mendil2"],
  .product-gallery.mendil-gallery img[src*="mendil3"],
  .product-gallery.mendil-gallery img[src*="mendil5"],
  .product-gallery.mendil-gallery img[src*="mendil6"],
  .product-gallery.mendil-gallery img[src*="mendil7"],
  .product-gallery.mendil-gallery img[src*="mendil8"] {
    transform: scale(1.1) !important;
    transform-origin: center top !important;
  }


  .product-gallery.mendil-gallery img[src*="mendil4"] {
    transform: translateY(-12px) scale(1.15) !important;
    transform-origin: center top !important;
  }


  .product-gallery img[src*="cnt4 1"],
  .product-gallery img[src*="cnt4"] {
    transform: scale(1.07) !important;
    transform-origin: center top !important;
  }


  .product-gallery.mendil-gallery img[src*="mendil1"],
  .product-gallery.mendil-gallery img[src*="mendil2"] {
    transform: translateY(-40px) scale(1.1) !important;
    transform-origin: center top !important;
  }


  .product-gallery.mendil-gallery img[src*="mendil5"] {
    transform: translateY(-18px) scale(1.1) !important;
    transform-origin: center top !important;
  }



  .product-gallery.seker-baharat-gallery,
  .product-gallery.gallery-4.seker-baharat-gallery {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    row-gap: 10px !important;
    padding: 20px !important;
    margin: -50px auto 0 auto !important;
    margin-top: -50px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    top: -30px !important;
  }


  .product-gallery.seker-baharat-gallery .gallery-row-separator,
  .product-gallery.gallery-4.seker-baharat-gallery .gallery-row-separator {
    margin: 10px 0 !important;
  }


  .product-section .seker-baharat-gallery {
    margin-top: -50px !important;
  }


  .product-section:has(.seker-baharat-gallery) h2,
  .product-section:has(.gallery-4.seker-baharat-gallery) h2 {
    margin-bottom: 10px !important;
  }

  .product-gallery.seker-baharat-gallery img {
    height: 550px !important;
    width: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    border-radius: 6px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }


  .product-gallery.seker-baharat-gallery img[src*="seker2"],
  .product-gallery.seker-baharat-gallery img[src*="seker4"] {
    grid-column: auto !important;
    justify-self: stretch !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }



  .product-gallery.plastik-bardak-gallery img {
    height: 420px;
    align-self: start;
    object-position: top;
  }

  .product-gallery.plastik-bardak-gallery img.plastik-move-down {
    margin-top: 18px;
  }

  .product-gallery.plastik-bardak-gallery img.plastik-enlarge {
    height: 450px;
  }

  .product-gallery.plastik-bardak-gallery img.plastik-enlarge-down {
    height: 450px;
    margin-top: 18px;
  }

  .product-gallery.plastik-bardak-gallery img.plastik-3 {
    margin-top: 40px !important;
  }


  .product-gallery.gallery-3 img[src*="plastik6"] {
    transform: scale(1.05) !important;
    transform-origin: center top !important;
  }


  .product-gallery.cakmak-gallery img[src*="cakmak1"],
  .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak1"],
  .product-gallery.cakmak-gallery img[src*="cakmak2"],
  .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak2"],
  .product-gallery.cakmak-gallery img[src*="cakmak3"],
  .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak3"],
  .product-gallery.cakmak-gallery img[src*="cakmak4"],
  .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak4"] {
    transform: scale(1.25) !important;
    transform-origin: center top !important;
  }

  .product-gallery.plastik-bardak-gallery.gallery-3 img:nth-child(3) {
    margin-top: 30px !important;
    transform: none !important;
  }

  .product-gallery.gallery-3 img:nth-child(3):not([src*="yakakarti"]):not([src*="mendil"]):not([src*="plastik"]):not([src*="cakmak"]),
  .product-gallery.gallery-3 img.poset-3,
  .product-gallery.gallery-3 img[src*="tsmp3"] {
    height: 260px !important;
    margin-top: 0 !important;
    min-height: 260px !important;
    object-fit: contain !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
  }

  .product-gallery img.smaller-img {
    height: 220px;
    margin-top: 35px;
  }

  .product-gallery img.smaller-img-2 {
    height: 240px;
  }

  .product-gallery img.move-down {
    margin-top: 18px;
  }

  .product-gallery img.enlarge-img-2 {
    height: 300px;
  }

  .product-gallery img.enlarge-img {
    height: 340px;
  }

  .product-gallery img.extra-large {
    height: 440px;
    margin-top: -45px;
  }

  .product-gallery img.move-up {
    margin-top: -15px;
  }


  .referanslar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .company-name {
    font-size: 20px;
  }

  .address {
    font-size: 14px;
  }

  .contact-info {
    font-size: 14px;
    flex-direction: column;
    gap: 8px;
  }

  .copyright {
    font-size: 12px;
    margin-top: 24px;
    padding-top: 20px;
  }
}


.iletisim-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.iletisim-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.iletisim-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  font-family: 'Helvetica Rounded', 'Helvetica Rounded Bold', 'Arial Rounded MT Bold', Arial, sans-serif;
}

.iletisim-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.iletisim-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

.iletisim-divider {
  width: 100%;
  height: 1px;
  background-color: #000000;
  margin: 10px 0;
}

.iletisim-bilgileri {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.iletisim-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}

.iletisim-item a {
  display: block;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.iletisim-item a:hover {
  color: #666666;
}

.telefon-bilgi {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #25D366 !important;
}

.whatsapp-link i {
  font-size: 20px;
}

.map-container {
  width: 100%;
  height: 400px;
  border: 1px solid #000000;
  border-radius: 0;
  overflow: hidden;
  margin-top: 20px;
}


.map-mobile {
  display: none;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


.iletisim-right {
  display: flex;
  flex-direction: column;
}

.iletisim-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  font-size: 16px;
  color: #000000;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #000000;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #666666;
}


.phone-input-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.phone-country-select {
  padding: 12px 8px;
  border: none;
  border-bottom: 1px solid #000000;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  background: transparent;
  outline: none;
  cursor: pointer;
  min-width: 70px;
  transition: border-color 0.3s ease;
}

.phone-country-select:focus {
  border-bottom-color: #666666;
}

.phone-input-wrapper input[type="tel"] {
  flex: 1;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-submit-btn {
  padding: 14px 32px;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 10px;
}

.form-submit-btn:hover {
  background-color: #000000;
  color: #ffffff;
}


.form-success-message {
  margin-top: 16px;
  padding: 12px 20px;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 8px;
  font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.form-success-message.show {
  opacity: 1;
  transform: translateY(0);
}

.form-success-message i {
  color: #000000;
  font-size: 16px;
}


.recaptcha-notice {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #666666;
}

.recaptcha-notice a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.recaptcha-notice a:hover {
  text-decoration: underline;
}


.recaptcha-group {
  margin-top: 10px;
  margin-bottom: 10px;
}

.g-recaptcha {
  transform-origin: left top;
}


@media (max-width: 1024px) {
  .iletisim-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 20px;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .iletisim-content {
    gap: 30px;
    padding: 20px 16px;
  }

  .iletisim-left h2 {
    font-size: 28px;
  }

  .iletisim-text p {
    font-size: 15px;
  }

  .iletisim-item h3 {
    font-size: 16px;
  }

  .iletisim-item a {
    font-size: 15px;
  }


  .iletisim-left .map-container {
    display: none;
  }


  .map-mobile {
    display: block !important;
    margin-top: 30px;
  }

  .map-container {
    height: 300px;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 15px;
  }

  .form-submit-btn {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .iletisim-content {
    padding: 16px 12px;
  }

  .iletisim-left h2 {
    font-size: 24px;
  }

  .map-container {
    height: 250px;
  }
}


.message-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background-color: #ffffff;
  border: 2px solid #000000;
  padding: 24px 40px;
  border-radius: 0;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 200px;
  max-width: 90%;
}

.message-notification.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .message-notification {
    padding: 20px 32px;
    font-size: 16px;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .message-notification {
    padding: 16px 24px;
    font-size: 15px;
    min-width: 160px;
  }
}

.numune-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 4000;
}

.numune-modal-overlay.open {
  display: flex;
}

.numune-modal {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  /* Added to fit on PC screens */
  overflow-y: auto;
  /* Enable scrolling */
  scrollbar-width: thin;
  /* Modern scrollbar */
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.numune-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
  color: #111111;
  transition: transform 0.2s ease;
}

.numune-modal-close:hover {
  transform: scale(1.1);
}

.numune-modal h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-family: 'Helvetica Rounded', 'Helvetica Rounded Bold', 'Arial Rounded MT Bold', Arial, sans-serif;
}

.numune-modal-info {
  margin-bottom: 20px;
  color: #4a4a4a;
  font-size: 15px;
}

#numuneForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.numune-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.numune-form-group label {
  font-size: 14px;
  font-weight: 600;
}

.numune-form-group input,
.numune-form-group textarea {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.numune-form-group input:focus,
.numune-form-group textarea:focus {
  outline: none;
  border-color: #111111;
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.1);
}


.numune-form-group .phone-input-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.numune-form-group .phone-country-select {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 10px 8px;
  font-size: 15px;
  font-family: inherit;
  color: #111111;
  background: transparent;
  outline: none;
  cursor: pointer;
  min-width: 70px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.numune-form-group .phone-country-select:focus {
  border-color: #111111;
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.1);
}

.numune-form-group .phone-input-wrapper input[type="tel"] {
  flex: 1;
}

.numune-form-submit {
  border: none;
  background: #111111;
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.numune-form-submit:hover {
  opacity: 0.9;
}

.numune-modal-message {
  margin-top: 10px;
  font-size: 14px;
  display: none;
}

.numune-modal-message.success {
  color: #0f9d58;
}

.numune-modal-message.error {
  color: #d93025;
}

.modal-open {
  overflow: hidden;
}

.numune-success-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  pointer-events: none;
}

.numune-success-animation.show {
  display: flex;
}

.numune-success-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #111111;
  border-top-color: transparent;
  animation: numuneRing 1.5s linear infinite;
  position: absolute;
  inset: 0;
}

.numune-success-check {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  font-weight: 700;
  color: #111111;
  background: #ffffff;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.3);
  animation: numuneCheckAppear 0.5s ease 0.8s forwards;
}

@keyframes numuneCheckAppear {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes numuneRing {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.product-gallery.gallery-3 img[src*="peçete"] {
  height: 500px;
  object-fit: contain;
  align-self: start;
}

.product-gallery.gallery-3 img[src*="mendil"] {
  height: 550px;
  object-fit: contain;
  align-self: start;
}

.product-gallery.gallery-3 img[src*="mendil3"] {
  height: 600px !important;
  min-height: 600px !important;
  margin-top: -20px !important;
  transform: translateY(0) !important;
}




.product-gallery.gallery-3 img[src*="burgerkutu"] {
  height: 500px;
  object-fit: contain;
  align-self: start;
}


.product-gallery.gallery-3 img[src*="plastik3"] {
  margin-top: 5px !important;
  transform: translateY(0) !important;
}



.lightbox-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  z-index: 10001;
}


.product-gallery img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.product-gallery img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }

  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 24px;
    top: 10px;
    right: 10px;
  }

  .lightbox-image {
    max-height: 90vh;
  }
}


@media (max-width: 768px) {
  .product-gallery.mendil-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .product-gallery.mendil-gallery img[src*="mendil"] {
    height: 500px !important;
    min-height: 500px !important;
  }

  .product-gallery.mendil-gallery img[src*="mendil3"] {
    height: 550px !important;
    min-height: 550px !important;
    margin-top: -20px !important;
  }
}

@media (max-width: 480px) {
  .product-gallery.mendil-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .product-gallery.mendil-gallery img[src*="mendil"] {
    height: 450px !important;
    min-height: 450px !important;
  }

  .product-gallery.mendil-gallery img[src*="mendil3"] {
    height: 500px !important;
    min-height: 500px !important;
    margin-top: -20px !important;
  }
}
}


.product-gallery img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.product-gallery img:hover {
  transform: scale(1.02);
}


.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-container {
  position: relative;
  max-width: 95% !important;
  max-height: 95% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('img/arkaplan.jpeg') !important;
  background-repeat: no-repeat !important;
  background-position: left top !important;
  background-size: cover !important;
  background-color: transparent !important;
  padding: 20px !important;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}


.lightbox-container.pecete-lightbox {
  background-image: none !important;
  background-color: #1a1a1a !important;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  z-index: 10001;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }

  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 24px;
    top: 10px;
    right: 10px;
  }

  .lightbox-image {
    max-height: 90vh;
  }
}


.product-gallery img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.product-gallery img:hover {
  transform: scale(1.02);
}


.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-container {
  position: relative;
  max-width: 95% !important;
  max-height: 95% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('img/arkaplan.jpeg') !important;
  background-repeat: no-repeat !important;
  background-position: left top !important;
  background-size: cover !important;
  background-color: transparent !important;
  padding: 20px !important;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}


.lightbox-container.pecete-lightbox {
  background-image: none !important;
  background-color: #1a1a1a !important;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  z-index: 10001;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }

  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 24px;
    top: 10px;
    right: 10px;
  }


  .lightbox-nav.prev {
    left: 20px;
  }

  .lightbox-nav.next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10001;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: 10px;
      right: 10px;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }


  .product-gallery img {
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .product-gallery img:hover {
    transform: scale(1.02);
  }


  .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .lightbox-overlay.active {
    display: flex;
    opacity: 1;
  }

  .lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('img/arkaplan.jpeg') no-repeat center center;
    background-position: left top !important;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
  }

  .lightbox-nav.prev {
    left: 20px;
  }

  .lightbox-nav.next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10001;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: 10px;
      right: 10px;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }

  .lightbox-nav.next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10001;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: 10px;
      right: 10px;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }


  .product-gallery img {
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .product-gallery img:hover {
    transform: scale(1.02);
  }


  .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .lightbox-overlay.active {
    display: flex;
    opacity: 1;
  }

  .lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('img/arkaplan.jpeg') no-repeat center center;
    background-position: left top !important;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
  }

  .lightbox-nav.prev {
    left: 20px;
  }

  .lightbox-nav.next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10001;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: 10px;
      right: 10px;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }

  .lightbox-nav.next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10001;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: 10px;
      right: 10px;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }


  .product-gallery img {
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .product-gallery img:hover {
    transform: scale(1.02);
  }


  .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .lightbox-overlay.active {
    display: flex;
    opacity: 1;
  }

  .lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('img/arkaplan.jpeg') no-repeat center center;
    background-position: left top !important;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
  }

  .lightbox-nav.prev {
    left: 20px;
  }

  .lightbox-nav.next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10001;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: 10px;
      right: 10px;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }

  .lightbox-nav.next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10001;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: 10px;
      right: 10px;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }


  .product-gallery img {
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .product-gallery img:hover {
    transform: scale(1.02);
  }


  .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .lightbox-overlay.active {
    display: flex;
    opacity: 1;
  }

  .lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('img/arkaplan.jpeg') no-repeat center center;
    background-position: left top !important;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
  }

  .lightbox-nav.prev {
    left: 20px;
  }

  .lightbox-nav.next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10001;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: 10px;
      right: 10px;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }





  @media (max-width: 768px) {


    @media (max-width: 768px) {
      .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
      }

      .lightbox-nav.prev {
        left: 10px;
      }

      .lightbox-nav.next {
        right: 10px;
      }

      .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 10px;
        right: 10px;
      }

      .lightbox-image {
        max-height: 90vh;
      }
    }


    .product-gallery img {
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .product-gallery img:hover {
      transform: scale(1.02);
    }


    .lightbox-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.95);
      z-index: 10000;
      display: none;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .lightbox-overlay.active {
      display: flex;
      opacity: 1;
    }

    .lightbox-container {
      position: relative;
      max-width: 90%;
      max-height: 90%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: url('img/arkaplan.jpeg') no-repeat center center;
      background-position: center;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .lightbox-image {
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 4px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 30px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
      transition: all 0.3s ease;
      z-index: 10001;
    }

    .lightbox-close:hover {
      background: rgba(255, 255, 255, 1);
      transform: scale(1.1);
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.9);
      border: none;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
      transition: all 0.3s ease;
      z-index: 10001;
    }

    .lightbox-nav:hover {
      background: rgba(255, 255, 255, 1);
      transform: translateY(-50%) scale(1.1);
    }

    .lightbox-nav.prev {
      left: 20px;
    }

    .lightbox-nav.next {
      right: 20px;
    }

    .lightbox-counter {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 10px 20px;
      border-radius: 20px;
      font-size: 16px;
      z-index: 10001;
    }

    @media (max-width: 768px) {
      .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
      }

      .lightbox-nav.prev {
        left: 10px;
      }

      .lightbox-nav.next {
        right: 10px;
      }

      .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 10px;
        right: 10px;
      }

      .lightbox-image {
        max-height: 90vh;
      }
    }





    @media (max-width: 768px) {}
  }


  @media (max-width: 768px) {
    .product-gallery.gallery-3 img[src*="karton7"] {
      position: relative !important;
      top: 15px !important;
    }
  }


  @media (max-width: 768px) {
    .product-gallery.gallery-3 img[src*="karton6"] {
      position: relative !important;
      top: -5px !important;
    }
  }


  @media (max-width: 768px) {
    .numune-modal-overlay {
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }


  .product-gallery img {
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .product-gallery img:hover {
    transform: scale(1.02);
  }


  .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .lightbox-overlay.active {
    display: flex;
    opacity: 1;
  }

  .lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('img/arkaplan.jpeg') no-repeat center center;
    background-position: left top !important;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
  }

  .lightbox-nav.prev {
    left: 20px;
  }

  .lightbox-nav.next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10001;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: 10px;
      right: 10px;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }





  @media (max-width: 768px) {}


  @media (max-width: 768px) {
    .product-gallery.gallery-3 img[src*="karton7"] {
      position: relative !important;
      top: 15px !important;
    }
  }


  @media (max-width: 768px) {
    .product-gallery.gallery-3 img[src*="karton6"] {
      position: relative !important;
      top: -5px !important;
    }
  }


  @media (max-width: 768px) {
    .numune-modal-overlay {
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
    }

    .numune-modal {
      max-height: 90vh !important;
      overflow-y: auto !important;
    }
  }


  .product-gallery img {
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .product-gallery img:hover {
    transform: scale(1.02);
  }


  .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .lightbox-overlay.active {
    display: flex;
    opacity: 1;
  }

  .lightbox-container {
    position: relative;
    max-width: 95% !important;
    max-height: 95% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/arkaplan.jpeg') !important;
    background-repeat: no-repeat !important;
    background-position: left top !important;
    background-size: cover !important;
    background-color: transparent !important;
    padding: 20px !important;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }


  .lightbox-container.pecete-lightbox {
    background-image: none !important;
    background-color: #1a1a1a !important;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
  }

  .lightbox-nav.prev {
    left: 20px;
  }

  .lightbox-nav.next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10001;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: 10px;
      right: 10px;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }





  @media (max-width: 768px) {}


  @media (max-width: 768px) {
    .product-gallery.gallery-3 img[src*="karton7"] {
      position: relative !important;
      top: 15px !important;
    }
  }


  @media (max-width: 768px) {
    .product-gallery.gallery-3 img[src*="karton6"] {
      position: relative !important;
      top: -5px !important;
    }
  }


  @media (max-width: 768px) {
    .numune-modal-overlay {
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
    }

    .numune-modal {
      max-height: 90vh !important;
      overflow-y: auto !important;
      margin: 20px auto !important;
      position: relative !important;
    }
  }




  .product-gallery img:hover {
    transform: scale(1.02);
  }


  .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .lightbox-overlay.active {
    display: flex;
    opacity: 1;
  }

  .lightbox-container {
    position: relative;
    max-width: 95% !important;
    max-height: 95% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/arkaplan.jpeg') !important;
    background-repeat: no-repeat !important;
    background-position: left top !important;
    background-size: cover !important;
    background-color: transparent !important;
    padding: 20px !important;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }


  .lightbox-container.pecete-lightbox {
    background-image: none !important;
    background-color: #1a1a1a !important;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
  }

  .lightbox-nav.prev {
    left: 20px;
  }

  .lightbox-nav.next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10001;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: 10px;
      right: 10px;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }





  @media (max-width: 768px) {}


  @media (max-width: 768px) {
    .product-gallery.gallery-3 img[src*="karton7"] {
      position: relative !important;
      top: 15px !important;
    }
  }


  @media (max-width: 768px) {
    .product-gallery.gallery-3 img[src*="karton6"] {
      position: relative !important;
      top: -5px !important;
    }
  }


  @media (max-width: 768px) {
    .numune-modal-overlay {
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
    }

    .numune-modal {
      max-height: 90vh !important;
      overflow-y: auto !important;
      margin: 20px auto !important;
      position: relative !important;
    }
  }




  .product-gallery img:hover {
    transform: scale(1.02);
  }


  .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .lightbox-overlay.active {
    display: flex;
    opacity: 1;
  }

  .lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('img/arkaplan.jpeg') no-repeat center center;
    background-position: left top !important;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
  }

  .lightbox-nav.prev {
    left: 20px;
  }

  .lightbox-nav.next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10001;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: 10px;
      right: 10px;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }





  @media (max-width: 768px) {}


  @media (max-width: 768px) {
    .product-gallery.gallery-3 img[src*="karton7"] {
      position: relative !important;
      top: 15px !important;
    }
  }


  @media (max-width: 768px) {
    .product-gallery.gallery-3 img[src*="karton6"] {
      position: relative !important;
      top: -5px !important;
    }
  }


  @media (max-width: 768px) {
    .numune-modal-overlay {
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
    }

    .numune-modal {
      max-height: 90vh !important;
      overflow-y: auto !important;
      margin: 20px auto !important;
      position: relative !important;
    }
  }


  .product-gallery.gallery-3 img[src*="cakmak3"] {
    height: 400px !important;
    transform: scale(1.05) !important;
    margin-top: 0 !important;
  }


  @media (max-width: 768px) {}

  .lightbox-overlay.active {
    display: flex;
    opacity: 1;
  }

  .lightbox-container {
    position: relative;
    max-width: 95% !important;
    max-height: 95% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/arkaplan.jpeg') !important;
    background-repeat: no-repeat !important;
    background-position: left top !important;
    background-size: cover !important;
    background-color: transparent !important;
    padding: 20px !important;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }


  .lightbox-container.pecete-lightbox {
    background-image: none !important;
    background-color: #1a1a1a !important;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
  }

  .lightbox-nav.prev {
    left: 20px;
  }

  .lightbox-nav.next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10001;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: 10px;
      right: 10px;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }





  @media (max-width: 768px) {}


  @media (max-width: 768px) {
    .product-gallery.gallery-3 img[src*="karton7"] {
      position: relative !important;
      top: 15px !important;
    }
  }


  @media (max-width: 768px) {
    .product-gallery.gallery-3 img[src*="karton6"] {
      position: relative !important;
      top: -5px !important;
    }
  }


  @media (max-width: 768px) {
    .numune-modal-overlay {
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
    }

    .numune-modal {
      max-height: 90vh !important;
      overflow-y: auto !important;
      margin: 20px auto !important;
      position: relative !important;
    }
  }


  .product-gallery.gallery-3 img[src*="cakmak3"] {
    height: 400px !important;
    transform: scale(1.05) !important;
    margin-top: 0 !important;
  }


  @media (max-width: 768px) {}

  .lightbox-overlay.active {
    display: flex;
    opacity: 1;
  }

  .lightbox-container {
    position: relative;
    max-width: 95% !important;
    max-height: 95% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/arkaplan.jpeg') !important;
    background-repeat: no-repeat !important;
    background-position: left top !important;
    background-size: cover !important;
    background-color: transparent !important;
    padding: 20px !important;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }


  .lightbox-container.pecete-lightbox {
    background-image: none !important;
    background-color: #1a1a1a !important;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
  }

  .lightbox-nav.prev {
    left: 20px;
  }

  .lightbox-nav.next {
    right: 20px;
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    z-index: 10001;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }

    .lightbox-nav.prev {
      left: 10px;
    }

    .lightbox-nav.next {
      right: 10px;
    }

    .lightbox-close {
      width: 40px;
      height: 40px;
      font-size: 24px;
      top: 10px;
      right: 10px;
    }

    .lightbox-image {
      max-height: 90vh;
    }
  }





  @media (max-width: 768px) {}


  @media (max-width: 768px) {
    .product-gallery.gallery-3 img[src*="karton7"] {
      position: relative !important;
      top: 15px !important;
    }
  }


  @media (max-width: 768px) {
    .product-gallery.gallery-3 img[src*="karton6"] {
      position: relative !important;
      top: -5px !important;
    }
  }


  @media (max-width: 768px) {
    .numune-modal-overlay {
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
    }

    .numune-modal {
      max-height: 90vh !important;
      overflow-y: auto !important;
      margin: 20px auto !important;
      position: relative !important;
    }
  }


  .product-gallery.gallery-3 img[src*="cakmak3"] {
    height: 400px !important;
    transform: scale(1.05) !important;
    margin-top: 0 !important;
  }


  @media (max-width: 768px) {

    .product-gallery.gallery-3 img[src*="cakmak1"],
    .product-gallery.gallery-3 img[src*="cakmak2"] {
      height: 450px !important;
      transform: scale(1.1) !important;
    }

    .product-gallery.gallery-3 img[src*="cakmak2"] {
      position: relative !important;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .lightbox-overlay.active {
      display: flex;
      opacity: 1;
    }

    .lightbox-container {
      position: relative;
      max-width: 90%;
      max-height: 90%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: url('img/arkaplan.jpeg') no-repeat center center;
      background-position: left top !important;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .lightbox-image {
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 4px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 30px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
      transition: all 0.3s ease;
      z-index: 10001;
    }

    .lightbox-close:hover {
      background: rgba(255, 255, 255, 1);
      transform: scale(1.1);
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.9);
      border: none;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #000;
      transition: all 0.3s ease;
      z-index: 10001;
    }

    .lightbox-nav:hover {
      background: rgba(255, 255, 255, 1);
      transform: translateY(-50%) scale(1.1);
    }

    .lightbox-nav.prev {
      left: 20px;
    }

    .lightbox-nav.next {
      right: 20px;
    }

    .lightbox-counter {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 10px 20px;
      border-radius: 20px;
      font-size: 16px;
      z-index: 10001;
    }

    @media (max-width: 768px) {
      .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
      }

      .lightbox-nav.prev {
        left: 10px;
      }

      .lightbox-nav.next {
        right: 10px;
      }

      .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 10px;
        right: 10px;
      }

      .lightbox-image {
        max-height: 90vh;
      }
    }





    @media (max-width: 768px) {}


    @media (max-width: 768px) {
      .product-gallery.gallery-3 img[src*="karton7"] {
        position: relative !important;
        top: 15px !important;
      }
    }


    @media (max-width: 768px) {
      .product-gallery.gallery-3 img[src*="karton6"] {
        position: relative !important;
        top: -5px !important;
      }
    }


    @media (max-width: 768px) {
      .numune-modal-overlay {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
      }

      .numune-modal {
        max-height: 90vh !important;
        overflow-y: auto !important;
        margin: 20px auto !important;
        position: relative !important;
      }
    }


    .product-gallery.gallery-3 img[src*="cakmak3"] {
      height: 400px !important;
      transform: scale(1.05) !important;
      margin-top: 0 !important;
    }


    @media (max-width: 768px) {

      .product-gallery.gallery-3 img[src*="cakmak1"],
      .product-gallery.gallery-3 img[src*="cakmak2"] {
        height: 450px !important;
        transform: scale(1.1) !important;
      }

      .product-gallery.gallery-3 img[src*="cakmak2"] {
        position: relative !important;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .lightbox-overlay.active {
        display: flex;
        opacity: 1;
      }

      .lightbox-container {
        position: relative;
        max-width: 90%;
        max-height: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: url('img/arkaplan.jpeg') no-repeat center center;
        background-position: left top !important;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
      }

      .lightbox-image {
        max-width: 100%;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 4px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      }

      .lightbox-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 30px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        transition: all 0.3s ease;
        z-index: 10001;
      }

      .lightbox-close:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.1);
      }

      .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        transition: all 0.3s ease;
        z-index: 10001;
      }

      .lightbox-nav:hover {
        background: rgba(255, 255, 255, 1);
        transform: translateY(-50%) scale(1.1);
      }

      .lightbox-nav.prev {
        left: 20px;
      }

      .lightbox-nav.next {
        right: 20px;
      }

      .lightbox-counter {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 10px 20px;
        border-radius: 20px;
        font-size: 16px;
        z-index: 10001;
      }

      @media (max-width: 768px) {
        .lightbox-nav {
          width: 50px;
          height: 50px;
          font-size: 20px;
        }

        .lightbox-nav.prev {
          left: 10px;
        }

        .lightbox-nav.next {
          right: 10px;
        }

        .lightbox-close {
          width: 40px;
          height: 40px;
          font-size: 24px;
          top: 10px;
          right: 10px;
        }

        .lightbox-image {
          max-height: 90vh;
        }
      }





      @media (max-width: 768px) {}


      @media (max-width: 768px) {
        .product-gallery.gallery-3 img[src*="karton7"] {
          position: relative !important;
          top: 15px !important;
        }
      }


      @media (max-width: 768px) {
        .product-gallery.gallery-3 img[src*="karton6"] {
          position: relative !important;
          top: -5px !important;
        }
      }


      @media (max-width: 768px) {
        .numune-modal-overlay {
          overflow-y: auto !important;
          -webkit-overflow-scrolling: touch !important;
        }

        .numune-modal {
          max-height: 90vh !important;
          overflow-y: auto !important;
          margin: 20px auto !important;
          position: relative !important;
        }
      }





      @media (max-width: 768px) {}


      @media (max-width: 768px) {
        .product-gallery.gallery-3 img[src*="karton7"] {
          position: relative !important;
          top: 15px !important;
        }
      }


      @media (max-width: 768px) {
        .product-gallery.gallery-3 img[src*="karton6"] {
          position: relative !important;
          top: -5px !important;
        }
      }


      @media (max-width: 768px) {
        .numune-modal-overlay {
          overflow-y: auto !important;
          -webkit-overflow-scrolling: touch !important;
        }

        .numune-modal {
          max-height: 90vh !important;
          overflow-y: auto !important;
        }

        .lightbox-image {
          max-width: 100%;
          max-height: 90vh;
          object-fit: contain;
          border-radius: 4px;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .lightbox-close {
          position: absolute;
          top: 20px;
          right: 20px;
          background: rgba(255, 255, 255, 0.9);
          border: none;
          width: 50px;
          height: 50px;
          border-radius: 50%;
          font-size: 30px;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #000;
          transition: all 0.3s ease;
          z-index: 10001;
        }

        .lightbox-close:hover {
          background: rgba(255, 255, 255, 1);
          transform: scale(1.1);
        }

        .lightbox-nav {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background: rgba(255, 255, 255, 0.9);
          border: none;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          font-size: 24px;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #000;
          transition: all 0.3s ease;
          z-index: 10001;
        }

        .lightbox-nav:hover {
          background: rgba(255, 255, 255, 1);
          transform: translateY(-50%) scale(1.1);
        }

        .lightbox-nav.prev {
          left: 20px;
        }

        .lightbox-nav.next {
          right: 20px;
        }

        .lightbox-counter {
          position: absolute;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          background: rgba(0, 0, 0, 0.7);
          color: white;
          padding: 10px 20px;
          border-radius: 20px;
          font-size: 16px;
          z-index: 10001;
        }

        @media (max-width: 768px) {
          .lightbox-nav {
            width: 50px;
            height: 50px;
            font-size: 20px;
          }

          .lightbox-nav.prev {
            left: 10px;
          }

          .lightbox-nav.next {
            right: 10px;
          }

          .lightbox-close {
            width: 40px;
            height: 40px;
            font-size: 24px;
            top: 10px;
            right: 10px;
          }

          .lightbox-image {
            max-height: 90vh;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }


        .info-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 15px;
          cursor: pointer;
        }

        .info-icon svg {
          width: 30px;
          height: 30px;
          fill: #333;

          transition: fill 0.3s ease;
        }

        .lightbox-nav {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background: rgba(255, 255, 255, 0.9);
          border: none;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          font-size: 24px;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #000;
          transition: all 0.3s ease;
          z-index: 10001;
        }

        .lightbox-close:hover {
          background: rgba(255, 255, 255, 1);
          transform: scale(1.1);
        }

        .lightbox-nav {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background: rgba(255, 255, 255, 0.9);
          border: none;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          font-size: 24px;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #000;
          transition: all 0.3s ease;
          z-index: 10001;
        }

        .lightbox-nav:hover {
          background: rgba(255, 255, 255, 1);
          transform: translateY(-50%) scale(1.1);
        }

        .lightbox-nav.prev {
          left: 20px;
        }

        .lightbox-nav.next {
          right: 20px;
        }

        .lightbox-counter {
          position: absolute;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          background: rgba(0, 0, 0, 0.7);
          color: white;
          padding: 10px 20px;
          border-radius: 20px;
          font-size: 16px;
          z-index: 10001;
        }

        @media (max-width: 768px) {
          .lightbox-nav {
            width: 50px;
            height: 50px;
            font-size: 20px;
          }

          .lightbox-nav.prev {
            left: 10px;
          }

          .lightbox-nav.next {
            right: 10px;
          }

          .lightbox-close {
            width: 40px;
            height: 40px;
            font-size: 24px;
            top: 10px;
            right: 10px;
          }

          .lightbox-image {
            max-height: 90vh;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }


        .info-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 15px;
          cursor: pointer;
        }

        .info-icon svg {
          width: 30px;
          height: 30px;
          fill: #333;

          transition: fill 0.3s ease;
        }

        .lightbox-nav {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background: rgba(255, 255, 255, 0.9);
          border: none;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          font-size: 24px;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #000;
          transition: all 0.3s ease;
          z-index: 10001;
        }

        .lightbox-close:hover {
          background: rgba(255, 255, 255, 1);
          transform: scale(1.1);
        }

        .lightbox-nav {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background: rgba(255, 255, 255, 0.9);
          border: none;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          font-size: 24px;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #000;
          transition: all 0.3s ease;
          z-index: 10001;
        }

        .lightbox-nav:hover {
          background: rgba(255, 255, 255, 1);
          transform: translateY(-50%) scale(1.1);
        }

        .lightbox-nav.prev {
          left: 20px;
        }

        .lightbox-nav.next {
          right: 20px;
        }

        .lightbox-counter {
          position: absolute;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          background: rgba(0, 0, 0, 0.7);
          color: white;
          padding: 10px 20px;
          border-radius: 20px;
          font-size: 16px;
          z-index: 10001;
        }

        @media (max-width: 768px) {
          .lightbox-nav {
            width: 50px;
            height: 50px;
            font-size: 20px;
          }

          .lightbox-nav.prev {
            left: 10px;
          }

          .lightbox-nav.next {
            right: 10px;
          }

          .lightbox-close {
            width: 40px;
            height: 40px;
            font-size: 24px;
            top: 10px;
            right: 10px;
          }

          .lightbox-image {
            max-height: 90vh;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }


        .info-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 15px;
          cursor: pointer;
        }

        .info-icon svg {
          width: 30px;
          height: 30px;
          fill: #333;

          transition: fill 0.3s ease;
        }

        .info-icon:hover svg {
          fill: #000;

        }


        .product-gallery.gallery-3 .lightbox-nav {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background: rgba(255, 255, 255, 0.9);
          border: none;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          font-size: 24px;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #000;
          transition: all 0.3s ease;
          z-index: 10001;
        }

        .lightbox-nav:hover {
          background: rgba(255, 255, 255, 1);
          transform: translateY(-50%) scale(1.1);
        }

        .lightbox-nav.prev {
          left: 20px;
        }

        .lightbox-nav.next {
          right: 20px;
        }

        .lightbox-counter {
          position: absolute;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          background: rgba(0, 0, 0, 0.7);
          color: white;
          padding: 10px 20px;
          border-radius: 20px;
          font-size: 16px;
          z-index: 10001;
        }

        @media (max-width: 768px) {
          .lightbox-nav {
            width: 50px;
            height: 50px;
            font-size: 20px;
          }

          .lightbox-nav.prev {
            left: 10px;
          }

          .lightbox-nav.next {
            right: 10px;
          }

          .lightbox-close {
            width: 40px;
            height: 40px;
            font-size: 24px;
            top: 10px;
            right: 10px;
          }

          .lightbox-image {
            max-height: 90vh;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }


        .info-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 15px;
          cursor: pointer;
        }

        .info-icon svg {
          width: 30px;
          height: 30px;
          fill: #333;

          transition: fill 0.3s ease;
        }

        .info-icon:hover svg {
          fill: #000;

        }


        .product-gallery.gallery-3 .lightbox-counter {
          position: absolute;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          background: rgba(0, 0, 0, 0.7);
          color: white;
          padding: 10px 20px;
          border-radius: 20px;
          font-size: 16px;
          z-index: 10001;
        }

        @media (max-width: 768px) {
          .lightbox-nav {
            width: 50px;
            height: 50px;
            font-size: 20px;
          }

          .lightbox-nav.prev {
            left: 10px;
          }

          .lightbox-nav.next {
            right: 10px;
          }

          .lightbox-close {
            width: 40px;
            height: 40px;
            font-size: 24px;
            top: 10px;
            right: 10px;
          }

          .lightbox-image {
            max-height: 90vh;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }


        .info-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 15px;
          cursor: pointer;
        }

        .info-icon svg {
          width: 30px;
          height: 30px;
          fill: #333;

          transition: fill 0.3s ease;
        }

        .info-icon:hover svg {
          fill: #000;

        }


        .product-gallery.gallery-3 .karton-bardaklar-gallery img {
          height: 500px !important;
        }

        @media (max-width: 768px) {
          .lightbox-nav {
            width: 50px;
            height: 50px;
            font-size: 20px;
          }

          .lightbox-nav.prev {
            left: 10px;
          }

          .lightbox-nav.next {
            right: 10px;
          }

          .lightbox-close {
            width: 40px;
            height: 40px;
            font-size: 24px;
            top: 10px;
            right: 10px;
          }

          .lightbox-image {
            max-height: 90vh;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }


        .info-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 15px;
          cursor: pointer;
        }

        .info-icon svg {
          width: 30px;
          height: 30px;
          fill: #333;

          transition: fill 0.3s ease;
        }

        .info-icon:hover svg {
          fill: #000;

        }


        .product-gallery.gallery-3 @media (max-width: 768px) {
          .product-gallery.gallery-4 {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 20px;
          }

          .product-gallery.gallery-4 img {
            height: 350px;
          }


          .karton-bardaklar-gallery img {
            height: 500px !important;
          }

          @media (max-width: 768px) {
            .lightbox-nav {
              width: 50px;
              height: 50px;
              font-size: 20px;
            }

            .lightbox-nav.prev {
              left: 10px;
            }

            .lightbox-nav.next {
              right: 10px;
            }

            .lightbox-close {
              width: 40px;
              height: 40px;
              font-size: 24px;
              top: 10px;
              right: 10px;
            }

            .lightbox-image {
              max-height: 90vh;
            }
          }





          @media (max-width: 768px) {}


          @media (max-width: 768px) {
            .product-gallery.gallery-3 img[src*="karton7"] {
              position: relative !important;
              top: 15px !important;
            }
          }


          @media (max-width: 768px) {
            .product-gallery.gallery-3 img[src*="karton6"] {
              position: relative !important;
              top: -5px !important;
            }
          }


          @media (max-width: 768px) {
            .numune-modal-overlay {
              overflow-y: auto !important;
              -webkit-overflow-scrolling: touch !important;
            }

            .numune-modal {
              max-height: 90vh !important;
              overflow-y: auto !important;
              margin: 20px auto !important;
              position: relative !important;
            }
          }





          @media (max-width: 768px) {}


          @media (max-width: 768px) {
            .product-gallery.gallery-3 img[src*="karton7"] {
              position: relative !important;
              top: 15px !important;
            }
          }


          @media (max-width: 768px) {
            .product-gallery.gallery-3 img[src*="karton6"] {
              position: relative !important;
              top: -5px !important;
            }
          }


          @media (max-width: 768px) {
            .numune-modal-overlay {
              overflow-y: auto !important;
              -webkit-overflow-scrolling: touch !important;
            }

            .numune-modal {
              max-height: 90vh !important;
              overflow-y: auto !important;
              margin: 20px auto !important;
              position: relative !important;
            }
          }


          .info-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            cursor: pointer;
          }

          .info-icon svg {
            width: 30px;
            height: 30px;
            fill: #333;

            transition: fill 0.3s ease;
          }

          .info-icon:hover svg {
            fill: #000;

          }


          .product-gallery.gallery-3 .karton-bardaklar-gallery img {
            height: 500px !important;
            object-fit: contain;
          }


          .karton-bardaklar-gallery .gallery-row-separator-thick {
            height: 1px !important;
            background-color: #ddd !important;
            margin: 20px 0 !important;
            left: 10px;
          }

          .lightbox-nav.next {
            right: 10px;
          }

          .lightbox-close {
            width: 40px;
            height: 40px;
            font-size: 24px;
            top: 10px;
            right: 10px;
          }

          .lightbox-image {
            max-height: 90vh;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }


        .info-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 15px;
          cursor: pointer;
        }

        .info-icon svg {
          width: 30px;
          height: 30px;
          fill: #333;

          transition: fill 0.3s ease;
        }

        .info-icon:hover svg {
          fill: #000;

        }


        .product-gallery.gallery-3 .product-gallery.gallery-4 {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 40px 40px;
          max-width: 1200px;
          margin: 0 auto;
          padding: 40px;
        }

        .product-gallery.gallery-4 img {
          width: 100%;
          height: 450px;
          object-fit: contain;
          border-radius: 8px;
          transition: transform 0.3s ease;
        }

        .product-gallery.gallery-4 img:hover {
          transform: scale(1.05);
        }

        .product-gallery.gallery-4 .gallery-row-separator {
          grid-column: 1 / -1;
          height: 1px;
          background-color: #ddd;
          margin: 0;
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-4 {
            grid-template-columns: 1fr;
            gap: 20px;
            padding: 20px;
          }

          .product-gallery.gallery-4 img {
            height: 350px;
          }
        }


        .karton-bardaklar-gallery img {
          height: 500px !important;
          object-fit: contain;
        }


        .karton-bardaklar-gallery .gallery-row-separator-thick {
          height: 1px !important;
          background-color: #ddd !important;
          margin: 20px 0 !important;
          left: 10px;
        }

        .lightbox-nav.next {
          right: 10px;
        }

        .lightbox-close {
          width: 40px;
          height: 40px;
          font-size: 24px;
          top: 10px;
          right: 10px;
        }

        .lightbox-image {
          max-height: 90vh;
        }
      }





      @media (max-width: 768px) {}


      @media (max-width: 768px) {
        .product-gallery.gallery-3 img[src*="karton7"] {
          position: relative !important;
          top: 15px !important;
        }
      }


      @media (max-width: 768px) {
        .product-gallery.gallery-3 img[src*="karton6"] {
          position: relative !important;
          top: -5px !important;
        }
      }


      @media (max-width: 768px) {
        .numune-modal-overlay {
          overflow-y: auto !important;
          -webkit-overflow-scrolling: touch !important;
        }

        .numune-modal {
          max-height: 90vh !important;
          overflow-y: auto !important;
          margin: 20px auto !important;
          position: relative !important;
        }
      }





      @media (max-width: 768px) {}


      @media (max-width: 768px) {
        .product-gallery.gallery-3 img[src*="karton7"] {
          position: relative !important;
          top: 15px !important;
        }
      }


      @media (max-width: 768px) {
        .product-gallery.gallery-3 img[src*="karton6"] {
          position: relative !important;
          top: -5px !important;
        }
      }


      @media (max-width: 768px) {
        .numune-modal-overlay {
          overflow-y: auto !important;
          -webkit-overflow-scrolling: touch !important;
        }

        .numune-modal {
          max-height: 90vh !important;
          overflow-y: auto !important;
          margin: 20px auto !important;
          position: relative !important;
        }
      }


      .info-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        cursor: pointer;
      }

      .info-icon svg {
        width: 30px;
        height: 30px;
        fill: #333;

        transition: fill 0.3s ease;
      }

      .info-icon:hover svg {
        fill: #000;

      }


      .product-gallery.gallery-3 .karton-bardaklar-gallery img {
        height: 500px !important;
        object-fit: contain;
      }


      .karton-bardaklar-gallery .gallery-row-separator-thick {
        height: 1px !important;
        background-color: #ddd !important;
        margin: 20px 0 !important;
      }


      @media (max-width: 768px) {}





      @media (max-width: 768px) {}


      @media (max-width: 768px) {
        .product-gallery.gallery-3 img[src*="karton7"] {
          position: relative !important;
          top: 15px !important;
        }
      }


      @media (max-width: 768px) {
        .product-gallery.gallery-3 img[src*="karton6"] {
          position: relative !important;
          top: -5px !important;
        }
      }


      @media (max-width: 768px) {
        .numune-modal-overlay {
          overflow-y: auto !important;
          -webkit-overflow-scrolling: touch !important;
        }

        .numune-modal {
          max-height: 90vh !important;
          overflow-y: auto !important;
          margin: 20px auto !important;
          position: relative !important;
        }
      }





      @media (max-width: 768px) {}


      @media (max-width: 768px) {
        .product-gallery.gallery-3 img[src*="karton7"] {
          position: relative !important;
          top: 15px !important;
        }
      }


      @media (max-width: 768px) {
        .product-gallery.gallery-3 img[src*="karton6"] {
          position: relative !important;
          top: -5px !important;
        }
      }


      @media (max-width: 768px) {
        .numune-modal-overlay {
          overflow-y: auto !important;
          -webkit-overflow-scrolling: touch !important;
        }

        .numune-modal {
          max-height: 90vh !important;
          overflow-y: auto !important;
          margin: 20px auto !important;
          position: relative !important;
        }
      }


      .info-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        cursor: pointer;
      }

      .info-icon svg {
        width: 30px;
        height: 30px;
        fill: #333;

        transition: fill 0.3s ease;
      }

      .info-icon:hover svg {
        fill: #000;

      }


      .product-gallery.gallery-3 .product-gallery.gallery-4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 40px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px;
      }

      .product-gallery.gallery-4 img {
        width: 100%;
        height: 450px;
        object-fit: contain;
        border-radius: 8px;
        transition: transform 0.3s ease;
      }

      .product-gallery.gallery-4 img:hover {
        transform: scale(1.05);
      }

      .product-gallery.gallery-4 .gallery-row-separator {
        grid-column: 1 / -1;
        height: 1px;
        background-color: #ddd;
        margin: 0;
      }


      @media (max-width: 768px) {
        .product-gallery.gallery-4 {
          grid-template-columns: 1fr;
          gap: 20px;
          padding: 20px;
        }

        .product-gallery.gallery-4 img {
          height: 350px;
        }
      }


      .karton-bardaklar-gallery img {
        height: 500px !important;
        object-fit: contain;
      }


      .karton-bardaklar-gallery .gallery-row-separator-thick {


        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }


        .info-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 15px;
          cursor: pointer;
        }

        .info-icon svg {
          width: 30px;
          height: 30px;
          fill: #333;

          transition: fill 0.3s ease;
        }

        .info-icon:hover svg {
          fill: #000;

        }


        .product-gallery.gallery-3 .karton-bardaklar-gallery img {
          height: 500px !important;
          object-fit: contain;
        }


        .karton-bardaklar-gallery .gallery-row-separator-thick {
          height: 1px !important;
          background-color: #ddd !important;
          margin: 20px 0 !important;
        }


        @media (max-width: 768px) {


          .product-gallery.gallery-4 img {
            height: 350px;
          }
        }


        .karton-bardaklar-gallery img {
          height: 500px !important;
          object-fit: contain;
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }


        .info-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 15px;
          cursor: pointer;
        }

        .info-icon svg {
          width: 30px;
          height: 30px;
          fill: #333;

          transition: fill 0.3s ease;
        }

        .info-icon:hover svg {
          fill: #000;

        }


        .product-gallery.gallery-3 .karton-bardaklar-gallery img {
          height: 500px !important;
          object-fit: contain;
        }


        .karton-bardaklar-gallery .gallery-row-separator-thick {
          height: 1px !important;
          background-color: #ddd !important;
          margin: 20px 0 !important;
        }


        @media (max-width: 768px) {}


        .product-gallery.gallery-3 img[src*="ofset"] {
          max-height: 400px !important;
        }


        .karton-bardaklar-gallery img {
          height: 500px !important;
          object-fit: contain;
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }





        @media (max-width: 768px) {}


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton7"] {
            position: relative !important;
            top: 15px !important;
          }
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="karton6"] {
            position: relative !important;
            top: -5px !important;
          }
        }


        @media (max-width: 768px) {
          .numune-modal-overlay {
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
          }

          .numune-modal {
            max-height: 90vh !important;
            overflow-y: auto !important;
            margin: 20px auto !important;
            position: relative !important;
          }
        }


        .info-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 15px;
          cursor: pointer;
        }

        .info-icon svg {
          width: 30px;
          height: 30px;
          fill: #333;

          transition: fill 0.3s ease;
        }

        .info-icon:hover svg {
          fill: #000;

        }


        .product-gallery.gallery-3 .karton-bardaklar-gallery img {
          height: 500px !important;
          object-fit: contain;
        }


        .karton-bardaklar-gallery .gallery-row-separator-thick {
          height: 1px !important;
          background-color: #ddd !important;
          margin: 20px 0 !important;
        }


        @media (max-width: 768px) {
          .product-gallery.gallery-3 img[src*="ofset6"] {
            height: 500px !important;
            max-height: 500px !important;
            transform: scale(1.1) !important;
            position: relative !important;
            top: -30px !important;
            margin-bottom: -30px !important;
          }
        }


        .product-gallery.gallery-3 img[src*="ofset"] {
          max-height: 400px !important;
          height: auto !important;
          width: auto !important;
          object-fit: contain !important;
        }


        @media (min-width: 769px) {
          .product-gallery.cakmak-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 80px !important;
            justify-items: end;
            max-width: 1400px;
            margin-left: auto;
            margin-right: 0;
            padding: 20px 40px 20px 20px;
          }

          .product-gallery.cakmak-gallery img,
          .product-gallery.gallery-2.cakmak-gallery img {
            height: 750px !important;
            max-width: 650px !important;
            width: auto !important;
            object-fit: contain;
            margin-top: -20px;
          }


          .product-gallery.cakmak-gallery img[src*="cakmak1"],
          .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak1"] {
            height: 800px !important;
            min-height: 800px !important;
            max-height: 800px !important;
            max-width: 700px !important;
            transform: translateY(-120px) !important;
          }

          .product-gallery.cakmak-gallery img[src*="cakmak2"],
          .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak2"] {
            height: 800px !important;
            min-height: 800px !important;
            max-height: 800px !important;
            max-width: 700px !important;
            transform: translateY(-120px) !important;
          }

          .product-gallery.cakmak-gallery img[src*="cakmak3"],
          .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak3"] {
            height: 800px !important;
            min-height: 800px !important;
            max-height: 800px !important;
            max-width: 700px !important;
            transform: translateY(-120px) !important;
          }

          .product-gallery.cakmak-gallery img[src*="cakmak4"],
          .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak4"] {
            height: 800px !important;
            min-height: 800px !important;
            max-height: 800px !important;
            max-width: 700px !important;
            transform: translateY(-120px) !important;
          }


          .product-gallery.cakmak-gallery img[src*="cakmak1"]:hover,
          .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak1"]:hover {
            transform: translateY(-120px) scale(1.05) !important;
          }

          .product-gallery.cakmak-gallery img[src*="cakmak2"]:hover,
          .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak2"]:hover {
            transform: translateY(-120px) scale(1.05) !important;
          }

          .product-gallery.cakmak-gallery img[src*="cakmak3"]:hover,
          .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak3"]:hover {
            transform: translateY(-120px) scale(1.05) !important;
          }

          .product-gallery.cakmak-gallery img[src*="cakmak4"]:hover,
          .product-gallery.gallery-2.cakmak-gallery img[src*="cakmak4"]:hover {
            transform: translateY(-120px) scale(1.05) !important;
          }


          .product-gallery.cakmak-gallery img[src*="cakmak2"] {
            margin-right: 50px;
          }

          .product-gallery.cakmak-gallery img[src*="cakmak4"] {
            margin-left: 50px;
          }

          .product-gallery.cakmak-gallery .gallery-row-separator {
            grid-column: 1 / -1;
            width: 100%;
            height: 1px;
            background-color: rgba(0, 0, 0, 0.1);
            margin: -80px 0 !important;
            position: relative !important;
            top: -40px !important;
          }
        }
      }


      .lightbox-overlay .lightbox-image,
      .lightbox-container .lightbox-image {
        position: static !important;
        top: auto !important;
        left: auto !important;
        margin: 0 !important;
        transform: none !important;
        height: auto !important;
        max-height: 90vh !important;
      }


      .lightbox-container.bez-canta-lightbox {
        max-width: 100% !important;
        max-height: 100% !important;
        padding: 15px !important;
        background-size: cover !important;
        background-position: left top !important;
        background-repeat: no-repeat !important;
        box-sizing: border-box !important;
      }

      .lightbox-container.bez-canta-lightbox .lightbox-image {
        max-height: 90vh !important;
        height: auto !important;
        width: auto !important;
        object-fit: contain !important;
      }


      @media (max-width: 768px) {
        .lightbox-container.bez-canta-lightbox {
          max-width: 90% !important;
          max-height: 90% !important;
          padding: 5px !important;
          box-sizing: border-box !important;
          margin: 0 auto !important;
          width: 90% !important;
          background-size: cover !important;
          background-position: left top !important;
          background-repeat: no-repeat !important;
        }

        .lightbox-container.bez-canta-lightbox .lightbox-image {
          max-width: calc(100% - 10px) !important;
          max-height: 80vh !important;
          width: 100% !important;
          height: auto !important;
          object-fit: contain !important;
          box-sizing: border-box !important;
        }
      }


      .lightbox-container.yaka-ipi-lightbox {
        max-width: 100% !important;
        max-height: 100% !important;
        padding: 15px !important;
        background-size: contain !important;
        background-position: left top !important;
        box-sizing: border-box !important;
      }


      .lightbox-container.yaka-ipi-lightbox .lightbox-image {
        max-width: 100% !important;
        max-height: 90vh !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
      }


      @media (max-width: 768px) {
        .lightbox-container.yaka-ipi-lightbox {
          max-width: 90% !important;
          max-height: 90% !important;
          padding: 5px !important;
          box-sizing: border-box !important;
          margin: 0 auto !important;
          width: 90% !important;
          background-size: cover !important;
          background-position: left top !important;
          background-repeat: no-repeat !important;
        }


        .lightbox-container.yaka-ipi-lightbox .lightbox-image {
          max-width: calc(100% - 10px) !important;
          max-height: 80vh !important;
          width: 100% !important;
          height: auto !important;
          object-fit: contain !important;
          box-sizing: border-box !important;
        }
      }

      /* Kraft çantalar lightbox stil kuralları */
      .lightbox-container.kraft-lightbox {
        max-width: 95% !important;
        max-height: 95% !important;
        padding: 10px !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
      }

      .lightbox-container.kraft-lightbox .lightbox-image {
        max-width: 100% !important;
        max-height: 90vh !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
      }

      @media (max-width: 768px) {
        .lightbox-container.kraft-lightbox {
          max-width: 90% !important;
          max-height: 90% !important;
          padding: 5px !important;
        }

        .lightbox-container.kraft-lightbox .lightbox-image {
          max-width: calc(100% - 10px) !important;
          max-height: 80vh !important;
          width: 100% !important;
          height: auto !important;
          object-fit: contain !important;
        }
      }

      /* Mobil görünümde header-right elemanlarını sağa kaydır */
      @media (max-width: 768px) {
        .header-right {
          margin-right: 30px !important;
        }
      }

      /* ===== LAPTOP SCREEN OPTIMIZATIONS ===== */
      /* For screens between tablet and full desktop (769px - 1440px) */

      @media (min-width: 769px) and (max-width: 1440px) {

        /* Increase base container width for better use of screen space */
        .rnler .div {
          max-width: 95%;
          padding: 0 30px;
        }

        /* Scale up fonts slightly for better readability */
        body {
          font-size: 17px;
        }

        .nav-link {
          font-size: 21px;
        }

        .product-section h2 {
          font-size: 24px;
        }

        /* Optimize carousel for laptop screens */
        .carousel-container {
          width: 100%;
          max-width: 1100px;
          height: 780px;
        }

        /* Better logo sizing */
        .logo-icon {
          width: 200px;
        }

        /* Improve header spacing */
        .header {
          padding: 36px 0;
        }

        /* Better button sizing */
        .numune-btn {
          padding: 14px 28px;
          font-size: 17px;
        }
      }

      /* For larger laptops (1441px - 1680px) */
      @media (min-width: 1441px) and (max-width: 1680px) {
        .rnler .div {
          max-width: 1400px;
        }

        .carousel-container {
          width: 1150px;
          height: 820px;
        }
      }

      /* Numune Modal Styles - with scrollbar for desktop */
      .numune-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6);
        display: none;
        z-index: 9999;
        align-items: center;
        justify-content: center;
      }

      .numune-modal-overlay[aria-hidden="false"] {
        display: flex;
      }

      .numune-modal {
        background: #ffffff;
        border-radius: 12px;
        width: 90%;
        max-width: 500px;
        max-height: 90vh;
        /* Limit height to 90% of viewport */
        overflow-y: auto;
        /* Enable scroll */
        overflow-x: hidden;
        padding: 32px;
        position: relative;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
      }

      /* Custom scrollbar styling for the modal */
      .numune-modal::-webkit-scrollbar {
        width: 8px;
      }

      .numune-modal::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
      }

      .numune-modal::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
      }

      .numune-modal::-webkit-scrollbar-thumb:hover {
        background: #555;
      }

      .numune-modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        background: transparent;
        border: none;
        font-size: 28px;
        color: #666;
        cursor: pointer;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        transition: background-color 0.2s, color 0.2s;
      }

      .numune-modal-close:hover {
        background-color: #f0f0f0;
        color: #000;
      }

      .numune-modal h3 {
        margin: 0 0 12px 0;
        font-size: 24px;
        font-weight: 700;
        color: #000;
      }

      .numune-modal-info {
        margin: 0 0 24px 0;
        color: #666;
        font-size: 14px;
        line-height: 1.5;
      }

      .numune-form-group {
        margin-bottom: 20px;
      }

      .numune-form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
        font-size: 14px;
      }

      .numune-form-group input,
      .numune-form-group textarea,
      .numune-form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
        font-family: inherit;
        transition: border-color 0.2s;
      }

      .numune-form-group input:focus,
      .numune-form-group textarea:focus,
      .numune-form-group select:focus {
        outline: none;
        border-color: #d62828;
      }

      .numune-form-group textarea {
        resize: vertical;
        min-height: 100px;
      }

      .phone-input-wrapper {
        display: flex;
        gap: 8px;
      }

      .phone-country-select {
        width: 80px;
        flex-shrink: 0;
      }

      .numune-submit-btn {
        width: 100%;
        padding: 14px;
        background-color: #d62828;
        color: #ffffff;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s;
      }

      .numune-submit-btn:hover {
        background-color: #b91c1c;
      }

      .numune-submit-btn:disabled {
        background-color: #ccc;
        cursor: not-allowed;
      }

      /* Mobile adjustments */
      @media (max-width: 768px) {
        .numune-modal {
          width: 95%;
          padding: 24px;
          max-height: 85vh;
        }

        .numume-modal h3 {
          font-size: 20px;
        }
      }

      /* Mobile actions container styling */
      .mobile-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        z-index: 1001;
        /* High z-index to ensure clickability */
        position: relative;
        gap: 15px;
        width: 100%;
        margin-top: 10px;
      }

      .mobile-actions .numune-btn {
        margin: 0 !important;
        display: block !important;
        pointer-events: auto !important;
      }

      .mobile-actions .info-icon {
        margin: 0 !important;
        display: flex !important;
        pointer-events: auto !important;
      }

      .video-sound-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
      }