/* =========================================
   ULTRA-PREMIUM PRODUCTS PAGE (BENTO/MASONRY)
   ========================================= */

:root {
  --prod-bg: #0a0a0c;
  --prod-card-bg: #ffffff;
  --prod-orange: #f7931e;
  --prod-orange-glow: rgba(247, 147, 30, 0.4);
  --prod-text-dark: #1a1a20;
  --prod-text-muted: #666666;
}

/* Hero Section */
.premium-prod-hero {
  position: relative;
  background: linear-gradient(rgba(10, 10, 12, 0.85), rgba(10, 10, 12, 0.85)), url('../images/gallery/img1.jpg') center/cover no-repeat;
  padding: 140px 0 100px;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.premium-prod-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(247,147,30,0.15) 0%, rgba(0,0,0,0) 60%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--prod-orange), #ffb347);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  color: #aaaaaa;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Grid Wrapper */
.premium-prod-grid {
  padding: 100px 0;
  background-color: #f4f5f7;
  position: relative;
}

/* Premium Card Design */
.premium-card {
  position: relative;
  border-radius: 24px;
  background: var(--prod-card-bg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.03);
  z-index: 1;
}

.premium-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(247, 147, 30, 0.15);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.premium-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.premium-card:hover::after {
  opacity: 1;
}

/* Image Container */
.pc-image-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #111;
}

.pc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  opacity: 0.85;
}

.premium-card:hover .pc-image {
  transform: scale(1.1);
  opacity: 1;
}

/* Badges */
.pc-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.pc-badge.highlight {
  background: var(--prod-orange);
  color: #fff;
  border: none;
  box-shadow: 0 5px 15px var(--prod-orange-glow);
}

/* Content Area */
.pc-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pc-icon {
  width: 60px;
  height: 60px;
  background: rgba(247, 147, 30, 0.1);
  color: var(--prod-orange);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.premium-card:hover .pc-icon {
  background: var(--prod-orange);
  color: #fff;
  transform: rotateY(180deg);
}

.pc-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--prod-text-dark);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.pc-desc {
  font-size: 1.05rem;
  color: var(--prod-text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

/* Actions */
.pc-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.pc-btn {
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pc-btn-primary {
  background: var(--prod-text-dark);
  color: #fff;
  border: 1px solid var(--prod-text-dark);
}

.pc-btn-primary:hover {
  background: var(--prod-orange);
  border-color: var(--prod-orange);
  color: #fff;
  box-shadow: 0 10px 20px var(--prod-orange-glow);
}

.pc-btn-outline {
  background: transparent;
  color: var(--prod-text-dark);
  border: 2px solid #eaeaea;
}

.pc-btn-outline:hover {
  border-color: var(--prod-text-dark);
}

/* Animations */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }
}