/* ===== PRODUCT GALLERY STYLES ===== */
.kadence-product-gallery {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.kadence-main-image {
  position: relative;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: #f9f9f9;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kadence-gallery-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  transition: opacity 0.3s ease;
  cursor: zoom-in;
  display: block;
}

.kadence-thumbnail-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.thumb-scroll-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.kadence-thumb {
  width: 80px;
  height: 80px;
  min-width: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.2s ease;
  background: #f5f5f5;
  padding: 3px;
}

.kadence-thumb:hover {
  border-color: #d1e3ff;
  transform: translateY(-2px);
}

.kadence-thumb.active {
  border-color: #1e73be;
  box-shadow: 0 4px 12px rgba(30, 115, 190, 0.2);
  background: #fff;
}

.thumb-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: white;
  color: #555;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .kadence-product-gallery {
    padding: 15px;
    margin: 0 auto 30px;
    border-radius: 12px;
  }
  
  .kadence-main-image {
    min-height: 300px;
    border-radius: 10px;
  }
  
  .kadence-thumb {
    width: 65px;
    height: 65px;
    min-width: 65px;
  }
  
  .thumb-nav-btn {
    display: none;
  }
}