.contact1d {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em 20px;
}.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-item-media {
  border-radius: 8px;
  background: #f8f8f8;
  overflow: hidden;
}
.gallery-item-media img{
  width: 100%;
  height: auto;
  min-height: 250px;
  object-fit: cover;
  transition: opacity .2s;
}
.gallery-item:hover .gallery-item-media img{
  opacity: .7;
}
.gallery-item-title {
  line-height: 1.25;
}
.gallery-item-title span{
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
@media (max-width: 500px) {
  .gallery-item-media img{
    min-height: 120px;
  }
}
@media (max-width: 340px) {
  .gallery-item-title {
    font-size: 14px;
  }
}.rhead h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 30px;
}
.rhead .breadcrumbs {
  margin-bottom: 20px;
}
.rhead nav {
  position: relative;
  margin-bottom: 50px;
}
.rhead nav:after {
  content: '';
  position: absolute;
  left: -50vw;
  right: -50vw;
  bottom: 0;
  height: 1px;
  background: #e5e5e5;
}
.rhead nav:before{
  content: '';
  position: absolute;
  right: 0;
  top: 1px;
  bottom: 1px;
  width: 100px;
  background: linear-gradient(90deg, transparent, #fff 100%);
  pointer-events: none;
  z-index: 1;
}
.rhead .nav {
  position: relative;
  display: flex;
  gap: 40px;
  padding-right: 80px;
  overflow: auto;
}
.rhead .nav::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.rhead .nav-item {
  flex-shrink: 0;
}
.rhead .nav-link {
  white-space: nowrap;
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 0 30px;
  transition: color .2s;
}
.rhead .nav-link.active,
.rhead .nav-link:hover {
  color: var(--c1);
}
.rhead .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 20px 20px 0 0;
  background: transparent;
  z-index: 1;
}
.rhead .nav-link.active:after {
  background: var(--c1);
}
@media (max-width: 1530px) {
  .rhead .nav {
    gap: 30px;
  }
}
@media (max-width: 1060px) {
  .rhead .breadcrumbs {
    margin-bottom: 10px;
  }
  .rhead h1{
    font-size: 30px;
    margin-bottom: 20px;
  }
  .rhead nav {
    margin-bottom: 20px;
    margin-right: -15px;
    margin-left: -15px;
  }
  .rhead nav:before{
    display: none;
  }
  .rhead .nav {
    gap: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .rhead .nav-link {
    padding: 0 0 15px;
  }
}.uishare {
  display: flex;
  align-items: center;
  gap: 20px;
}
.uishare-links {
  display: flex;
  gap: 6px;
}
.uishare-link {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 54px;
  height: 44px;
  width: 54px;
  height: 44px;
  border-radius: 8px;
  background: #F5F5F5;
  overflow: hidden;
  transition: background .2s, color .2s;
}
.uishare-link:hover{
  background: var(--c1);
  color: #fff;
}
.uishare.ui.dropdown{
  display: inline-flex;
}
.uishare._icon .uishare-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.uishare-thumb{
  display: contents;
}
.uishare.ui.dropdown > .uishare-text{
  padding-bottom: 1px;
  border-bottom: 1px dashed;
  transition: border .2s;
}
.uishare.ui.dropdown:hover > .uishare-text{
  border-bottom-color: transparent;
}
.uishare.ui.dropdown .menu{
  margin-top: 12px;
  width: 170px;
  background: #fff;
  padding: 10px 0;
  border-radius: 12px;
  border: 1px solid #E5E5E5 !important;
}
.uishare.ui.dropdown.upward .menu{
  margin-top: 0;
  margin-bottom: 12px;
}
.uishare.ui.dropdown .menu>.item {
  color: rgba(0,0,0,.6);
  font-size: 14px;
  padding: 8px 20px !important;
  font-weight: 400;
}
.uishare.ui.dropdown .menu>.item>img{
  margin: 0 6px 0 0;
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 400px) {
  .uishare {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }
}.page-header h1{
  display: none;
}
.pdetail {
  margin-top: 10px;
}
.pdetail-masonry:not(.masonry){
  overflow: hidden;
}
.pdetail-masonry:not(.masonry) .gallery-item{
  float: left;
}
.pdetail-masonry {
  position: relative;
  margin-left: -10px;
  margin-right: -10px;
}
.pdetail-masonry-item{
  width: 20%;
  margin-bottom: 30px;
  padding-left: 10px;
  padding-right: 10px;
}
.pdetail-masonry .gallery-item{
  width: calc(20% - 20px);
  margin-bottom: 30px;
  margin-left: 10px;
  margin-right: 10px;
}
.pdetail-masonry-item a{
  display: block;
  border-radius: 8px;
  cursor: zoom-in;
  overflow: hidden;
}
.pdetail-masonry-item img{
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity .2s;
}
.pdetail-masonry-item a:hover img{
  opacity: .7;
}
.pdetail-a1 {
  width: 60%;
  margin-bottom: 30px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  gap: 20px;
}
.pdetail-a1-media {
  position: relative;
  flex-grow: 1;
  border-radius: 12px; 
  overflow: hidden;
}
.pdetail-a1-media img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: opacity .2s;
}
.pdetail-a1-media:hover img{
  opacity: .7;
}
.pdetail-d2h {
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 700px;
  width: 440px;
  padding: 50px 40px 40px 40px;
  border-radius: 12px;
  border: 1px solid #EEE;
  background: #FFF;
  box-shadow: 0 96px 27px 0 rgba(0, 0, 0, 0.00), 0 62px 25px 0 rgba(0, 0, 0, 0.01), 0 35px 21px 0 rgba(0, 0, 0, 0.02);
}
.pdetail-d2h-s3l {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pdetail-d2h-fav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  cursor: pointer;
  padding-top: 1px;
}
.pdetail-d2h-fav svg{
  color: transparent;
  stroke: #000;
  stroke-width: 2px;
  transition: stroke .2s, fill .2s, opacity .2s;
}
.pdetail-d2h-fav.is-favourite  svg{
  color: #000;
}
.pdetail-d2h-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
}
.pdetail-d2h-props {
  margin-top: 20px;
  margin-bottom: 40px;
}
.pdetail-d2h-prop {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
}
.pdetail-d2h-prop-name {
  flex-shrink: 0;
  color: #aaa;
}
.pdetail-d2h-prop-dot {
  flex-grow: 1;
  border-bottom: 1px dotted #d1d1d1;
}
.pdetail-d2h-prop-value {
  width: 140px;
  flex-shrink: 0;
}
.pdetail-d2h-dk {
  margin-top: auto;
  display: flex;
  gap: 20px;
}
.pdetail-d2h-dk-media {
  flex-shrink: 0;
  width: 60px;
  height: 78px;
  border-radius: 8px;
  background: #000;
}
.pdetail-d2h-dk-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: lighten;
}
.pdetail-d2h-dk-main {
  align-self: center;
}
.pdetail-d2h-dk-name {
  font-weight: 500;
  line-height: 1.2;
}
.pdetail-d2h-dk-prices {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.pdetail-d2h-dk-prices .price {
  font-size: 18px;
  font-weight: 500;
}
.pdetail-d2h-dk-prices .price-old  {
  font-size: 16px;
  color: #AAA;
  text-decoration: line-through;
}
.pdetail-d2h-dk-prices .price-new{
  color: #FF4848;
}
.pdetail-d2h-btn.btn{
  margin-top: 20px;
  width: 100%;
}
.pdetail-d2h-r5l {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdetail-d2h-r5l-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  transition: border .2s;
}
.pdetail-d2h-r5l-link:hover {
  border-color: var(--c1);
}
.pdetail-d2h-r5l-link-media {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: #000;
  overflow: hidden;
}
.pdetail-d2h-r5l-link-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: lighten;
}
.pdetail-d2h-r5l-link-cc{
  width: calc(100% - 70px);
}
.pdetail-d2h-r5l-link-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdetail-d2h-r5l-link-t2 {
  margin-top: 4px;
  color: #5d5e60;
  font-size: 12px;
}
.pdetail-d2h-r5l-link > svg {
  flex-shrink: 0;
  margin-left: auto;
  width: 10px;
  height: auto;
  transform: rotate(-90deg);
  color: #5d5e60;
}
@media (max-width: 1760px) {
  .pdetail-d2h {
    height: 600px;
    width: 400px;
    padding: 50px 30px 30px 30px;
  }
}
@media (max-width: 1530px) {
  .pdetail-a1 {
    width: 75%;
  }
  .pdetail-masonry-item {
    width: 25%;
  }
  .pdetail-masonry .gallery-item {
    width: calc(25% - 20px);
  }
}
@media (max-width: 1260px) {
  .pdetail-a1 {
    width: 100%;
  }
  .pdetail-d2h {
    width: 440px;
  }
  .pdetail-masonry-item {
    width: 33.33%;
  }
  .pdetail-masonry .gallery-item{
    width: calc(33.33% - 20px);
  }
}
@media (max-width: 1060px) {
  .page-header h1{
    display: block;
  }
  .pdetail {
    margin-top: 0;
  }
  .pdetail-masonry {
    margin-left: -5px;
    margin-right: -5px;
  }
  .pdetail-a1 {
    margin-bottom: 30px;
    padding-left: 5px;
    padding-right: 5px;
    flex-direction: column;
    gap: 0;
  }
  .pdetail-a1-media {
    height: 460px;
  }
  .pdetail-d2h-s3l {
    right: 20px;
    top: 15px;
    color: #fff;
  }
  .pdetail-d2h-fav svg{
    stroke: #fff;
  }
  .pdetail-d2h-fav.active  svg{
    color: #fff;
  }
  .pdetail-d2h {
    position: static;
    width: 100%;
    padding: 0;
    border-radius: 0;
    border: none;
    height: auto;
    box-shadow: none;
  }
  .pdetail-d2h-title {
    display: none;
  }
  .pdetail-d2h-props {
    margin-top: 10px;
    margin-bottom: 25px;
  }
  .pdetail-masonry-item {
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .pdetail-masonry .gallery-item{
    width: calc(33.33% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 25px;
  }
}
@media (max-width: 600px) {
  .pdetail-masonry-item {
    width: 50%;
  }
  .pdetail-masonry .gallery-item {
    width: calc(50% - 10px);
  }
}