:root {
  --gold: #c7a152;
  --bg-dark: #0b0c0d;
  --card-bg: #111;
}

.crockery-section {
  background: linear-gradient(180deg, #080808 0%, #0e0e0e 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  padding: 56px 0;
}

.crockery-title {
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  margin-top: 100px;
}

.crockery-col {
  display: flex;
  align-items: stretch;
}

.crockery-card {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: zoom-in;
}

.crockery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.7);
}

.crockery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 12px;
  background: #111;
}

/* Lightbox */
/* Lightbox Container */
.crockery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Show Lightbox */
.crockery-lightbox.show {
  opacity: 1;
  visibility: visible;
}

/* Lightbox body */
.cl-body {
  max-width: 95%;
  max-height: 95%;
  position: relative;
  padding: 1rem;
  animation: scaleFadeIn 0.35s ease;
}

/* Image styling */
.cl-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

/* Hover zoom */
.cl-image:hover {
  transform: scale(1.01);
}

/* Close button */
.cl-close {
    position: absolute;
    top: 3px;
    right: -6px;
    background: #fff;
    border: none;
    font-size: 30px;
    font-weight: bold;
    color: #444;
    cursor: pointer;
    border-radius: 50%;
    width: 35px;
    height: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s 
ease;
}

.cl-close:hover {
  background: #f0f0f0;
  color: #000;
}

/* Animation */
@keyframes scaleFadeIn {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .cl-image {
    max-height: 70vh;
  }
  .cl-close {
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
  }
}
