.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.items-main-image {
  position: relative;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.items-hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.items-search-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.items-search-icon:hover {
  background: white;
}

.items-search-icon::before {
  content: "🔍";
  font-size: 18px;
}

.items-studio-logo {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
}

.items-thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 60px);
  gap: 6px;
  margin-bottom: 30px;
  justify-content: start;
}

.items-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  overflow: hidden;
}

.items-thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.items-thumbnail.active {
  border-color: var(--pitoon-blue);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.items-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.items-description {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.items-description h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2c3e50;
}

.items-categories {
  margin-bottom: 20px;
}

.items-categories span {
  font-weight: bold;
  color: #7f8c8d;
}

.items-category-links {
  color: #9b59b6;
  text-decoration: none;
  margin-right: 5px;
}

.items-category-links:hover {
  text-decoration: underline;
}

.items-tags {
  margin-bottom: 20px;
}

.items-tags span {
  font-weight: bold;
  color: #7f8c8d;
}

.items-tag {
  background: #e8f4fd;
  color: #3498db;
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
  margin-right: 5px;
  font-size: 12px;
}

.items-description-text {
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.items-video-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.items-video-header {
  background: #f8f9fa;
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 10px;
}

.items-video-icon {
  width: 24px;
  height: 24px;
  background: #ff0000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.items-video-title {
  font-weight: bold;
  color: #495057;
}

.items-youtube-video {
  width: 100%;
  height: 315px;
  border: none;
}

.items-info-note {
  background: #f8f9fa;
  border-left: 4px solid #6c757d;
  padding: 15px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.items-info-note p {
  margin: 0;
  color: #6c757d;
  font-size: 14px;
  line-height: 1.5;
}

/* Simple Payment Section */
.items-payment-section {
  margin-top: 30px;
}

.items-payment-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.items-payment-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.items-payment-button {
  background: white;
  border: 2px solid var(--pitoon-blue);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: var(--pitoon-blue);
  transition: all 0.2s ease;
  display: block;
}

.items-payment-button:hover {
  background: var(--pitoon-blue);
  color: white;
}

.items-payment-flag {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.items-payment-region {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.items-payment-price {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.items-payment-methods {
  font-size: 12px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .items-hero-image {
    height: 250px;
  }

  .items-description {
    padding: 20px;
  }

  .items-payment-buttons {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .items-thumbnail-grid {
    grid-template-columns: repeat(auto-fill, 50px);
    gap: 5px;
  }

  .items-thumbnail {
    width: 50px;
    height: 50px;
  }

  .items-youtube-video {
    height: 200px;
  }
}
