
@import 'account.css';
@import 'shelves.css';

@import 'fonts.css';

/* 
.button {}
.card {}
.nav-item {}
.modal {}
*/


/*
* Product Card
*/
.goods-item {
  background: var(--color-light-250);
  border-radius: var(--radius);
  border: 1px solid rgba(250,250,250,0.5);
  
  /* min-height: 32.5vh; */
  align-self: flex-start;
  position: relative;
}
.goods-media {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  position: relative;
}
.goods-media a {
  display: block;
}
.goods-media span {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: block;
  color: rgba(255,255,255,1);
  background: rgb(255, 130, 0, 0.8);
  padding: 0.5rem;
  border-radius: 16px;
}
.goods-media img {
  width: 100%;
  display: block;
}
.goods-body {
  display: grid;
  gap: 0.6rem;
  padding: 0.7rem;
}
.goods-title {
  height: 48px;
}
.goods-pomote {
  display: flex;
  gap: 0.5rem;
  width: fit-content;
  justify-content: space-between;
}
.goods-pomote span {
    align-content: center;
}



/*
* Btn
*/
.standard-btn {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--color-green);
  background: var(--color-green);
  color: var(--color-white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.standard-btn:hover {
  background: var(--color-dark-blue);
  color: var(--color-white);
  box-shadow: 1px 1px 3px 3px var(--color-light-221);
}
.standard-btn-border {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--color-dark-99);
  background: var(--color-white);
  color: var(--color-dark-99);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.standard-btn-border:hover {
  box-shadow: 1px 1px 3px 3px rgba(232, 232, 232, 0.6);
}
.standard-btn,
.standard-btn-border {
  font-size: 1rem;
}
.standard-btn .material-symbols-outlined,
.standard-btn-border .material-symbols-outlined {
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  
}
.standard-btn .material-symbols-outlined:hover {
  color: var(--color-white);
}
.standard-btn-border .material-symbols-outlined:hover {
  color: var(--color-dark-99);
}
.standard-btn i {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
}
button {
  width: 100%;
  font: inherit;
}
.trade-btn .standard-btn {
  width: fit-content;
}
.standard-btn.icon-amazon,
.standard-btn-border.icon-amazon {
  background: rgba(255, 145, 0, 0.935);
  border: 1px solid rgba(255, 145, 0, 0.935);
}
.orange-bg {
  background: var(--color-orange);
}
.orange-bg:hover {
  border: 1px solid var(--color-dark-blue);
}
.orange-border {
  border: 1px solid var(--color-orange);
}


a.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
a.icon-btn span {
  display: flex;
}

.shipping-contact .material-symbols-outlined {
  font-size: 1.5rem;
  color: rgb(183, 203, 255);
  font-variation-settings:
  'FILL' 1,
  'wght' 200,
  'GRAD' 0,
  'opsz' 40
}

.material-symbols-outlined.icon-account,
.material-symbols-outlined.icon-visibility-off {
  color: var(--color-light-221);
}
.material-symbols-outlined.icon-visibility {
  display: none;
}
.material-symbols-outlined.icon-visibility,
.material-symbols-outlined.icon-visibility-off {
  cursor: pointer;
}
.material-symbols-outlined.icon-visibility-off:hover {
  color: var(--color-light-99);
}

hr {
  text-align: center;
  color: var(--color-light-221);
  border: 0;
  font-size: 1rem;
  padding: 1em 0;
  position: relative;
  width: 100%;
  display: inline-flex;
  justify-content: center;
}
hr::before {
  content: attr(data-content);
  position: absolute;
  padding: 0 1em;
  line-height: 1px;
  border: solid #d0d0d5;
  border-width: 0 99vw;
  width: fit-content;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
}

.price {
  display: flex;
  align-items: center;
  gap: 0.2rem;

  color: var(--color-orange);
  font-family: 'Lexend';
}
.price .price-old {
  text-decoration: line-through;
  color: var(--color-light-221);
}
.price-amount {
  display: inline-flex;
  align-items: start;
  gap: 0.2rem;
}
.price-integer {
  font-size: 1.2rem;
  line-height: 22px;
}
.price-currency,
.price-decimal {
  font-size: 1rem;
  line-height: 18px;
}


.pomote-item {
  display: inline-flex;
  align-items: center;
}
.pomote-item-coupon {
  color: rgba(255, 80, 0);
  background-color: rgba(255, 240, 160);
  padding: 0 0.5rem;
  border-radius: var(--radius-16);
  font-size: 0.8rem;
}
.pomote-item-new {
  color: rgb(255, 255, 255);
  background-color: rgb(255, 130, 0);
  padding: 3px 10px;
  border-radius: 16px;
}
.pomote-item-waring {
  color: rgb(255, 135, 60);
  padding: 3px 0;
}
.pomote-item-tip {
  color: rgb(209, 178, 86);
  padding: 3px 0;
}
.pomote-item-welcome {
  color: rgb(130, 170, 128);
  padding: 3px 0;
}


.account-coupon > div {
  min-height: 260px;
}
.account-coupon > div > div {
  margin-top: 3%;
}
.account-coupon > div > div:nth-child(3) > div {
  width: 50%;
}
.account-coupon > div > div:nth-child(3) > div > .standard-btn {
  width: 50%;
  margin: 1% auto;
}
.account-coupon-card {
  margin-right: 2%;
  width: 18%;
  border-radius: 8px;
  background:rgb(57, 157, 244, 0.2); 
  
  text-align: center;
  position: relative;
}
.account-coupon-card > div:first-child {
  height: 50px;
  line-height: 50px;
  font-size: 50px;
}
.account-coupon-card > div:last-child {
  margin: 3% 0;
}
.account-coupon-card > span {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 22px;
}

.service-cnter section h2 {
  border: 1px solid var(--color-light-250);
  border-radius: 9999px;
  background: var(--color-light-250);
  width: fit-content;
  padding: 1rem;
}

.-off- {
  color: var(--color-orange);
}
.-off-:hover {
  color: var(--color-blue);
}

@media (max-width: 860px) {
  /* 
  * Product Card
  */
  .goods-item {
    background-color: var(--color-light-250);
  }


  /* 
  * Btn
  */
  .standard-btn,
  .standard-btn-border {
    gap: 0.2rem;
    padding: 0.5rem;
  }
  .trade-btn {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.2em;
    align-items: center;
  }
  .trade-btn .price {
    margin: 0;
    background: rgba(255, 130, 0);
    border: 1px solid rgba(255, 130, 0);
    border-radius: 9999px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .trade-btn .price * {
    color: rgba(255, 255, 255, 1);
  }
  .trade-btn .standard-btn {
    width: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 1rem;
  }
  .by-on-amazon {
    display: none;
  }

  .shipping-contact .material-symbols-outlined {
    font-size: 1.5rem;
  }

  .service-cnter {
    padding: 1rem;
  }

  h3,
  hr,
  .hr {
    display: none;
  }
  /* .order-info h3 {
    display: none;
  } */
  
  .order-item-shipping-address {
    background: var(--color-light-250);
    /* padding: 0.5rem; */
    /* border-bottom: 1px solid var(--color-light-221); */
    border-radius: var(--radius);
  }

  .pomote-item-coupon {
    padding: 0 0.3rem;
  }
}