:root {
  --background: #fff;
  --primary-color: #000;
  --secondary-color: #A8A8A8;
  --tertiary-color: #fff;
  --red: #ee3322;
  --yellow: #ffee38;
  --light-yellow: #FFEE3850;
  --blue: #0f65ef;
  --light-gray: #F4F4F4;
  --hover-gray: #00000010;
  --green: #39B26B;
  --arrow-icon: #00000060;
  --card: #F9F9F9;
}

[data-theme=dark] {
  --background: #000;
  --primary-color: #fff;
  --tertiary-color: #000;
  --hover-gray: #ffffff10;
  --arrow-icon: #00000060;
  --card: #F9F9F9;
}

#dark-mode-icon {
  fill: var(--primary-color);
  user-select: none;
}
#dark-mode-icon path {
  fill: var(--primary-color);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--background);
  color: var(--primary-color);
  transition: background-color 0.25s;
}

button {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  color: var(--primary-color);
  font-size: 16px;
  cursor: pointer;
}

img,
svg {
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: bold;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  color: var(--primary-color);
}

input {
  font-family: "Inter", Helvetica, sans-serif;
  font-optical-sizing: auto;
}

p,
a,
li,
label,
span {
  font-family: "Inter", Helvetica, sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  color: var(--primary-color);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header.header {
  background: var(--background);
  position: sticky;
  z-index: 10;
  top: 0;
}
header.header .header-sizer {
  display: flex;
  transition: background-color 0.25s;
  padding: 26px 0;
  max-width: 1173px;
  margin: 0 auto;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0px 1px 0px #00000008;
}
@media (max-width: 1203px) {
  header.header .header-sizer {
    padding: 16px;
  }
}
header.header .header-bar {
  display: flex;
  justify-content: space-between;
}
header.header .header-bar .header-sns-logo a {
  display: block;
  font-size: 0;
}
header.header .header-bar .header-sns-logo svg {
  fill: var(--primary-color);
  width: 299px;
  height: 39px;
}
@media (max-width: 1203px) {
  header.header .header-bar .header-sns-logo svg {
    width: 160px;
    height: 20px;
  }
}
header.header .header-bar .header-controls {
  display: flex;
  align-items: center;
}
.mobile header.header .header-bar .header-controls .header-navigation-icons {
  margin-left: 0;
}
.mobile header.header .header-bar .header-controls .header-navigation-icons .header-navigation-icon {
  margin-left: 16px;
}
.mobile header.header .header-bar .header-controls .header-navigation-icons .header-navigation-icon svg {
  width: 20px;
  height: 20px;
}
header.header .header-bar .header-controls .header-navigation-icons {
  display: flex;
  align-items: center;
  margin-left: 30px;
}
.mobile header.header .header-bar .header-controls .header-navigation-icons {
  margin-left: 0;
}
header.header .header-bar .header-controls .header-navigation-icons .header-navigation-icon {
  margin-left: 30px;
  cursor: pointer;
}
.mobile header.header .header-bar .header-controls .header-navigation-icons .header-navigation-icon {
  margin-left: 16px;
}
header.header .header-bar .header-controls .header-navigation-icons .header-navigation-icon img,
header.header .header-bar .header-controls .header-navigation-icons .header-navigation-icon svg {
  fill: var(--primary-color);
  width: 24px;
  height: 24px;
}
.mobile header.header .header-bar .header-controls .header-navigation-icons .header-navigation-icon img,
.mobile header.header .header-bar .header-controls .header-navigation-icons .header-navigation-icon svg {
  width: 20px;
  height: 20px;
}

.search-icon-and-input,
.search-icon-and-input-mobile {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
}
.search-icon-and-input .clear-icon,
.search-icon-and-input-mobile .clear-icon {
  display: none;
}
.search-icon-and-input .cancel-search,
.search-icon-and-input-mobile .cancel-search {
  font-size: 17px;
  line-height: 22px;
  display: none;
  height: 100%;
  cursor: pointer;
}
.search-icon-and-input .search-and-clear-icon,
.search-icon-and-input-mobile .search-and-clear-icon {
  width: 394px;
  height: 32px;
  padding: 0 10px;
  background: #76768012;
  display: flex;
  align-items: center;
  border-radius: 16px;
  justify-content: space-between;
}
.mobile .search-icon-and-input .search-and-clear-icon,
.mobile .search-icon-and-input-mobile .search-and-clear-icon {
  width: 100%;
}
.search-icon-and-input .search-and-clear-icon svg,
.search-icon-and-input-mobile .search-and-clear-icon svg {
  width: 16px;
  height: 16px;
  fill: #bdbdbd;
}
.search-icon-and-input .clear-icon,
.search-icon-and-input-mobile .clear-icon {
  cursor: pointer;
}
.search-icon-and-input .search-text-input-wrapper,
.search-icon-and-input-mobile .search-text-input-wrapper {
  display: flex;
  align-items: center;
  border-radius: 16px;
  height: 100%;
  width: 100%;
}
.search-icon-and-input .search-text-input-wrapper svg,
.search-icon-and-input-mobile .search-text-input-wrapper svg {
  width: 16px;
  height: 16px;
  fill: #bdbdbd;
}
.search-icon-and-input .search-text-input-wrapper input,
.search-icon-and-input-mobile .search-text-input-wrapper input {
  margin-left: 10px;
  background: none;
  height: 100%;
  width: 100%;
  border: none;
  font-size: 16px;
  color: var(--primary-color);
}
.search-icon-and-input .search-text-input-wrapper input::placeholder,
.search-icon-and-input-mobile .search-text-input-wrapper input::placeholder {
  color: var(--secondary-color);
  font-size: 15px;
  line-height: 22px;
}
.search-icon-and-input .search-text-input-wrapper input:focus,
.search-icon-and-input-mobile .search-text-input-wrapper input:focus {
  outline: none;
}
.main.content-container,
.main.modal-container {
  max-width: 1173px;
  margin: 30px auto 60px;
}
@media (max-width: 1203px) and (min-width: 1000px) {
  .main.content-container,
.main.modal-container {
    margin: 16px 16px 30px;
  }
}
.mobile .main.content-container,
.mobile .main.modal-container {
  margin: 16px 16px 30px;
}
.main.content-container:has(.row-content),
.main.modal-container:has(.row-content) {
  margin: 0 auto;
}
.mobile .main.content-container:has(.internal-sns-product),
.mobile .main.modal-container:has(.internal-sns-product) {
  margin: 0;
}
.mobile .main.content-container:has(.internal-sns-product) .sns-product-list-info-tag,
.mobile .main.modal-container:has(.internal-sns-product) .sns-product-list-info-tag {
  margin: 0 16px;
}
.mobile .main.content-container:has(.internal-sns-product) .sns-product-right-panel,
.mobile .main.modal-container:has(.internal-sns-product) .sns-product-right-panel {
  margin: 0 16px;
  width: auto;
}
.mobile .main.content-container:has(.internal-sns-product) .sns-product-list-buttons,
.mobile .main.modal-container:has(.internal-sns-product) .sns-product-list-buttons {
  padding: 8px 24px;
}
.mobile .main.content-container:has(.internal-sns-product) .image-selector,
.mobile .main.modal-container:has(.internal-sns-product) .image-selector {
  padding: 0 16px;
}
.mobile .main.content-container:has(.internal-sns-product) .sns-product-image,
.mobile .main.modal-container:has(.internal-sns-product) .sns-product-image {
  display: flex;
  flex-direction: column;
  background-color: unset;
}
.mobile .main.content-container:has(.internal-sns-product) .product-info,
.mobile .main.modal-container:has(.internal-sns-product) .product-info {
  margin: 30px 16px 90px;
}

.mobile .main.modal-container {
  margin: 0 16px 30px;
}

.main.modal-container {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 4;
}

.sns-product {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 60px;
}
.mobile .sns-product {
  flex-direction: column;
  gap: 30px;
}
.mobile .sns-product.internal-sns-product {
  margin-top: 16px;
}
.mobile .sns-product.internal-sns-product .sns-product-list-image-and-buttons {
  gap: 0;
}
.mobile .sns-product.internal-sns-product .sns-product-list-image-and-buttons .sns-product-image {
  width: 100%;
}
.mobile .sns-product.internal-sns-product .sns-product-list-image-and-buttons {
  width: 100%;
  flex-direction: column;
}
.sns-product .sns-product-list-image-and-buttons {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.mobile .sns-product .sns-product-list-image-and-buttons {
  width: 100%;
  flex-direction: row;
  gap: 16px;
}
.mobile .sns-product .sns-product-list-image-and-buttons .sns-product-details {
  margin-top: 0;
}
.sns-product .sns-product-list-image-and-buttons .sns-product-image {
  position: relative;
  background-color: #f2f2f2;
}
.mobile .sns-product .sns-product-list-image-and-buttons .sns-product-image {
  width: 25%;
}
.sns-product .sns-product-list-image-and-buttons .sns-product-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.sns-product .sns-product-list-image-and-buttons .sns-product-list-buttons {
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding: 8px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.sns-product .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-list-likes {
  display: flex;
  flex-direction: row;
}
.sns-product .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-list-likes .sns-product-list-avatar {
  z-index: 3;
  border-radius: 50%;
  border: 1px solid var(--tertiary-color);
  background-color: #f2f2f2;
}
.sns-product .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-list-likes .sns-product-list-avatar:nth-child(2) {
  z-index: 2;
  margin-left: -4px;
}
.sns-product .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-list-likes .sns-product-list-avatar:nth-child(3) {
  z-index: 3;
  margin-left: -8px;
}
.sns-product .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-list-likes .sns-product-list-avatar img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.sns-product .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-add-to-wishlist {
  cursor: pointer;
  font-size: 0px;
}
.sns-product .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-add-to-wishlist.liked {
  animation: like 0.5s;
}
.sns-product .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-add-to-wishlist.liked svg {
  fill: #FF3B30;
}
.sns-product .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-add-to-wishlist.liked svg #Path_14 {
  fill: #FF3B30;
}
.sns-product .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-add-to-wishlist svg {
  width: 24px;
  height: 24px;
}
.sns-product .sns-product-right-panel {
  display: flex;
  flex-direction: column;
  width: 50%;
  justify-content: space-between;
  position: relative;
}
.sns-product .sns-product-right-panel .sticky-button {
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 2;
  background: linear-gradient(0deg, var(--tertiary-color) 80%, transparent 100%);
  padding: 8px 16px 16px;
  display: flex;
}
.mobile .sns-product .sns-product-right-panel {
  width: 100%;
}
.sns-product .sns-product-right-panel .sns-product-info {
  display: flex;
  flex-direction: column;
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-brand p {
  font-size: 17px;
  line-height: 21px;
  color: var(--secondary-color);
  text-transform: uppercase;
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-name {
  margin-top: 10px;
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-name p {
  font-size: 17px;
  line-height: 22px;
}
.mobile .sns-product .sns-product-right-panel .sns-product-info .sns-product-name p {
  font-size: 17px;
  line-height: 22px;
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-price {
  margin-top: 10px;
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-price span {
  font-size: 22px;
  font-family: "Inter", sans-serif;
  line-height: 22px;
  font-weight: 500;
}
.sns-product .sns-product-right-panel .sns-product-info span.section-heading {
  font-size: 22px;
  font-family: "Inter", sans-serif;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-cores {
  margin-top: 60px;
}
.mobile .sns-product .sns-product-right-panel .sns-product-info .sns-product-cores {
  margin-top: 30px;
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-cores .sns-product-cores-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-cores .sns-product-cores-wrapper .sns-product-dimension-cor.selected {
  outline: 2px solid var(--primary-color);
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-cores .sns-product-cores-wrapper .sns-product-dimension-cor.disabled {
  opacity: 0.16;
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-cores .sns-product-cores-wrapper .sns-product-dimension-cor img {
  width: 90px;
  height: 120px;
  object-fit: cover;
  cursor: pointer;
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-tamanhos {
  margin-top: 60px;
}
.mobile .sns-product .sns-product-right-panel .sns-product-info .sns-product-tamanhos {
  margin-top: 30px;
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-tamanhos .sns-product-tamanhos-wrapper {
  flex-direction: row;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-tamanhos .sns-product-tamanhos-wrapper .sns-product-dimension-tamanho {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 41px;
  height: 36px;
  border: 1px solid var(--primary-color);
  border-radius: 16px;
  cursor: pointer;
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-tamanhos .sns-product-tamanhos-wrapper .sns-product-dimension-tamanho.selected {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-tamanhos .sns-product-tamanhos-wrapper .sns-product-dimension-tamanho.selected p {
  color: var(--tertiary-color);
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-tamanhos .sns-product-tamanhos-wrapper .sns-product-dimension-tamanho.disabled {
  cursor: not-allowed;
  opacity: 0.16;
}
.sns-product .sns-product-right-panel .sns-product-info .sns-product-tamanhos .sns-product-tamanhos-wrapper .sns-product-dimension-tamanho p {
  text-transform: uppercase;
  padding: 0 10px;
  font-size: 15px;
  line-height: 21px;
}

.mobile .sticky-button {
  width: 100%;
  position: fixed !important;
  bottom: 0 !important;
  left: 0;
  z-index: 10;
  background: linear-gradient(0deg, var(--tertiary-color) 80%, transparent 100%);
  padding: 8px 16px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile .sticky-button .btn {
  flex: 1;
}

.user-info-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 41px;
}
.mobile .user-info-block {
  margin-bottom: 30px;
}
.user-info-block .user-avatar-and-follows {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  gap: 20px;
}
.user-info-block .user-avatar-and-follows .user-avatar img {
  object-fit: cover;
}
.mobile .user-info-block .user-avatar-and-follows .user-avatar img {
  height: 110px;
  width: 110px;
}
.user-info-block .user-avatar-and-follows .user-follows-and-button {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
}
@media (max-width: 450px) {
  .user-info-block .user-avatar-and-follows .user-follows-and-button {
    width: 100%;
  }
  .user-info-block .user-avatar-and-follows .user-follows-and-button .btn {
    min-width: unset;
    width: 100%;
  }
}
.user-info-block .user-avatar-and-follows .user-follows-and-button .user-follows-and-followers {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
}
.mobile .user-info-block .user-avatar-and-follows .user-follows-and-button .user-follows-and-followers {
  gap: 16px;
}
.user-info-block .user-avatar-and-follows .user-follows-and-button .user-follows-and-followers span {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  line-height: 22px;
  font-weight: 500;
}
.user-info-block .user-avatar-and-follows .user-follows-and-button .user-follows-and-followers p {
  font-size: 15px;
  line-height: 21px;
  display: block;
  margin-top: 4px;
}
.user-info-block .user-avatar-and-follows .user-follows-and-button .user-follows-and-followers .user-followers {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.user-info-block .user-avatar-and-follows .user-follows-and-button .user-follows-and-followers .user-following {
  flex-direction: column;
  display: flex;
  align-items: center;
}
.user-info-block .user-avatar-and-follows .user-follows-and-button .follow-button.followed {
  background: var(--tertiary-color);
  border: 1px solid var(--secondary-color);
}
.user-info-block .user-avatar-and-follows .user-follows-and-button .follow-button.followed span {
  color: var(--secondary-color);
}

.user-wishlists .sns-products-list-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.mobile .user-wishlists .sns-products-list-grid {
  grid-template-columns: repeat(2, 1fr);
}
.product-list-header {
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.product-list-header h2 {
  font-size: 28px;
  line-height: 22px;
  font-weight: bold;
  color: var(--primary-color);
}
.product-list-header .sort-products-button {
  cursor: pointer;
}
.product-list-header .sort-products-button svg {
  width: 34px;
  height: 34px;
  transition: opacity 0.2s;
  fill: var(--primary-color);
}
@media (hover: hover) {
  .product-list-header .sort-products-button svg:hover {
    opacity: 0.8;
  }
}

.sns-product-list-info-tag {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--primary-color);
  padding: 4px 14px;
}
.sns-product-list-info-tag p {
  font-size: 15px;
  line-height: 21px;
  color: var(--tertiary-color);
  text-transform: uppercase;
}

.sns-product-list {
  display: block;
  width: 100%;
}
.sns-product-list.unlisted {
  opacity: 0.5;
}
.sns-product-list .sns-product-list-link {
  display: block;
  text-decoration: none;
}
.sns-product-list .sns-product-list-image-and-buttons {
  position: relative;
}
.sns-product-list .sns-product-list-image-and-buttons .sns-product-list-image {
  background-color: #F2F2F2;
  display: block;
}
.sns-product-list .sns-product-list-image-and-buttons .sns-product-list-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.sns-product-list .sns-product-list-image-and-buttons .sns-product-list-buttons {
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding: 8px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.sns-product-list .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-list-likes {
  display: flex;
  flex-direction: row;
}
.sns-product-list .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-list-likes .sns-product-list-avatar {
  z-index: 3;
  border-radius: 50%;
  border: 1px solid var(--tertiary-color);
  background-color: #f2f2f2;
}
.sns-product-list .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-list-likes .sns-product-list-avatar:nth-child(2) {
  z-index: 2;
  margin-left: -4px;
}
.sns-product-list .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-list-likes .sns-product-list-avatar:nth-child(3) {
  z-index: 3;
  margin-left: -8px;
}
.sns-product-list .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-list-likes .sns-product-list-avatar img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.sns-product-list .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-add-to-wishlist {
  font-size: 0px;
  cursor: pointer;
}
.sns-product-list .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-add-to-wishlist.liked {
  animation: like 0.5s;
}
.sns-product-list .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-add-to-wishlist.liked svg {
  fill: #FF3B30;
}
.sns-product-list .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-add-to-wishlist.liked svg #Path_14 {
  fill: #FF3B30;
}
.sns-product-list .sns-product-list-image-and-buttons .sns-product-list-buttons .sns-product-add-to-wishlist svg {
  transition: all 0.5s;
  width: 20px;
  height: 20px;
}
.sns-product-list .sns-product-list-brand {
  margin-top: 12px;
}
.sns-product-list .sns-product-list-brand p {
  font-size: 17px;
  line-height: 21px;
  color: var(--secondary-color);
  text-transform: uppercase;
}
.mobile .sns-product-list .sns-product-list-brand p {
  font-size: 15px;
  line-height: 19px;
}
.sns-product-list .sns-product-list-name {
  margin-top: 8px;
}
.sns-product-list .sns-product-list-name p {
  font-size: 17px;
  line-height: 19px;
}
.mobile .sns-product-list .sns-product-list-name p {
  font-size: 15px;
  line-height: 19px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.sns-product-list .sns-product-list-price {
  margin-top: 8px;
}
.sns-product-list .sns-product-list-price p {
  font-size: 19px;
  line-height: 21px;
  font-weight: 500;
}
.mobile .sns-product-list .sns-product-list-price p {
  font-size: 16px;
  line-height: 21px;
}

@-webkit-keyframes like {
  0% {
    transform: scale(1);
  }
  90% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes like {
  0% {
    transform: scale(1);
  }
  90% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.1);
  }
}
.entries {
  margin-top: 60px;
}
.mobile .entries {
  margin-top: 30px;
}
.entries .entry-content {
  padding-left: 16px;
}
.entries .entry-heading {
  margin-bottom: 12px;
}
.entries .entry-heading h3 {
  font-size: 22px;
  line-height: 22px;
  font-weight: bold;
}

.entry-foldable {
  user-select: none;
  display: flex;
  cursor: pointer;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 10px;
  border-bottom: 1px solid var(--light-gray);
}
.entry-foldable span {
  font-size: 17px;
  line-height: 22px;
}
.entry-foldable .arrow-icon svg {
  fill: var(--arrow-icon);
  width: 8px;
  height: 14px;
}

.btn .sort-form {
  padding-left: 12px;
}

.sort-input {
  font-size: 17px;
  line-height: 21px;
  display: flex;
  padding: 12px;
  user-select: none;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--light-gray);
  cursor: pointer;
  transition: background-color 0.25s;
  border-radius: 8px;
  padding-left: 12px;
  margin-left: -12px;
}
@media (hover: hover) {
  .sort-input:hover {
    background-color: var(--hover-gray);
  }
}
.sort-input input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: transparent;
  /* Not removed via appearance */
  margin: 0;
  width: 16px;
  height: 16px;
  display: grid;
}
.sort-input input[type=radio]::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background: url(/images/checkmark.svg) no-repeat center center;
}
.sort-input input[type=radio]:checked::before {
  transform: scale(1);
}
.sort-input input[type=radio]:focus {
  outline: none;
}
.sort-input:has(input[type=radio]:checked) {
  font-weight: bold;
}

.content-block-header h3 strong,
.content-block-header p strong {
  color: var(--primary-color);
}
.content-block-header h3 {
  font-size: 22px;
  line-height: 22px;
  font-weight: bold;
  color: var(--primary-color);
  display: block;
}
.content-block-header p {
  font-size: 17px;
  line-height: 21px;
  font-weight: 400;
  color: var(--secondary-color);
}
.mobile .content-block-header p {
  font-size: 15px;
  line-height: 21px;
}
.content-block-header h3 + p {
  margin-top: 12px;
}

.has-cta {
  position: relative;
}
.has-cta .get-more-customers {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 0;
  transform: translateY(calc(-100% - 30px));
}
.mobile .has-cta .get-more-customers {
  position: relative;
  transform: none;
  text-align: center;
  height: 100%;
  margin-top: 0px;
  min-width: 120px;
  height: 116px;
}

.content {
  position: relative;
}

.get-more-customers-block {
  min-height: 100vh;
}
.get-more-customers-block .close-button {
  position: absolute;
  top: -30px;
  right: 4px;
  cursor: pointer;
}
.mobile .get-more-customers-block .close-button {
  top: -14px;
}

.suggested-follows-block {
  display: grid;
  grid-template-columns: repeat(4, 248px);
  gap: 60px;
  margin-bottom: 60px;
  margin-top: 30px;
  align-items: center;
  justify-content: center;
}
.mobile .suggested-follows-block {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 30px;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  justify-content: flex-start;
}
.mobile .suggested-follows-block .user-name {
  text-align: center;
}
.suggested-follows-block .suggested-follow-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile .suggested-follows-block .suggested-follow-info {
  min-width: 120px;
  max-width: 120px;
}
.suggested-follows-block .suggested-follow-info .suggested-follow-avatar {
  border-radius: 50%;
}
.suggested-follows-block .suggested-follow-info .suggested-follow-avatar img {
  border-radius: 50%;
  height: 110px;
  width: 110px;
}
.suggested-follows-block .suggested-follow-info .suggested-follow-name p {
  text-align: center;
  font-size: 17px;
  line-height: 22px;
}
.suggested-follows-block .suggested-follow-info .suggested-follow-handle p {
  text-align: center;
  font-size: 17px;
  line-height: 22px;
}

.user-avatar {
  border-radius: 50%;
  background-color: #f2f2f2;
}
.user-avatar img {
  border-radius: 50%;
  width: 110px;
  height: 110px;
  object-fit: cover;
}
.mobile .user-avatar img {
  width: 65px;
  height: 65px;
}

.user-avatar-small {
  border-radius: 50%;
}
.user-avatar-small img {
  object-fit: cover;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.mobile .suggested-follows-block .user-handle-name-and-badge {
  max-width: 120px;
}
.mobile .suggested-follows-block .user-handle-name p {
  max-width: 90px;
}
.mobile .suggested-follows-block .user-name p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 120px;
}

.user-name-and-handle .user-name p {
  font-size: 17px;
  line-height: 22px;
  font-weight: 500;
  color: var(--primary-color);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.user-name-and-handle .user-handle-name-and-badge {
  display: flex;
}
.user-name-and-handle .user-handle-name-and-badge.center {
  justify-content: center;
  align-items: center;
}
.user-name-and-handle .user-handle-name-and-badge p {
  font-size: 16px;
  line-height: 21px;
  color: var(--secondary-color);
}
.mobile .user-name-and-handle .user-handle-name-and-badge p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.user-name-and-handle .user-handle-name-and-badge .user-verified-badge {
  margin-left: 8px;
}
.user-name-and-handle .user-handle-name-and-badge .user-verified-badge svg {
  width: 20px;
  height: 20px;
}

.mobile .entry-foldable .user-name p,
.mobile .entry-foldable .user-handle-name-and-badge p {
  max-width: 250px;
}

.search-highlights {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(2, 1fr);
}
.mobile .search-highlights {
  grid-template-columns: repeat(1, minmax(248px, 1fr));
  gap: 30px;
}

.search-highlight {
  width: 100%;
}

.sns-products-list-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.sns-products-list-grid.columns-grid-1 {
  grid-template-columns: 1fr;
}
.sns-products-list-grid.columns-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.sns-products-list-grid.columns-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.sns-products-list-grid.columns-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.mobile .sns-products-list-grid {
  gap: 16px;
}

.carroussel {
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  gap: 16px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-right: 16px;
}
.carroussel .carrousel-link {
  display: flex;
  padding: 12px 53px;
  border-radius: 8px;
  text-transform: uppercase;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  background-color: var(--tertiary-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  aspect-ratio: 3/4;
  flex: 0 0 auto;
  scroll-snap-align: center;
}
.carroussel .sns-product-list,
.carroussel .carroussel-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: calc(75% - 16px - 16px - 16px);
}
.carroussel .sns-product-list:first-child,
.carroussel .carroussel-item:first-child {
  margin-left: 16px;
}

.search-page-columns {
  display: flex;
  gap: 60px;
  position: relative;
}
.mobile .search-page-columns {
  flex-direction: column;
  gap: 30px;
}

.filter-panel {
  display: flex;
  flex-direction: column;
  width: 377px;
  background: var(--tertiary-color);
  position: relative;
}
.mobile .filter-panel {
  width: 100%;
}
.filter-panel .close-button {
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
}
.filter-panel .close-button svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}
.filter-panel.transitioning {
  transform: translateY(100vh);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999999999;
}
.filter-panel.transitioning.in {
  animation: slideIn 0.3s ease-in forwards;
}
.filter-panel.transitioning.out {
  animation: slideOut 0.3s ease-in forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(100vh);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideOut {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100vh);
  }
}
.short-filters .filter-button {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  width: 100%;
  flex: 1;
}
.short-filters .filter-button span {
  color: var(--tertiary-color);
}
.short-filters .filter-bubble-wrapper .filter-bubble.selected {
  border: 1px solid var(--primary-color);
  background-color: var(--tertiary-color);
}
.short-filters .filter-bubble-wrapper .filter-bubble.selected p {
  color: var(--primary-color);
}
.short-filters .filter-bubble-wrapper .filter-bubble.selected svg {
  fill: var(--primary-color);
}

.filter-heading h4,
.filter-heading h2 {
  font-size: 22px;
  line-height: 22px;
  font-weight: bold;
  color: var(--primary-color);
}

.filter-search-group .filter-count-selected {
  margin-top: 4px;
}
.filter-search-group .filter-count-selected span {
  font-size: 15px;
  line-height: 21px;
  color: var(--secondary-color);
}

.filter-search-group + .filter-search-group {
  margin-top: 30px;
}

.filter-bubbles .filter-bubble-wrapper {
  display: inline-block;
  margin-right: 16px;
  margin-top: 16px;
  cursor: pointer;
}
.filter-bubbles .filter-bubble {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--primary-color);
  background-color: var(--tertiary-color);
  border-radius: 16px;
}
.filter-bubbles .filter-bubble p {
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: 15px;
  line-height: 21px;
}
.filter-bubbles .filter-bubble.selected {
  border: none;
  background-color: var(--primary-color);
}
.filter-bubbles .filter-bubble.selected p {
  color: var(--tertiary-color);
}
.filter-bubbles .filter-bubble.disabled {
  opacity: 0.16;
  cursor: not-allowed;
}
.filter-bubbles .filter-bubble svg {
  fill: var(--tertiary-color);
  display: block;
  margin-left: 8px;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.filter-search-words {
  margin-top: 16px;
}
.filter-search-words .filter-search-input {
  width: 394px;
  height: 32px;
  padding: 0 10px;
  background: #76768012;
  display: flex;
  align-items: center;
  border-radius: 16px;
}
.filter-search-words .filter-search-input svg {
  width: 16px;
  height: 16px;
  fill: #bdbdbd;
}
.mobile .filter-search-words .filter-search-input {
  width: 100%;
}
.mobile .filter-search-words .filter-search-input input {
  width: 100%;
}
.filter-search-words .filter-search-input input {
  margin-left: 10px;
  background: none;
  height: 100%;
  width: 100%;
  border: none;
  font-size: 16px;
  color: var(--primary-color);
}
.filter-search-words .filter-search-input input::placeholder {
  color: var(--secondary-color);
  font-size: 15px;
  line-height: 22px;
}
.filter-search-words .filter-search-input input:focus {
  outline: none;
}
@media (max-width: 700px) {
  .filter-search-words .filter-search-input input {
    width: 196px;
    height: 25px;
  }
}

.two-columns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 60px;
}
.mobile .two-columns {
  flex-direction: column;
  gap: 30px;
}

.row-content.hero {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-content: center;
  gap: 60px;
}
.row-content.grid-2cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 60px;
}
.row-content.grid-2cols .entry-hero-banner-and-button img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.mobile .row-content.grid-2cols .entry-hero-banner-and-button img {
  aspect-ratio: unset;
  object-fit: unset;
}
.row-content .content-block-header p {
  line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.mobile .row-content .content-block-header {
  margin-left: 16px;
}
@media (max-width: 1203px) and (min-width: 1000px) {
  .row-content {
    margin: 16px 16px 30px;
  }
}
.row-content.ContentBlockHighlightImage {
  max-width: 1173px;
}
.mobile .row-content .sns-products-list-grid {
  padding: 0 16px;
}
.mobile .row-content {
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
.mobile .row-content .btn {
  margin: 0 16px 0;
}

.search-products {
  width: 100%;
}

.search-customers {
  width: 100%;
}

.search-heading {
  margin-bottom: 30px;
}
.search-heading h4 {
  font-size: 22px;
  line-height: 22px;
  font-weight: bold;
}

.user-info {
  display: flex;
  flex-direction: row;
}
.user-info .user-avatar {
  margin-right: 16px;
}
.user-info .user-avatar img {
  object-fit: cover;
  width: 56px;
  height: 56px;
}

.content-loader {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-loader svg {
  animation: rotations 0.7s ease-in-out infinite;
  width: 44px;
  height: 44px;
}

@keyframes rotations {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
.entry-hero-banner-and-button img {
  width: 100%;
}

.entry-content {
  width: 100%;
  display: flex;
  gap: 30px;
  flex-direction: column;
}
.mobile .entry-content {
  gap: 16px;
}

.row-content + .row-content {
  margin-top: 60px;
}
.mobile .row-content + .row-content {
  margin-top: 40px;
}

.entry-cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 12px 30px;
  background: var(--tertiary-color);
  border-radius: 8px;
  text-transform: uppercase;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  margin-top: 30px;
}
.entry-cta-button span {
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  color: var(--primary-color);
}
.mobile .entry-cta-button {
  margin-top: 16px;
  padding: 10px 16px;
}

.customer-menu-options {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
.mobile .customer-menu-options {
  gap: 30px;
  flex-direction: column;
}
.customer-menu-options .customer-menu-column {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.customer-menu-options .customer-menu-column .customer-menu-option {
  display: flex;
  flex-direction: row;
  position: relative;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: background-color 0.2s ease-out;
}
.customer-menu-options .customer-menu-column .customer-menu-option svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}
.customer-menu-options .customer-menu-column .customer-menu-option p {
  font-size: 17px;
  line-height: 21px;
  font-weight: 400;
}
@media (hover: hover) {
  .customer-menu-options .customer-menu-column .customer-menu-option:hover {
    background-color: var(--hover-gray);
  }
}
.customer-menu-options .customer-menu-column .logout-button {
  padding: 12px 6px;
  cursor: pointer;
  color: #FF0000;
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  margin-top: 30px;
  text-transform: uppercase;
}

.page-heading {
  margin-bottom: 30px;
}
.mobile .page-heading {
  margin-bottom: 8px;
}
.page-heading h4,
.page-heading h2 {
  font-size: 22px;
  line-height: 22px;
  font-weight: bold;
  color: var(--primary-color);
}

.copy-link-text {
  position: absolute;
  right: 0;
  padding: 8px;
  background-color: var(--primary-color);
  border-radius: 8px;
  color: var(--tertiary-color);
  transition: opacity 0.5s;
}
.copy-link-text.hide-tooltip {
  opacity: 0;
}

body.desktop.has-modal {
  overflow-y: hidden;
  /* Disable pointer events globally */
  pointer-events: none;
}
body.desktop.has-modal .modal-wrapper,
body.desktop.has-modal .header {
  /* Re-enable pointer events only inside the modal */
  pointer-events: auto;
}
body.desktop .modal-wrapper {
  padding: 91px 0 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9;
}
body.desktop .modal-wrapper .modal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--tertiary-color);
  opacity: 90%;
  z-index: 8;
}
body.desktop .modal-wrapper .modal-box {
  z-index: 9;
  max-height: 100%;
  overflow-y: auto;
  border-radius: 4px;
  box-shadow: 0px 3px 8px -3px rgba(0, 0, 0, 0.2);
  background-color: var(--tertiary-color);
  min-width: 557px;
  max-width: 1054px;
  border: 1px solid var(--secondary-color);
}

body.mobile.has-modal {
  /* Disable pointer events globally */
}
body.mobile.has-modal .main.content-container:not(.modal-wrapper) {
  display: none;
}

.modal-wrapper .modal-box .modal-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.04);
}
.mobile .modal-wrapper .modal-box .modal-menu {
  padding: 3px 0;
}
.modal-wrapper .modal-box .modal-menu .modal-back {
  padding: 8px 0;
  cursor: pointer;
}
.modal-wrapper .modal-box .modal-menu .modal-back span {
  font-size: 15px;
  line-height: 22px;
  color: var(--primary-color);
}
.modal-wrapper .modal-box .modal-menu .modal-heading {
  padding: 8px 0;
}
.modal-wrapper .modal-box .modal-menu .modal-heading h2 {
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
}
.modal-wrapper .modal-box .modal-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}
.mobile .modal-wrapper .modal-box .modal-content {
  padding: 16px 0 0;
}
.modal-wrapper .modal-box .modal-content .user-avatar {
  margin: 0 auto;
}
.modal-wrapper .modal-box .modal-content .user-avatar img {
  object-fit: cover;
}
.mobile .modal-wrapper .modal-box .modal-content .user-avatar img {
  width: 110px;
  height: 110px;
}
.modal-wrapper .modal-box .modal-content .user-avatar-options {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  flex: 1;
}
.mobile .modal-wrapper .modal-box .modal-content .user-avatar-options {
  flex-direction: column;
  align-items: unset;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group-row {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.form-group-row .website-input {
  flex: 1;
}
.form-group-row .website-input input {
  height: auto;
}

.website-input label {
  font-size: 15px;
  line-height: 21px;
  color: var(--secondary-color);
}
.website-input input {
  background: none;
  height: 100%;
  width: 100%;
  border: none;
  padding: 8px 0;
  font-size: 17px;
  line-height: 21px;
  color: var(--primary-color);
  border-bottom: 1px solid var(--hover-gray);
}
.website-input input::placeholder {
  color: var(--secondary-color);
  font-size: 15px;
  line-height: 22px;
}
.website-input input:focus {
  outline: none;
}
.website-input input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn {
  display: flex;
  padding: 12px 53px;
  border-radius: 8px;
  text-transform: uppercase;
  justify-content: center;
  cursor: pointer;
  align-items: center;
  width: fit-content;
  min-width: 258px;
}
@media (max-width: 450px) {
  .btn {
    padding: 12px 16px;
  }
}
.mobile .btn {
  width: auto;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn.warning {
  background-color: var(--tertiary-color);
  color: var(--red);
  border: 1px solid var(--red);
}
.btn span {
  color: inherit;
  font-weight: 500;
}
.btn.primary {
  background-color: var(--primary-color);
  color: var(--tertiary-color);
}
.btn.secondary {
  background-color: var(--tertiary-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.icon {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}
.icon.success {
  fill: var(--green);
}
.icon.warning {
  fill: var(--yellow);
}
.icon.fail {
  fill: var(--red);
}

.input-text {
  position: relative;
}
.input-text .icon {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 8px;
}
.input-text.success .success {
  display: block;
}
.input-text.warning .warning {
  display: block;
}
.input-text.fail .fail {
  display: block;
}

.drop-zone-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.drop-zone-image img {
  border-radius: 50%;
}

.remove-avatar-overlay {
  position: absolute;
  width: 110px;
  height: 110px;
  z-index: 20;
}
.remove-avatar-overlay svg {
  width: 100%;
  height: 100%;
}

ul.image-selector {
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
  width: 100%;
}
ul.image-selector li.underline-border-wrapper {
  width: 100%;
  list-style: none;
  cursor: pointer;
  padding: 16px 0 8px 0;
  transition: transform 0.15s ease-out;
}
ul.image-selector li.underline-border-wrapper.selected .underline-border {
  background-color: var(--primary-color);
}
ul.image-selector li.underline-border-wrapper .underline-border {
  border-radius: 2px;
  height: 4px;
  width: 100%;
  background-color: var(--secondary-color);
}

.loading {
  opacity: 0.5;
}

.content-image-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.content-image-loader.floating-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.content-image-loader svg {
  animation: rotations 0.7s ease-in-out infinite;
  width: 60px;
  height: 60px;
}

@keyframes rotations {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
.sns-product-details {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.sns-product-details .sns-product-brand p {
  font-size: 17px;
  line-height: 21px;
  color: #B2B2B2;
}
.sns-product-details .sns-product-name h2 {
  font-size: 17px;
  line-height: 19px;
  font-weight: 400;
}
.sns-product-details .sns-product-price p {
  font-size: 19px;
  line-height: 21px;
  font-weight: 500;
}

.order-options {
  display: flex;
  flex-direction: column;
}
.order-options .order-option {
  padding: 12px 0 12px 16px;
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #C6C5C9;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease-out;
}
@media (hover: hover) {
  .order-options .order-option:hover {
    background-color: var(--hover-gray);
  }
}
.order-options .order-option .order-option-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}
.order-options .order-option-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.order-options .order-option-details .order-option-text span {
  font-size: 17px;
  line-height: 21px;
}
.order-options .order-option-details .order-option-description p {
  font-size: 15px;
  line-height: 21px;
  color: #B2B2B2;
}

.sns-product-dimensions {
  display: flex;
  gap: 20px;
  flex-direction: row;
}

.sns-product-dimension {
  display: flex;
  gap: 8px;
  flex-direction: row;
  border-radius: 16px;
  padding: 8px 16px 8px 12px;
  background-color: var(--card);
  width: fit-content;
}
.sns-product-dimension p {
  font-size: 15px;
  line-height: 21px;
  color: black;
}

.sns-product-create-order-right-panel {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 30px;
}
.mobile .sns-product-create-order-right-panel {
  width: 100%;
  margin-bottom: 90px;
}
.sns-product-create-order-right-panel .heading {
  margin-bottom: 30px;
}
.sns-product-create-order-right-panel .heading h3 {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
}

.addresses {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.addresses .sns-address {
  padding: 30px;
  border: solid 1px #E1E1E1;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  border-radius: 8px;
}
.mobile .addresses .sns-address {
  flex-direction: column;
}
.addresses .sns-address-options {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
}

.title-and-button {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 42px;
}
.mobile .title-and-button {
  flex-direction: column;
}

.tab-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.mobile .tab-group {
  margin-top: 16px;
  overflow-y: auto;
}
.tab-group .tab {
  display: flex;
  flex-direction: row;
  gap: 20px;
  cursor: pointer;
  padding: 2px 4px;
  align-items: center;
  transition: background-color 0.2s ease-out;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s ease-out;
  white-space: nowrap;
}
@media (hover: hover) {
  .tab-group .tab:hover {
    border-bottom: 2px solid var(--secondary-color);
  }
}
.tab-group .tab.active {
  border-bottom: 2px solid var(--primary-color);
}

.sns-order-groups {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.mobile .sns-order-groups {
  gap: 30px;
}

.sns-order-options-and-arrow {
  display: flex;
}
.sns-order-options-and-arrow .arrow-icon {
  padding: 0 30px;
}

.sns-order-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mobile .sns-order-group {
  gap: 12px;
}

.sns-orders {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sns-orders .sns-order {
  border: solid 1px #E1E1E1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 8px;
}
.sns-orders .sns-order .arrow-icon {
  gap: 30px;
  display: flex;
  align-items: center;
}
.mobile .sns-orders .sns-order {
  padding: 16px;
  flex-direction: column;
}
.sns-orders .sns-order .sns-order-info {
  display: flex;
  padding: 30px 0px 30px 30px;
  gap: 30px;
  flex-direction: column;
  min-width: 50%;
  flex: 1;
}
.mobile .sns-orders .sns-order .sns-order-info {
  gap: 16px;
  padding: unset;
}
.sns-orders .sns-order .sns-order-info .sns-order-product {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.mobile .sns-orders .sns-order .sns-order-info .sns-order-product {
  gap: 16px;
}
.sns-orders .sns-order .sns-order-info .sns-order-product .sns-product-image {
  background-color: #f2f2f2;
  width: 100px;
}
.sns-orders .sns-order .sns-order-info .sns-order-product .sns-product-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.sns-orders .sns-order .sns-order-info .sns-order-product .sns-order-flow {
  display: flex;
  gap: 8px;
  flex-direction: column;
  flex: 1;
}
.sns-orders .sns-order .sns-order-info .sns-order-product .sns-order-flow .sns-product-payment-info {
  display: flex;
  gap: 8px;
}
.sns-orders .sns-order .sns-order-info .sns-order-product .sns-order-code {
  font-size: 15px;
  line-height: 18px;
  color: var(--secondary-color);
}
.sns-orders .sns-order .sns-order-info .sns-order-product .sns-product-details {
  display: flex;
  gap: 8px;
  margin-top: 0px;
}
.sns-orders .sns-order .sns-order-info .sns-order-product .sns-product-details .sns-order-created-at {
  font-size: 13px;
  line-height: 15px;
}
.sns-orders .sns-order .sns-order-info .sns-order-product .sns-product-details .sns-order-created-at strong {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
}
.sns-orders .sns-order .sns-order-info .sns-order-product .sns-product-details h4 {
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  color: var(--secondary-color);
}
.sns-orders .sns-order .sns-order-info .sns-order-product .sns-product-details h3 {
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
}
.sns-orders .sns-order .sns-order-info .sns-order-product .sns-product-details span {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
}
.sns-orders .sns-order-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  padding: 30px 0 30px;
}

.sns-order-header {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.sns-order-header .status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  min-width: 12px;
}
.sns-order-header .status.yellow {
  background-color: var(--yellow);
}
.sns-order-header .status.green {
  background-color: var(--green);
}
.sns-order-header .status.red {
  background-color: var(--red);
}
.sns-order-header h3 {
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
}

.centered-modal-form-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

.flex-col-default {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
mobile .flex-col-default {
  gap: 16px;
}

h3.section-heading {
  font-size: 22px;
  font-family: "Inter", sans-serif;
  line-height: 22px;
  font-weight: 500;
}

.product-info {
  margin-top: 40px;
}
.mobile .product-info {
  margin-top: 30px;
}
.product-info .product-description {
  margin-top: 10px;
}
.product-info .product-description p {
  font-size: 17px;
  color: var(--primary-color);
  line-height: 21px;
  font-weight: 400;
}

.also-wished {
  width: 50%;
}
.mobile .also-wished {
  width: 100%;
}
.also-wished .content-block-header {
  margin-bottom: 12px;
}

.display-box {
  border-radius: 8px;
  box-shadow: 0px 3px 8px -3px rgba(0, 0, 0, 0.2);
}

.save-wish-text {
  font-size: 17px;
  line-height: 21px;
  color: var(--secondary-color);
}

.buttons-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
}

body:has(#loading.active) {
  overflow: hidden;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999999999;
}
#loading img {
  width: 100px;
  height: 100px;
}
.mobile #loading img {
  width: 60px;
  height: 60px;
}

.centered-message-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 207px);
  width: 100%;
}
.centered-message-wrapper p,
.centered-message-wrapper h2 {
  text-align: center;
}
.mobile .centered-message-wrapper {
  height: calc(100vh - 174px);
}

.form-error {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 19px;
  color: var(--red);
}

.legal-info-container li {
  list-style: outside;
  margin-left: 40px;
}
.legal-info-container .legal-heading {
  padding-bottom: 30px;
}
.legal-info-container .legal-heading h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 24px;
}
.legal-info-container .legal-text p,
.legal-info-container .legal-text li {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}
.legal-info-container .legal-text p.heading,
.legal-info-container .legal-text li.heading {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  margin-top: 30px;
}
.legal-info-container .legal-text p.heading {
  margin-top: 60px;
}
.legal-info-container .legal-text p + p,
.legal-info-container .legal-text li {
  margin-top: 20px;
}
.legal-info-container .legal-text ul + p {
  margin-top: 20px;
}
.legal-info-container .legal-text a {
  text-decoration: underline;
  color: var(--blue);
}

.contato-container li {
  list-style: outside;
  margin-left: 40px;
}
.contato-container .headings {
  padding-bottom: 30px;
}
.contato-container .headings h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 24px;
  padding-bottom: 30px;
}
.contato-container .headings p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  margin-top: 20px;
}
.contato-container .contact-options {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex: 1;
  width: 100%;
}
@media (max-width: 700px) {
  .contato-container .contact-options {
    flex-direction: column;
    justify-content: space-evenly;
    margin-top: 30px;
  }
}
.contato-container .contact-options .info-and-button {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 700px) {
  .contato-container .contact-options .info-and-button {
    flex: none;
  }
}
.contato-container .contact-options .info-and-button .icon-and-text {
  margin-bottom: 30px;
}
.contato-container .contact-options .info-and-button .icon-and-text svg {
  width: 20px;
  height: 20px;
  margin-right: 16px;
}
.contato-container .contact-options .info-and-button .icon-and-text span {
  font-size: 21px;
  line-height: 21px;
  font-weight: 500;
}
.contato-container .contact-options .info-and-button .cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  border: 1px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 8px;
}
.contato-container .contact-options .info-and-button .cta-button span {
  font-size: 15px;
  line-height: 21px;
  text-transform: uppercase;
  font-weight: 500;
}
.contato-container .contact-options .info-and-button .cta-button.copied {
  animation: copied 1s;
}

@keyframes copied {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.sns-product-image-gallery {
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: hidden;
  display: flex;
  gap: 16px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  user-select: none;
}
.mobile .sns-product-image-gallery {
  overflow-x: scroll;
  padding-right: 16px;
}
.sns-product-image-gallery .gallery-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 100%;
  background-color: #f2f2f2;
}
.mobile .sns-product-image-gallery .gallery-item:first-child {
  margin-left: 16px;
}
.mobile .sns-product-image-gallery .gallery-item {
  width: calc(100% - 16px) !important;
}

.sns-product-image-gallery::-webkit-scrollbar {
  display: none;
}

.pointing-left {
  transform: rotate(180deg);
}

.image-navigation-buttons {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.mobile .image-navigation-buttons {
  padding: 0 16px;
}
.image-navigation-buttons .nav-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #ffffff80;
  border-radius: 8px;
  margin: 8px;
  cursor: pointer;
}

.rent-title {
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.rent-description {
  display: block;
  max-width: 528px;
  margin-top: 16px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary-color);
}