/* Gift Shop 스타일 */
/* .gift-store {padding-bottom: 100px;} */
.gift-store .gift-shop-section { padding: 90px 0;}
.gift-store .section-title { font-size: 80px;  margin-bottom: calc(40/80*1em); text-align: left; color: #fff; font-family: 'disol_headline'; letter-spacing: -0.02em; }
.gift-store .product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 100px 20px;}
.gift-store .product-item {overflow: hidden;}
.gift-store .product-thumb { position: relative; overflow: hidden; width: 344px;; }
.gift-store .product-thumb:after {content: ''; display: block; padding-top: calc(447/344*100%);}
.gift-store .product-thumb img { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; object-fit: cover; }
.gift-store .product-thumb .add-cart-btn {opacity: 0; visibility: hidden; position: absolute; left: 50%; bottom: calc(25/344*100%); transform: translate(-50%, 40px); width: calc(300/344*100%); padding: calc(25/22*1em) calc(10/22*1em); background: transparent; color: #fff; border: 1px solid #fff; border-radius: 10px; font-size: 22px; letter-spacing: -0.025em; font-family: 'disol_headline'; text-align: center; transition: all 0.3s; cursor: pointer;
    
    display: none;
    /* add-cart-btn 삭제요청 */
}

.gift-store .product-info { display: flex; flex-direction: column; }
.gift-store .product-name { font-size: 18px; letter-spacing: -0.02em; color: #fff; padding-top: calc(20/18*1em); padding-bottom: calc(10/18*1em); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gift-store .product-price { display: flex; align-items: flex-end; gap: calc(10/16*1em); font-size: 16px;}
.gift-store .original-price { font-size: inherit; color: #fff; opacity: .4; text-decoration: line-through; }
.gift-store .discount-price { font-size: inherit; font-weight: 600; color: #fff; }
.gift-store .discount-price b { font-size: 26px; }

.gift-store .btn-wrapper {display: flex; justify-content: center;}
.gift-store .btn-load-more {padding: calc(25/20*1em) calc(85/20*1em); background: transparent; color: #fff; border: 1px solid #fff; border-radius: calc(10/20*1em); font-size: 20px; letter-spacing: -0.025em; font-family: 'disol_ragular'; font-weight: 700; text-align: center; cursor: pointer;}

@media screen and (min-width: 821px) {
    .gift-store .product-item:hover .product-thumb .add-cart-btn {opacity: 1; visibility: visible; transform: translate(-50%, 0);}
    .gift-store .product-item:hover .product-thumb .add-cart-btn:hover {background: #000; border-color: #000;}
}

@media screen and (max-width: 1440px) {
    .gift-store .section-title { font-size: 70px; }
    .gift-store .product-grid { gap: 80px 15px; }
    .gift-store .product-thumb { width: 100%; }
    .gift-store .discount-price b { font-size: 24px; }
}

@media screen and (max-width: 1280px) {
    .gift-store .gift-shop-section { padding: 80px 0; }
    .gift-store .section-title { font-size: 60px; }
    .gift-store .product-grid { gap: 70px 15px; }
    .gift-store .product-name { font-size: 17px; }
    .gift-store .product-thumb .add-cart-btn { font-size: 20px; }
}

@media screen and (max-width: 1024px) {
    .gift-store .gift-shop-section { padding: 70px 0; }
    .gift-store .section-title { font-size: 50px;}
    .gift-store .product-grid { grid-template-columns: repeat(3, 1fr); gap: 60px 15px; }
    .gift-store .product-name { font-size: 16px; }
    .gift-store .product-price { font-size: 15px; }
    .gift-store .discount-price b { font-size: 22px; }
    .gift-store .btn-load-more { font-size: 18px; }
}

@media screen and (max-width: 820px) {
    .gift-store .gift-shop-section { padding: 60px 0;  max-width: 600px; margin: 0 auto;}
    .gift-store .section-title { margin-bottom: calc(50/50*1em); font-size: clamp(50px, 60/820*100vw, 60px); text-align: center;  }
    .gift-store .product-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 10px; }
    .gift-store .product-thumb .add-cart-btn { padding: calc(20/18*1em) calc(10/18*1em); opacity: 1; visibility: visible; transform: translate(-50%, 0); font-size: 18px; background: #000; border-color: #000; }
    .gift-store .btn-load-more { padding: calc(20/18*1em) calc(70/18*1em); font-size: 18px; }
}

@media screen and (max-width: 500px) {
    .gift-store .gift-shop-section { padding: 50px 0; }
    .gift-store .section-title { font-size: clamp(40px, 50/500*100vw, 50px); }
    .gift-store .product-grid { gap: 40px 10px; }
    .gift-store .product-name { font-size: clamp(14px, 15/500*100vw, 15px); }
    .gift-store .product-price { font-size: 14px; }
    .gift-store .discount-price b { font-size: clamp(18px, 20/500*100vw, 20px); }
    .gift-store .product-thumb .add-cart-btn { font-size: 16px; padding: calc(15/16*1em) calc(10/16*1em);}
    .gift-store .btn-load-more { padding: calc(15/16*1em) calc(50/16*1em); font-size: 16px; }
}

@media screen and (max-width: 360px) {
    .gift-store .gift-shop-section { padding: 40px 0; }
    .gift-store .section-title { font-size: clamp(32px, 40/360*100vw, 40px); }
    .gift-store .product-grid { grid-template-columns: 1fr; gap: 30px; }
    .gift-store .product-name { font-size: clamp(13px, 14/360*100vw, 14px); }
    .gift-store .discount-price b { font-size: clamp(17px, 18/360*100vw, 18px); }
    .gift-store .product-thumb .add-cart-btn { font-size: 14px; }
    .gift-store .btn-load-more { font-size: 14px; }
}



/* 상품 상세 페이지 스타일 */
.gift-store-detail-section  {padding-top: 170px;}
.gift-store-detail .path {display: flex; align-items: center; font-size: 18px; gap: calc(5/18*1em); color: #7c7c7c; margin-bottom: calc(25/18*1em);}
.gift-store-detail .path b {color: #fff;}
.gift-store-detail .gift-info-wrap {display: flex;}
.gift-store-detail .gift-imgWrap {width: clamp(400px, 720/1440*100%, 720px); position: relative;}
.gift-store-detail .gift-imgWrap:after {content: ''; display: block; padding-top: calc(640/720*100%);}
.gift-store-detail .gift-imgWrap .imgWrap-inner {position: absolute; left: 0; top: 0; width: 100%; height: 100%; display: flex; gap: 10px;}

.gift-store-detail .gift-imgWrap .thumb-swiper-wrap {flex-shrink: 0; position: relative; height: 100%; width: calc(120/720*100%);}
.gift-store-detail .gift-imgWrap .thumb-swiper-wrap .swiper {position: relative; height: 100%; width: 100%;}
.gift-store-detail .gift-imgWrap .thumb-swiper-wrap .swiper-slide {cursor: pointer; width: 100%; height: auto; position: relative;}
.gift-store-detail .gift-imgWrap .thumb-swiper-wrap .swiper-slide:after {content: ''; display: block; padding-top: calc(120/120*100%);}
.gift-store-detail .gift-imgWrap .thumb-swiper-wrap .swiper-slide img {position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; object-fit: cover;}

.gift-store-detail .gift-imgWrap .main-swiper-wrap {position: relative; width: 100%; min-width: 0;}
.gift-store-detail .gift-imgWrap .main-swiper-wrap .swiper {position: relative; height: 100%; width: 100%;}
.gift-store-detail .gift-imgWrap .main-swiper-wrap .swiper-slide {width: 100%; height: auto; position: relative;}
.gift-store-detail .gift-imgWrap .main-swiper-wrap .swiper-slide:after {content: ''; display: block; padding-top: calc(640/590*100%);}
.gift-store-detail .gift-imgWrap .main-swiper-wrap .swiper-slide img {position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; object-fit: cover;}

.gift-store-detail .gift-info {padding-left: 120px; flex-direction: column; flex-shrink: 0; flex-grow: 1;}
.gift-store-detail .gift-info .gift-name {font-size: 48px; font-weight: 600; letter-spacing: -0.02em; color: #fff; padding-bottom: calc(30/48*1em); line-height: 1.3;}
.gift-store-detail .gift-info .gift-desc {font-size: 18px; letter-spacing: -0.02em; color: #fff; padding-bottom: calc(40/18*1em); opacity: .6; line-height: calc(29/18*1em);}
.gift-store-detail .gift-info .priceWrap {display: flex; align-items: flex-end;}
.gift-store-detail .gift-info .priceWrap .gift-price {display: flex; flex-direction: column; width: 100%;}
.gift-store-detail .gift-info .priceWrap .gift-price .original-price {font-size: 22px; letter-spacing: -0.02em; color: #fff; opacity: .4; text-decoration: line-through;  padding-bottom: calc(15/22*1em);}
.gift-store-detail .gift-info .priceWrap .gift-price .original-price small {font-size: 16px; letter-spacing: -0.02em;}
.gift-store-detail .gift-info .priceWrap .gift-price .finally-price {display: flex; align-items: flex-end; width: 100%;}
.gift-store-detail .gift-info .priceWrap .gift-price .finally-price .discount-price {width: 100%; display: block; font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: #fff; padding-bottom: calc(40/18*1em); 
    /* border-bottom: 1px solid rgba(255, 255, 255, .2); */
    /* 주석요청 0918 */
}
.gift-store-detail .gift-info .priceWrap .gift-price .finally-price .discount-price b {font-size: 32px; letter-spacing: -0.02em; color: #fff;}

.gift-store-detail .gift-info .gift-order-count-wrap {border-bottom: 1px solid #fff; display: flex; align-items: center; justify-content: space-between; padding: calc(45/20*1em) 0; font-size: 20px;}
.gift-store-detail .gift-info .gift-order-count-wrap .selected-gift {font-size: inherit; color: #fff; font-weight: 600; letter-spacing: -0.02em;}
.gift-store-detail .gift-info .gift-order-count-wrap .gift-order-count {display: flex; align-items: center; font-size: 18px; font-weight: 300; letter-spacing: -0.02em;}
.gift-store-detail .gift-info .gift-order-count-wrap .gift-order-count button {display: flex; align-items: center; justify-content: center; font-size: inherit; color: #fff; letter-spacing: -0.02em; background: transparent; border: none; outline: none; cursor: pointer;}

.gift-store-detail .gift-info .gift-order-count-wrap .gift-order-count input {margin: 0 calc(10/18*1em); font-size: inherit; color: #fff; font-weight: 300; letter-spacing: -0.02em; background: transparent; border: 1px solid rgba(255, 255, 255, .2); outline: none; cursor: pointer; width: calc(72/18*1em); height: calc(37/18*1em); text-align: center; cursor: text;}

@media screen and (min-width: 821px) {
    .gift-store-detail .gift-info .gift-order-count-wrap .gift-order-count button:hover {color: #f6ad3c;}
}

.gift-store-detail .gift-info .gift-total-price {display: flex; align-items: center; justify-content: space-between; padding: calc(50/18*1em) 0 calc(100/18*1em); font-size: 18px; color: #fff;}
.gift-store-detail .gift-info .gift-total-price .total-price {font-size: inherit; color: #fff; font-weight: 600; letter-spacing: -0.02em;}
.gift-store-detail .gift-info .gift-total-price .total-price-value {font-size: inherit; color: #fff; font-weight: 600; letter-spacing: -0.02em;}
.gift-store-detail .gift-info .gift-total-price .total-price-value b {font-size: 32px; letter-spacing: -0.02em; color: #fff;}

.gift-store-detail .gift-info .gift-order-btn-wrap {display: flex; align-items: center; justify-content: space-between; font-size: 22px; color: #fff;}
.gift-store-detail .gift-info .gift-order-btn-wrap button {font-size: inherit; color: #fff; font-family: 'disol_headline'; letter-spacing: -0.025em; background: transparent; border: 1px solid #fff; border-radius: calc(10/22*1em); outline: none; cursor: pointer; width: calc(290/22*1em); height: calc(70/22*1em); box-sizing: border-box; transition: .4s;}
.gift-store-detail .gift-info .gift-order-btn-wrap button.btn-gift-order {background: #fff; color: #000; font-weight: 600; }
.gift-store-detail .gift-info .gift-order-btn-wrap button span {position: relative; z-index: 1;}

@media screen and (max-width: 1440px) {
    .gift-store-detail-section { padding-top: 150px; }
    .gift-store-detail .gift-info-wrap {align-items: flex-start;}
    .gift-store-detail .gift-imgWrap {position: relative;}
    .gift-store-detail .gift-imgWrap:after {content: ''; display: block; padding-top: calc(640/720*100%);}
    .gift-store-detail .gift-info { padding-left: 50px; }
    .gift-store-detail .gift-info .gift-name { font-size: 44px; }
    .gift-store-detail .gift-info .gift-desc { font-size: 17px; }
    .gift-store-detail .gift-info .priceWrap .gift-price .finally-price .discount-price b { font-size: 30px; }
}

@media screen and (max-width: 1280px) {
    .gift-store-detail-section { padding-top: 80px; }
    .gift-store-detail .path { font-size: 16px; margin-bottom: calc(20/16*1em); }
    .gift-store-detail .gift-info { padding-left: 40px; }
    .gift-store-detail .gift-info .gift-name { font-size: 40px; }
    .gift-store-detail .gift-info .gift-desc { font-size: 16px; line-height: calc(26/16*1em); }
    .gift-store-detail .gift-info .priceWrap .gift-price .original-price { font-size: 20px; }
    .gift-store-detail .gift-info .priceWrap .gift-price .finally-price .discount-price b { font-size: 28px; }
    .gift-store-detail .gift-info .gift-order-count-wrap { font-size: 18px; padding: calc(40/18*1em) 0; }
    .gift-store-detail .gift-info .gift-order-count-wrap .gift-order-count { font-size: 16px; }
    .gift-store-detail .gift-info .gift-total-price { font-size: 16px; padding: calc(40/16*1em) 0 calc(80/16*1em); }
    .gift-store-detail .gift-info .gift-total-price .total-price-value b { font-size: 28px; }
    .gift-store-detail .gift-info .gift-order-btn-wrap { font-size: 20px; gap: 10px;}
    .gift-store-detail .gift-info .gift-order-btn-wrap button { width: calc(260/20*1em); height: calc(65/20*1em); }
}

@media screen and (max-width: 1024px) {
    .gift-store-detail .path { font-size: 15px; }
    .gift-store-detail .gift-info { padding-top: 40px; }
    .gift-store-detail .gift-info .gift-name { font-size: 36px; }
    .gift-store-detail .gift-info .gift-desc { font-size: 15px; line-height: calc(24/15*1em); }
    .gift-store-detail .gift-info .priceWrap .gift-price .original-price { font-size: 18px; }
    .gift-store-detail .gift-info .priceWrap .gift-price .finally-price .discount-price b { font-size: 26px; }
    .gift-store-detail .gift-info .gift-order-btn-wrap button { width: calc(240/20*1em); }
}

@media screen and (max-width: 820px) {
    .gift-store-detail-section { padding-top: 40px; }
    .gift-store-detail .path { font-size: 14px; }
    .gift-store-detail .gift-imgWrap .thumb-swiper-wrap { width: calc(100/720*100%); }
    .gift-store-detail .gift-info-wrap {flex-direction: column; align-items: center;}
    .gift-store-detail .gift-info {padding-left: 0;}
    .gift-store-detail .gift-info .gift-name { font-size: 32px; text-align: center; }
    .gift-store-detail .gift-info .gift-desc { font-size: 14px; line-height: calc(22/14*1em); text-align: center; }
    .gift-store-detail .gift-info .priceWrap { justify-content: center; }
    .gift-store-detail .gift-info .priceWrap .gift-price { width: auto; }
    .gift-store-detail .gift-info .priceWrap .gift-price .original-price { font-size: 16px; text-align: center; }
    .gift-store-detail .gift-info .priceWrap .gift-price .finally-price .discount-price { text-align: center; }
    .gift-store-detail .gift-info .priceWrap .gift-price .finally-price .discount-price b { font-size: 24px; }
    .gift-store-detail .gift-info .gift-order-count-wrap { font-size: 16px; }
    .gift-store-detail .gift-info .gift-order-count-wrap .gift-order-count { font-size: 14px; }
    .gift-store-detail .gift-info .gift-total-price { font-size: 15px; padding: calc(30/15*1em) 0 calc(60/15*1em); }
    .gift-store-detail .gift-info .gift-total-price .total-price-value b { font-size: 22px; }
    .gift-store-detail .gift-info .gift-order-btn-wrap { font-size: 18px; }
    .gift-store-detail .gift-info .gift-order-btn-wrap button { width: calc(220/18*1em); height: calc(60/18*1em); }
}

@media screen and (max-width: 500px) {
    .gift-store-detail .path { font-size: 13px; }
    .gift-store-detail .gift-imgWrap {width: 100%;}
    .gift-store-detail .gift-imgWrap:after {display: none;}
    .gift-store-detail .gift-imgWrap .imgWrap-inner { flex-direction: column-reverse; position: static;}
    .gift-store-detail .gift-imgWrap .thumb-swiper-wrap { width: 100%; height: 80px; margin-top: 10px; }
    .gift-store-detail .gift-imgWrap .thumb-swiper-wrap .swiper { height: 100%; }
    .gift-store-detail .gift-imgWrap .thumb-swiper-wrap .swiper-slide { width: 80px; }
    .gift-store-detail .gift-imgWrap .thumb-swiper-wrap .swiper-slide:after { padding-top: 100%; }
    .gift-store-detail .gift-imgWrap .main-swiper-wrap .swiper-slide:after { padding-top: 100%; }
    .gift-store-detail .gift-info {width: 100%;}
    .gift-store-detail .gift-info .gift-name { font-size: 28px; }
    .gift-store-detail .gift-info .gift-desc { word-break: keep-all; font-size: 13px; line-height: calc(20/13*1em); }
    .gift-store-detail .gift-info .gift-desc br {display: none;}
    .gift-store-detail .gift-info .priceWrap .gift-price .original-price { font-size: 15px; }
    .gift-store-detail .gift-info .priceWrap .gift-price .finally-price .discount-price b { font-size: 22px; }
    .gift-store-detail .gift-info .gift-order-count-wrap { font-size: 15px; }
    .gift-store-detail .gift-info .gift-order-count-wrap .gift-order-count { font-size: 13px; }
    .gift-store-detail .gift-info .gift-total-price { font-size: 14px; padding: calc(25/14*1em) 0 calc(50/14*1em); }
    .gift-store-detail .gift-info .gift-total-price .total-price-value b { font-size: 20px; }
    .gift-store-detail .gift-info .gift-order-btn-wrap { font-size: 16px; flex-direction: column; gap: 10px; }
    .gift-store-detail .gift-info .gift-order-btn-wrap button { width: 100%; height: calc(55/16*1em); }
}

@media screen and (max-width: 360px) {
    /* .gift-store-detail-section { padding-top: 90px; } */
    .gift-store-detail .path { font-size: 12px; }
    .gift-store-detail .gift-info .gift-name { font-size: 24px; }
    .gift-store-detail .gift-info .gift-desc { font-size: 12px; line-height: calc(18/12*1em); }
    .gift-store-detail .gift-info .priceWrap .gift-price .original-price { font-size: 14px; }
    .gift-store-detail .gift-info .priceWrap .gift-price .finally-price .discount-price b { font-size: 20px; }
    .gift-store-detail .gift-info .gift-order-count-wrap { font-size: 14px; }
    .gift-store-detail .gift-info .gift-order-count-wrap .gift-order-count { font-size: 12px; }
    .gift-store-detail .gift-info .gift-total-price { font-size: 13px; }
    .gift-store-detail .gift-info .gift-total-price .total-price-value b { font-size: 18px; }
    .gift-store-detail .gift-info .gift-order-btn-wrap { font-size: 14px; }
    .gift-store-detail .gift-info .gift-order-btn-wrap button { height: calc(50/14*1em); }
}



.gift-article {padding-top: 160px;}
.gift-article .article-tab {display: flex; font-size: 20px; color: #fff; border-top: 2px solid #fff; border-bottom: 1px solid rgba(255, 255, 255, .2);}
.gift-article .article-tab .tab-item {padding: calc(20/20*1em) 0; cursor: pointer; flex: 1; text-align: center; border-bottom: 1px solid transparent; transition: .4s;}
.gift-article .article-tab .tab-item.active {border-color: #fff;}

.gift-article .article-content {position: relative;}
.gift-article .article-content .article-content-item {display: none; min-height: 700px; color: #fff; padding: calc(10/18*1em); background: #151515;}
.gift-article .article-content .article-content-item.active {display: block;}

.gift-article .article-order-bar {box-sizing: border-box; display: flex; align-items: center; justify-content: space-between; padding: calc(10/22*1em) calc(20/22*1em); background: #000; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: calc(1320/1440*100%); font-size: 22px;}
.gift-article .article-order-bar .img {width: 60px; position: relative;}
.gift-article .article-order-bar .img:after {content: ''; display: block; padding-top: 100%;}
.gift-article .article-order-bar .img img {position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; object-fit: cover;}
.gift-article .article-order-bar .info {flex-grow: 1; display: flex; align-items: center;}
.gift-article .article-order-bar .info .name {font-size: inherit; color: #fff; font-weight: 700; letter-spacing: -0.025em; padding-left: calc(20/22*1em); padding-right: calc(44/22*1em);}
.gift-article .article-order-bar .info .price {font-size: inherit; color: #fff; font-weight: 400; letter-spacing: -0.025em;}
.gift-article .article-order-bar .btn-wrap {display: flex; align-items: center; font-size: 20px; gap: calc(10/20*1em);}
.gift-article .article-order-bar .btn-wrap button {font-size: inherit; color: #fff; font-family: 'disol_headline'; letter-spacing: -0.025em; background: transparent; border: 1px solid #fff; border-radius: calc(10/20*1em); outline: none; cursor: pointer; width: calc(160/20*1em); height: calc(54/20*1em); box-sizing: border-box; transition: .4s;}
.gift-article .article-order-bar .btn-wrap button.btn-gift-order {background: #f6ad3c; border-color: #f6ad3c; color: #000; font-weight: 600; }
.gift-article .article-order-bar .btn-wrap button.btn-gift-order:before {background: #fff;}
.gift-article .article-order-bar .btn-wrap button span {position: relative; z-index: 1;}

@media screen and (max-width: 1440px) {
    .gift-article { padding-top: 140px; }
    .gift-article .article-tab { font-size: 18px; }
    .gift-article .article-content .article-content-item { min-height: 650px; }
    .gift-article .article-order-bar { font-size: 20px; }
    .gift-article .article-order-bar .btn-wrap { font-size: 18px; }
    .gift-article .article-order-bar .btn-wrap button { width: calc(150/18*1em); height: calc(50/18*1em); }
}

@media screen and (max-width: 1280px) {
    .gift-article { padding-top: 130px; }
    .gift-article .article-tab { font-size: 17px; }
    .gift-article .article-content .article-content-item { min-height: 600px; }
    .gift-article .article-order-bar { font-size: 18px; }
    .gift-article .article-order-bar .img { width: 55px; }
    .gift-article .article-order-bar .btn-wrap { font-size: 16px; }
    .gift-article .article-order-bar .btn-wrap button { width: calc(140/16*1em); height: calc(48/16*1em); }
}

@media screen and (max-width: 1024px) {
    .gift-article { padding-top: 120px; }
    .gift-article .article-tab { font-size: 16px; }
    .gift-article .article-content .article-content-item { min-height: 550px; }
    .gift-article .article-order-bar { font-size: 17px; width: calc(1000/1024*100%); }
    .gift-article .article-order-bar .img { width: 50px; }
    .gift-article .article-order-bar .btn-wrap { font-size: 15px; }
    .gift-article .article-order-bar .btn-wrap button { width: calc(130/15*1em); height: calc(46/15*1em); }
}

@media screen and (max-width: 820px) {
    .gift-article { padding-top: 100px; }
    .gift-article .article-tab { font-size: 15px; }
    .gift-article .article-content .article-content-item { min-height: 500px; }
    .gift-article .article-order-bar {position: static; transform: none; font-size: 16px; width: 100%; flex-direction: column; align-items: center; gap: 20px; padding: 20px;}
    .gift-article .article-order-bar .img { width: 30%; }
    .gift-article .article-order-bar .info { width: 100%; flex-direction: column; align-items: center; gap: 10px;}
    .gift-article .article-order-bar .info .name { padding-right: 0; padding-left: 0;}
    .gift-article .article-order-bar .btn-wrap { font-size: 14px; }
    .gift-article .article-order-bar .btn-wrap button { width: calc(120/14*1em); height: calc(35/14*1em); }
}

@media screen and (max-width: 500px) {
    .gift-article { padding-top: 80px; }
    .gift-article .article-tab { font-size: 14px; }
    .gift-article .article-content .article-content-item { min-height: 450px; }
    .gift-article .article-order-bar { font-size: 14px; width: 100%; flex-wrap: wrap; }
    .gift-article .article-order-bar .info { width: calc(100% - 40px); }
    .gift-article .article-order-bar .info .name { padding-right: 0; }
    .gift-article .article-order-bar .btn-wrap { width: 100%; margin-top: 10px; justify-content: space-between; }
    .gift-article .article-order-bar .btn-wrap button { width: 48%; height: calc(40/14*1em); }
}

@media screen and (max-width: 360px) {
    .gift-article { padding-top: 70px; }
    .gift-article .article-tab { font-size: 13px; }
    .gift-article .article-content .article-content-item { min-height: 400px; }
    .gift-article .article-order-bar { font-size: 13px; }
    .gift-article .article-order-bar .btn-wrap { font-size: 13px; }
    .gift-article .article-order-bar .btn-wrap button { height: calc(38/13*1em); }
}
