/* ── GALLERY HERO ── */
.gallery-hero {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  padding: 10rem 2rem 5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.gallery-hero-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gallery-hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.gallery-hero-content p {
  font-size: 0.97rem;
  color: var(--grey);
}

/* ── FILTER ── */
.gallery-filter {
  background-color: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 2rem;
  position: sticky;
  top: 75px;
  z-index: 1000;
}

.gallery-label {
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gallery-label-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-label-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-right: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 0.75rem;
  border-top: 1px solid var(--border);
}

.gallery-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}

.gallery-book {
  font-size: 0.78rem;
  font-weight: 600;
  background-color: var(--gold);
  color: var(--black);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.gallery-book:hover {
  background-color: var(--gold-dark);
}

.filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 1px solid var(--border);
  padding: 0.45rem 1.2rem;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 0.83rem;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 600;
}

/* ── GALLERY GRID ── */
.gallery-section {
  background-color: var(--black);
  padding: 4rem 2rem;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── GALLERY ITEM ── */
.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--card);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

/* ── Image Placeholders ── */
.gallery-image {
  width: 100%;
  height: 300px;
  background-color: #1a1a1a;
  background-image: repeating-linear-gradient(
    45deg,
    #161616 0px,
    #161616 1px,
    #1a1a1a 1px,
    #1a1a1a 14px
  );
}

.gi-1 {
  background-image: url("../images/noimg.jpg");
  background-size: cover;
  background-position: center;
}

.gi-2 {
  background-image: url("../images/classic.jpg");
  background-size: cover;
  background-position: center;
}

.gi-3 {
  background-image: url("../images/full\ beard.jpg");
  background-size: cover;
  background-position: center;
}

.gi-4 {
  background-image: url("../images/sharp\ line.jpg");
  background-size: cover;
  background-position: center;
}

.gi-5 {
  background-image: url("../images/high\ skin.jpg");
  background-size: cover;
  background-position: center;
}

.gi-6 {
  background-image: url("../images/noimg.jpg");
  background-size: cover;
  background-position: center;
}

.gi-7 {
  background-image: url("../images/noimg.jpg");
  background-size: cover;
  background-position: center;
}

.gi-8 {
  background-image: url("../images/noimg.jpg");
  background-size: cover;
  background-position: center;
}

.gi-9 {
  background-image: url("../images/noimg.jpg");
  background-size: cover;
  background-position: center;
}

.gi-10 {
  background-image: url("../images/noimg.jpg");
  background-size: cover;
  background-position: center;
}

.gi-11 {
  background-image: url("../images/noimg.jpg");
  background-size: cover;
  background-position: center;
}

.gi-12 {
  background-image: url("../images/noimg.jpg");
  background-size: cover;
  background-position: center;
}

/* ── Label ── */
.gallery-label {
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gallery-label h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.gallery-label span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: rgba(201, 168, 76, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

/* ── GALLERY CTA ── */
.gallery-cta {
  background: linear-gradient(135deg, #111, #0a0a0a);
  border-top: 1px solid var(--border);
  padding: 6rem 2rem;
  text-align: center;
}

.gallery-cta-inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.gallery-cta-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-hero-content h1 {
    font-size: 2.2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-filter {
    top: 60px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-image {
    height: 320px;
  }
}
