/* Theme */
:root {
  --bg-900: #0b1120;
  --bg-800: #0f172a;
  --bg-750: #111827;
  --bg-700: #131b2d;
  --main-color:#ffffff;
  --secondery-color: #142a57;
  --card: #0e1526;
  --card-border: #1f2937;
  --muted: #94a3b8;
  --text: #e5e7eb;
  --accent: #bc9e68; /* yellow-400 */
  --accent-700: #534008 /* yellow-500 */
  --accent-800: #ca8a04; /* yellow-600 */
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--main-color);
  font-family: 'AVONE', system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.muted {
  color: var(--muted);
}
.center {
  text-align: center;
}
.main-color{
  color: var(--main-color) ;
}
.sec-color{
  color: var(--secondery-color);
}
.accent {
  color: var(--accent);
}
.glass {
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: saturate(140%) blur(8px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}
.brand {
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 20px;
}
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 2px;
}
.site-nav {
  display: none;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
*/

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn.primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-700));
  color: #1f2937;
  box-shadow: 0 10px 24px rgba(250, 204, 21, 0.25);
}
.btn.primary:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}
.btn.ghost {
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn.dark {
  background: #0b1222;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.btn.stretch {
  width: 100%;
}
.text-link {
  color: var(--accent);
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  border-radius: 15px;
  margin: 3px;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%) brightness(0.45);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1200px 700px at 20% 20%,
      #0B1F42,
      transparent 40%
    ),
    linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.8));
}
.hero-grid {
  position: relative;
  padding: clamp(40px, 7vw, 120px) 0 clamp(40px, 6vw, 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  gap: 24px;
  margin-top: 40px;
}
.display {
  font-size: clamp(45px, 8vw, 100px);
  line-height: 1.05;
  margin: 0 0 12px;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.chip-row{
      text-align: center;
    font-size: 31px;
    padding: 10px;
    letter-spacing: 3px;
    font-weight: 500;
}
.lead {
     margin: 0 0 16px;
    color: white;
    padding: 20px 10px 20px;
    font-size: 20px;
}
.meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  justify-content: space-evenly;
}
.meta-row .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #cbd5e1;
  opacity: 0.5;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-btn{
       align-self: center;
    border-radius: 15px;
    padding: 10px 34px 10px !important;
    width: fit-content;
    margin-top: 40px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 18px;
    font-weight: 600;
    font-family: 'Alexandria';
}
.hero-btn a{
      margin-right: 27px;
}
.hero-location span,.hero-date span{
  margin-left: 10px;
    font-size: 18px;
}
.hero-btn:hover{
   background: var(--main-color);
    border: none;
    color: var(--main-color);
}
.hero-btn:hover i, .hero-btn:hover a{
  color:var(--accent)
}
.hero-left {
  display: flex;
  flex-direction: column;

}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.stat-card {
    background: #FFFFFF;
    padding: 12px 16px;
    text-align: center;
}
.stat {
    font-size: 22px;
    font-weight: 400;
        color: #626060;
    font-family: 'Alexandria';
}
.stat-sub {
  color: var(--muted);
  font-size: 13px;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.7fr;
    align-items: center;
  }
}

/* Sections */
.over-view{
      display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 50vh;
    padding-bottom: 20px;
}
@media(max-width:767px){
  .over-view{
    justify-content: center;
  }
}
.border-effect{
      border-radius: 15px;
    margin: 3px;
}
.section {
  padding: clamp(40px, 6vw, 80px) 0;
}
.section-dark {
    background: linear-gradient(180deg,rgba(4, 3, 28, 1) 0%, rgba(32, 46, 70, 1) 56%, rgba(46, 59, 89, 0.82) 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);

}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.h2 {
  font-size: clamp(26px, 4vw, 40px);
  margin: 0 0 8px;
}

/* Amenities */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 24px;
}
.card.feature {
  background: linear-gradient(135deg, var(--card), var(--card-border));
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
      align-items: center;
    display: flex;
    flex-direction: column;
}
.card.feature:hover{
  scale: 1.02;
    transition: 0.3s 
ease-in-out;
background: linear-gradient(152deg,rgba(4, 24, 48, 1) 0%, rgba(21, 35, 64, 1) 68%, rgba(46, 59, 89, 0.94) 100%)
}
.card.feature h3 {
  margin: 10px 0 6px;
  font-size: 18px;
}
.card.feature p {
    margin: 0;
    color: #c1c1c1;
    width: 100%;
    text-align: center;  
}
.ico {
 width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--accent), var(--main-color));
    color: var(--secondery-color);
    display: grid
;
    place-items: center;
    font-weight: 800;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 720px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px dashed rgba(148, 163, 184, 0.25);
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-block .big {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.stat-block .label {
  color: var(--muted);
  font-size: 14px;
}
@media (min-width: 900px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Gallery */
.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.tab {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}
.tab.is-active,
.tab:hover {
  background: linear-gradient(180deg, var(--accent), var(--accent-700));
  color: #1f2937;
  border-color: transparent;
}
#gallery .container{

}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}
.gallery-main {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-main figcaption {
  padding: 10px 14px;
  color: var(--muted);
}
.gallery-side {
  display: grid;
  gap: 12px;
}
.thumb {
  border-radius: 12px;
  border: 2px solid transparent;
  background: var(--card);
}
.thumb.selected,
.thumb:hover {
  border-color: var(--accent);
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: 1fr 0.55fr;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 10px;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-sec{

}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.form label {
  display: block;
  color: #cbd5e1;
  font-size: 14px;
}
input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: #0a0f1e;
  color: var(--text);
  outline: none;
}
input::placeholder,
textarea::placeholder {
  color: #64748b;
}

.contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.card.contact-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 16px;
}
.contact-title {
  color: #cbd5e1;
  font-weight: 700;
}
.contact-value {
  font-weight: 800;
  color: var(--text);
}
.contact-note {
  color: var(--muted);
  font-size: 13px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 0.9fr;
  }
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-cont{
  width: 100%;
      padding: 10px 20px 20px;
}

/* Promo */
.promo {
  margin-top: 18px;
}
.promo-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(180deg, var(--accent), var(--accent-800));
  color: #1f2937;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 28px rgba(250, 204, 21, 0.2);
  justify-content: space-between;
  flex-wrap: wrap;
}
.promo-ico {
  font-weight: 800;
  font-size: 20px;
}
.promo-title {
  font-size: 18px;
  font-weight: 800;
}
.promo-sub {
  opacity: 0.9;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.7));
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: #cbd5e1;
}

/* Mobile nav */
@media (max-width: 799px) {
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    background: rgba(17, 24, 39, 0.95);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  }
  .site-nav.open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }
  .site-nav .btn.primary {
    width: 100%;
  }
}
@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }
  .site-nav {
    display: block;
    position: static;
  }
}

/* Enhanced Gallery Carousel */

/* Location Section - 2 Column Layout */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 30px;
}
.location-sec{
  background: linear-gradient(180deg, rgba(4, 3, 28, 1) 0%, rgba(32, 46, 70, 1) 56%, rgba(46, 59, 89, 0.82) 100%);
    border-radius: 15px;
    margin: 3px;
}
.location-map {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-map:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 20px;
}

.location-text {
  background: #0e152636;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  height: 100%;
}

.location-text h3 {
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-align: center;
}

.location-text p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 25px 0;
  text-align: center;
}

.location-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(250, 204, 21, 0.05);
  border-color: rgba(250, 204, 21, 0.2);
  transform: translateX(5px);
}

.feature-item i {
  color: var(--accent);
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.feature-item span {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

/* Responsive improvements */
@media (max-width: 767px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .location-map iframe {
    height: 300px;
  }

  .location-text {
    padding: 25px;
  }

  .location-text h3 {
    font-size: 20px;
  }

  .facilities-text,
  .gutenberg-content {
    padding: 20px;
  }
  .gutnberg-sec{
    width:100%
  }

  .section {
    padding: clamp(30px, 5vw, 60px) 0;
  }
}

/* Enhanced Gallery Carousel */
.gallery-carousel-wrapper {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

.gallery-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 0;
}

.gallery-slide {
  flex: 0 0 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.slide-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.gallery-slide:hover .slide-image img {
  transform: scale(1.05);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    transparent 100%
  );
  padding: 30px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide:hover .slide-overlay {
  transform: translateY(0);
}

.slide-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.slide-title {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-actions {
  display: flex;
  gap: 12px;
}

.btn-view {
  background: rgba(250, 204, 21, 0.9);
  color: #1f2937;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-view:hover {
  background: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3);
}

/* Navigation Controls */
.gallery-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.nav-btn {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--text);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  pointer-events: all;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.nav-btn:hover {
  background: var(--accent);
  color: #1f2937;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(250, 204, 21, 0.3);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: scale(1);
}

/* Progress Bar */
.gallery-progress {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  z-index: 10;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(148, 163, 184, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-700));
  border-radius: 2px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
}

/* Thumbnail Navigation */
.gallery-thumbnails {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.thumbnail-item {
  width: 80px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.6;
  position: relative;
}

.thumbnail-item:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.thumbnail-item.active {
  border-color: var(--accent);
  opacity: 1;
  box-shadow: 0 4px 16px rgba(250, 204, 21, 0.3);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Placeholder Images */
.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--card), var(--card-border));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}

.placeholder-image i {
  font-size: 32px;
  margin-bottom: 8px;
  opacity: 0.5;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--text);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--accent);
  color: #1f2937;
  border-color: transparent;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--text);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  color: #1f2937;
  border-color: transparent;
}

/* Section Subtitle */
.section-subtitle {
  color: var(--muted);
  text-align: center;
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 400;
}

/* Carousel Responsive Design */
@media (max-width: 768px) {
  .slide-image {
    height: 350px;
  }

  .slide-overlay {
    padding: 20px;
  }

  .slide-title {
    font-size: 16px;
  }

  .nav-btn {
    width: 48px;
    height: 48px;
  }

  .gallery-progress {
    width: 150px;
  }

  .thumbnail-item {
    width: 60px;
    height: 45px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .slide-image {
    height: 280px;
  }

  .slide-overlay {
    padding: 16px;
  }

  .slide-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-view {
    width: 40px;
    height: 40px;
  }

  .nav-btn {
    width: 44px;
    height: 44px;
  }
}
