.goldica-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  direction: ltr !important;
}

.carousel {
  width: 100%;
  display: flex;
  gap: 10px;
  cursor: grab;
  visibility: hidden; /* Will be shown by JS */
  will-change: transform;
}

.carousel:active {
  cursor: grabbing;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  display: flex;
  overflow: hidden;
  border-radius: 16px;
}

/* Goldica responsive aspect ratios */
@media (max-width: 767px) {
  .carousel-slide {
    aspect-ratio: 3/4;
  }
}

@media (min-width: 768px) {
  .carousel-slide {
    aspect-ratio: 3;
  }
}

.carousel-slide a {
  display: flex;
  width: 100%;
  height: 100%;
}

.carousel-slide picture {
  width: 100%;
  height: 100%;
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Navigation */
.carousel-nav {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.carousel-nav button {
  background: #ffffff29;
  border: 1px solid rgba(255, 187, 0, 0.5);
  color: #ffffff;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 2px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: absolute;
  aspect-ratio: 1;
  width: 30px;
  border-radius: 50%;
  transform: translateY(-130%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav button:hover {
  background: #ffbb00;
  color: #000;
  border-color: #ffbb00;
}

.carousel-nav .prev {
  top: 50%;
  left: 20px;
}

.carousel-nav .next {
  top: 50%;
  right: 20px;
}

/* Dots */
.carousel-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  padding: 0;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.dot.active {
  background: #ffbb00;
  transform: scale(1.3);
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .carousel-nav {
    margin-top: 20px;
  }
  
  .carousel-nav button {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Prevent layout shift */
* {
  box-sizing: border-box;
}