.overview-popup {
  z-index: 150;
  padding: 50px 15px;
}

.overview-popup__wrapper {
  min-height: 100%;
  display: flex;
}

.overview-popup__content {
  max-width: 550px;
  width: 100%;
  margin: auto;
}

.overview-popup__inner {
  padding-bottom: 0;
  height: auto;
  overflow: initial;
  visibility: hidden;

  opacity: 0;
  transition: opacity 0.35s ease 0s;
}

.popup_show .overview-popup__inner {
  opacity: 1;
  visibility: visible;
}

.lock .overview-popup__inner {
  visibility: visible;
}

.overview-popup__video {
  position: relative;
  aspect-ratio: 3 / 4;
}

.overview-popup__close {
  position: absolute;
  top: -30px;
  right: -45px;
  background: #f0f2f8;
  border-radius: 10px;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .overview-popup__close {
    top: -40px;
    right: 0;
  }
}

.overview-popup .plyr {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Aroma Selection Section */
.color-pink {
  color: #F86097 !important;
}

.aroma-selection {
  background: #f5f5f5;
}

.aroma-selection__inner {
  text-align: left;
}

.aroma-selection .common-title {
  margin-bottom: 16px;
  text-align: left;
}

.aroma-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  padding-right: 20px;
  align-items: flex-start;
}

.aroma-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  background: #fff;
  padding: 12px 16px 12px 0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.aroma-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.aroma-name {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1;
}

.aroma-bottles {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}

.aroma-bottles-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

@media (max-width: 767px) {
  .aroma-selection .common-title {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .aroma-list {
    padding-right: 15px;
  }
  
  .aroma-item {
    padding: 10px 14px 10px 0;
  }
  
  .aroma-name {
    font-size: 16px;
  }
}

/* Telegram Button */
.mode-btn-tg {
  color: #0088CC;
  border: 1px solid #0088CC;
  -webkit-transition: border 0.3s, color 0.3s;
  transition: border 0.3s, color 0.3s;
}

.mode-btn-tg:hover {
  color: #006699;
  border-color: #006699;
}

.mode-btn-tg:active {
  color: #005580;
  border-color: #005580;
}

.mode-btn-tg .icon-tg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

/* Hide Instagram button */
.mode-btn-inst {
  display: none !important;
}

/* Social section icons */
.socset img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Instruction: expandable images */
.in-image-expand {
  display: block;
}

.in-image-expand__summary {
  list-style: none;
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.in-image-expand__summary::-webkit-details-marker {
  display: none;
}

.in-image-expand__body {
  margin-top: 16px;
}

.callout-stack-link {
  margin-top: 15px;
}

/* Footer: prominent phone between address and legal info */
.footer__right-item--phone {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer__phone-link {
  font-size: clamp(1.375rem, 3.2vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer__phone-link:hover {
  color: #eb4380;
}