.gallery {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  user-select: none;
}

.gallery__container {
  max-width: 100%;
  padding: 0;
}

.custom-carousel,
.nikels-info-carousel,
.nikels-inventory-carousel {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-carousel .owl-item,
.nikels-info-carousel .owl-item,
.nikels-inventory-carousel .owl-item {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.nikels-info-carousel .owl-item:not(.center),
.nikels-inventory-carousel .owl-item:not(.center),
.custom-carousel .owl-item:not(.center) {
  opacity: 0.4;
}

.nikels-info-carousel .owl-item.active.center,
.nikels-inventory-carousel .owl-item.active.center,
.custom-carousel .owl-item.active.center {
  opacity: 1;
  z-index: 2;
}

.nikels-info-carousel .owl-item img,
.nikels-inventory-carousel .owl-item img,
.custom-carousel .owl-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff !important;
  width: 52px !important;
  height: 52px !important;
  background: #3b82f6 !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 24px !important;
  font-family: "Golos Text", sans-serif !important;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.3);
  z-index: 10;
}

.owl-prev:hover,
.owl-next:hover {
  background: #2563eb !important;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.4);
}

.owl-prev {
  left: 20px;
}

.owl-next {
  right: 20px;
}

.owl-dots {
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-top: 35px !important;
}

.owl-dot {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: rgba(59, 130, 246, 0.2) !important;
  border: 1px solid rgba(59, 130, 246, 0.3) !important;
  cursor: pointer !important;
  transition: background-color 0.25s ease, border-color 0.25s ease !important;
}

.owl-dot:hover {
  background-color: rgba(59, 130, 246, 0.4) !important;
  border-color: rgba(59, 130, 246, 0.6) !important;
}

.owl-dot.active {
  background-color: #2563eb !important;
  border-color: #1d4ed8 !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

img {
  max-width: 100%;
  max-height: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable="true"]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}