
.prices-page-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  align-items: center;
  width: 75%;
}


.prices-gallery {
  display: grid;
  grid-template-columns: repeat(51, 1fr);
  align-items: center;
  position: relative;
  width: 100%;
}

.fade-image-container {
  grid-column: 1 / 24;
  grid-row: 1;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
  mask-image: radial-gradient(circle, black 60%, transparent 100%);
}

.offset-img {
  grid-column: 25 / 51;
  grid-row: 1;
  z-index: 2;
}

.fade-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.5s ease;
}

.fade-img:hover {
  transform: scale(1.03);
}


.prices-container .section-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-teal-700);
  font-family: "Yeseva One", serif;
}

.glass-table {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-luxe);
}

.price-cat {
  font-family: "Yeseva One", serif;
  font-size: 1.1rem;
  color: var(--color-teal-700);
  background: rgba(41, 87, 90, 0.05);
  padding: 6px 14px;
  border-radius: 8px;
  margin: 1.5rem 0 0.5rem 0;
}

.price-cat:first-child {
  margin-top: 0;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(41, 87, 90, 0.1);
  font-size: 0.95rem;
  color: var(--color-teal-900);
}

.price-item:last-child {
  border-bottom: none;
}

.price-item strong {
  color: var(--color-teal-800);
  font-weight: 600;
  margin-left: 1rem;
  white-space: nowrap;
}


@media (max-width: 1100px) {
  .prices-page-wrapper {
    gap: 2rem;
  }
}

@media (max-width: 1200px) and (min-width: 992px) {
  .prices-page-wrapper {
    width: 90%;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.5rem;
  }

  .prices-container .section-title {
    font-size: 2rem;
  }

  .glass-table {
    padding: 1.25rem 1.5rem;
  }

  .price-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 991px) {
  .prices-page-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 3rem 1.5rem;
    width: 100%;
  }

  .prices-container {
    order: 1;
  }

  .prices-gallery {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }
}




.prices-page-wrapper.reveal {
  animation: fadeInContainer 0.8s ease-out forwards;
}


.prices-gallery .fade-image-container:first-child {
  opacity: 0;
  animation: slideInLeft 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.2s;
}


.prices-gallery .offset-img {
  opacity: 0;
  animation: slideInRight 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.4s;
}


.prices-container .section-title,
.glass-table {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
}


.price-item {
  opacity: 0;
  animation: fadeUp 0.5s ease-out forwards;
}


.price-item:nth-child(n) {
  animation-delay: calc(0.7s + (0.05s * var(--item-index, 1)));
}


@keyframes fadeInContainer {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (prefers-reduced-motion: reduce) {
  .reveal,
  .fade-image-container,
  .price-item,
  .glass-table {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
