/* Product Details Page Styles */

.product-main-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .product-main-layout {
    grid-template-columns: 1fr;
  }
}

.purchase-section {
  margin: 1.5rem 0;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.quantity-input {
  width: 80px;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
}

.btn.primary-action,
.btn.secondary-action {
  width: 100%;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem 0;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn.primary-action {
  background-color: #007bff;
  color: white;
}

.btn.primary-action:hover:not(:disabled) {
  background-color: #0056b3;
}

.btn.secondary-action {
  background-color: #ffc107;
  color: #000;
}

.btn.secondary-action:hover:not(:disabled) {
  background-color: #e0a800;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Product Gallery Carousel Styles */
.product-gallery-section {
  position: relative;
}

.main-image-container {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 8px;
  background: #f8f9fa;
}

.main-watch-image {
  width: 100%;
  height: auto;
  max-height: 60vh;
  display: block;
  transition: opacity 0.3s ease;
  cursor: zoom-in;
  object-fit: contain;
}

.luxury-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  z-index: 10;
}

.luxury-nav-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.luxury-nav-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.luxury-nav-btn i {
  font-size: 1.5rem;
  color: #333;
}

.luxury-thumbnail-gallery {
  margin-top: 1rem;
}

.luxury-thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: thin;
}

.luxury-thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  background: #f8f9fa;
}

.luxury-thumbnail:hover {
  border-color: #007bff;
  transform: scale(1.05);
}

.luxury-thumbnail.active {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.luxury-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .luxury-nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .luxury-nav-btn i {
    font-size: 1.2rem;
  }
  
  .luxury-thumbnail {
    width: 60px;
    height: 60px;
  }
}

