/* color */
/* font */
/* transition */
.productToolbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px; }
  @media (max-width: 640px) {
    .productToolbar {
      flex-wrap: wrap; } }
  .productToolbar select {
    border: 1px solid #aaaaaa;
    padding: 5px 15px;
    line-height: 1;
    color: #000;
    font-weight: 500;
    width: 90%; }
    @media (max-width: 640px) {
      .productToolbar select {
        padding: 10px 15px; } }
  .productToolbar input {
    border: 1px solid #aaaaaa;
    padding: 5px 15px;
    margin-right: 20px; }
    @media (max-width: 640px) {
      .productToolbar input {
        flex: 1;
        padding: 10px 15px; } }
  .productToolbar .btn {
    background-color: #f19148;
    color: #fff;
    padding: 2.5px 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    box-sizing: -3px 0 5px rgba(0, 0, 0, 0.1); }
    .productToolbar .btn i {
      margin-right: 10px;
      font-size: 14px; }

.productSelect {
  flex: 1; }
  @media (max-width: 640px) {
    .productSelect {
      flex: auto;
      width: 50%; } }

.productInput {
  flex: 1.25;
  align-items: center;
  display: flex;
  justify-content: flex-end; }
  @media (max-width: 640px) {
    .productInput {
      flex: auto;
      width: 100%;
      margin-top: 10px; } }

.productTopBox {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  column-gap: 45px; }
  @media (max-width: 1024px) {
    .productTopBox {
      grid-template-columns: repeat(2, calc(50% - 10px));
      column-gap: 20px; } }
  @media (max-width: 640px) {
    .productTopBox {
      grid-template-columns: 100%;
      column-gap: 0;
      row-gap: 20px; } }

.productAlbumBox {
  display: none; }

.productBottomBox {
  display: grid;
  grid-template-columns: repeat(3, 33%);
  column-gap: 15px;
  row-gap: 70px;
  margin-top: 60px; }
  @media (max-width: 1024px) {
    .productBottomBox {
      grid-template-columns: repeat(2, calc(50% - 10px));
      column-gap: 20px;
      row-gap: 40px; } }
  @media (max-width: 640px) {
    .productBottomBox {
      grid-template-columns: 100%;
      column-gap: 0;
      row-gap: 20px; } }
  .productBottomBox .productTitle h2 {
    font-size: 18px;
    letter-spacing: 1.08px; }

.productItem {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative; }
  .productItem:before {
    content: "";
    position: absolute;
    width: 38px;
    height: 38px;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-image: url("../assets/images/iconBtn2.jpg");
    z-index: 2;
    transition: all 0.5s ease-in-out;
    opacity: 0; }
  .productItem:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease-in-out; }
  @media (min-width: 1281px) {
    .productItem:hover:after {
      content: "";
      position: absolute;
      opacity: 1; }
    .productItem:hover:before {
      content: "";
      position: absolute;
      opacity: 1; }
    .productItem:hover .productDeco {
      opacity: 1; }
    .productItem:hover .productBtn {
      opacity: 0; } }

.productImg {
  position: relative;
  z-index: 2; }

.productDeco {
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  pointer-events: none; }

.productTitle {
  position: relative;
  z-index: 2; }
  .productTitle h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
    text-align: center;
    letter-spacing: 1.44px; }

.productDesc {
  max-width: 250px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.productBtn {
  align-items: center;
  display: flex;
  font-weight: 700;
  margin-top: 20px;
  padding: 2.5px 50px;
  transition: all 0.5s ease-in-out;
  background-color: rgba(213, 213, 213, 0.5);
  z-index: 2; }
  .productBtn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; }
  .productBtn span {
    font-size: 24px;
    font-weight: 900;
    color: #f19148;
    letter-spacing: 1.6px; }
  .productBtn img {
    height: 16px;
    width: 16px;
    margin-left: 10px; }

.ins .topBox {
  align-items: flex-start;
  display: flex; }
  @media (max-width: 640px) {
    .ins .topBox {
      flex-direction: column; } }
  .ins .topBox .imgBox,
  .ins .topBox .productInfo {
    width: 50%; }
    @media (max-width: 640px) {
      .ins .topBox .imgBox,
      .ins .topBox .productInfo {
        width: 100%; } }

.ins .bottomBox {
  margin-top: 60px; }

.ins .imgBox {
  flex-direction: column;
  display: flex;
  max-width: 100%; }
  .ins .imgBox .top {
    position: relative; }
    .ins .imgBox .top .productDeco {
      position: absolute;
      z-index: 3;
      left: 0px;
      top: 50%;
      width: 100%;
      height: 100%;
      transform: translateY(-50%);
      opacity: 1;
      transition: all 0.5s ease-in-out; }
      .ins .imgBox .top .productDeco img {
        width: auto;
        height: 80%; }
  .ins .imgBox .imgMain {
    height: 350px;
    position: relative;
    margin-bottom: 10px; }
    .ins .imgBox .imgMain * {
      height: 100%; }
    .ins .imgBox .imgMain img {
      padding: 40px;
      height: 100%;
      width: 100%;
      object-fit: contain;
      position: relative; }
    .ins .imgBox .imgMain .slick-list {
      position: relative;
      z-index: 2; }
    .ins .imgBox .imgMain:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: #fff;
      box-shadow: -3px 0 10px rgba(0, 0, 0, 0.1);
      z-index: 1;
      opacity: 1;
      transition: all 0.5s ease-in-out; }
  .ins .imgBox img {
    object-fit: cover;
    width: 100%;
    max-width: 100%; }

.ins .productInfo {
  padding-left: 40px;
  padding-top: 50px; }
  @media (max-width: 640px) {
    .ins .productInfo {
      padding-left: 0; } }
  .ins .productInfo h1 {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px; }
  .ins .productInfo .specItem {
    display: flex;
    font-weight: 500;
    margin-bottom: 15px; }
    .ins .productInfo .specItem .specLabel {
      width: 30%; }
    .ins .productInfo .specItem .specData {
      width: 70%; }

.ins .productDesc {
  color: #000;
  font-size: 16px;
  letter-spacing: 0.96px; }

.ins .productNums {
  align-items: center;
  display: flex;
  margin: 65px 0; }
  .ins .productNums span {
    font-size: 14px;
    margin-right: 10px;
    letter-spacing: 0.84px; }

.ins .productNum {
  align-items: center;
  display: flex;
  padding: 5px;
  background-color: #f4f4f4; }
  .ins .productNum button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 0 5px; }
  .ins .productNum input {
    background-color: transparent;
    border: none;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    text-align: center;
    color: #f19148;
    max-width: 75px;
    font-size: 20px;
    font-weight: 700;
    margin: 0 5px; }
    .ins .productNum input:focus {
      outline: none; }

.ins .productBtns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.ins .productBtn {
  border-radius: 0;
  flex-direction: row;
  justify-content: center;
  padding: 5px 25px;
  margin-bottom: 10px;
  width: calc(50% - 10px); }
  @media (max-width: 640px) {
    .ins .productBtn {
      width: 100%; } }
  .ins .productBtn:first-child {
    margin-right: 10px; }
    @media (max-width: 640px) {
      .ins .productBtn:first-child {
        margin-right: 0; } }
  .ins .productBtn:last-child {
    flex: 1; }
  .ins .productBtn img {
    margin-right: 10px;
    margin-bottom: 0;
    user-select: none;
    pointer-events: none; }
