@charset "UTF-8";
:root {
  --primary-color: #796049;
  --secondary-color: #eee6d9;
  --point-color: #df600e;
  --naver-color: #00c951;
  --kakao-color: #ffc940;
  --background-color: #f7f5ed;
  --text-color: #222;
  --muted-text-color: #666;
  --light-text-color: #eee6d9;
  --border-color: #eee6d9;

  --s-section: 80px;
  --s-gap: 30px;
  --fs-display: 34px;
  --fs-title: 24px;
  --fs-body: 19px;
  --container-px: 1rem;
}

@media (max-width: 768px) {
  :root {
    --s-section: 40px;
    --s-gap: 15px;
    --fs-display: 24px;
    --fs-title: 20px;
    --fs-body: 15px;
    --container-px: 20px;
  }
}

/* 기본리셋 */
* {
  box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
p,
button,
table,
th,
td,
pre {
  margin: 0;
  padding: 0;
}

body,
div,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
p,
th,
td,
input,
textarea,
select,
button,
pre,
a {
  font-family: inherit;
  color: inherit;
}

textarea {
  width: 100%;
}

select,
input,
img,
button {
  vertical-align: middle;
}

ul,
ol,
li {
  list-style-type: none;
}

.hide,
legend,
hr,
caption span {
  position: absolute;
  left: -3000%;
}

em,
address {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

a {
  color: #666;
  text-decoration: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

fieldset,
img,
button {
  border: 0;
  background: none;
}

select {
  height: 30px \0 IE8;
}

ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}
/* IE8 전용*/
input:focus {
  outline: none;
}

.clear {
  zoom: 1;
  clear: both;
}

.clear:after {
  content: "";
  display: block;
  clear: both;
}

::-moz-placeholder {
  color: #7d7d7d !important;
  opacity: 1;
}

::placeholder {
  color: #7d7d7d !important;
  opacity: 1;
}

:-webkit-input-placeholder {
  color: #7d7d7d !important;
  font-size: var(--fs-title);
}

:-ms-input-placeholder {
  color: #7d7d7d !important;
}

.blind {
  text-indent: -99999px;
  position: absolute;
  top: -9999px;
  left: -9999px;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: none;
  background-color: transparent;
}
input {
  background-color: #fff;
}
input:read-only {
  background-color: #eef3fb;
}

body {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 23px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gowun Batang", serif;
}

.container {
  max-width: 1649px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.container.sm {
  max-width: 1185px;
}
.section-py {
  padding: var(--s-section) 0;
}
.d-flex {
  display: flex;
}
.f-col {
  flex-direction: column;
}
.f-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.f-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/**
  * Button
  */
.button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 25px;
  color: white;
  font-size: 16px;
  font-family: "pretendard", sans-serif;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}
.button:hover {
  opacity: 0.9;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.primary-btn.sub {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

.outline-btn {
  background-color: white;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.outline-btn.whiteBg {
  background-color: white;
  color: var(--primary-color);
}
.outline-btn.primaryBg {
  background-color: var(--primary-color);
  color: white;
}
.outline-btn.reverse {
  background-color: var(--primary-color);
  border-color: white;
  color: white;
}

.buy-btn {
  padding: 10px 15px;
  border-radius: 8px;
  font-size: var(--fs-body);
}
.buy-btn.rounded {
  border-radius: 25px;
}

.button.kakao {
  background-color: var(--kakao-color);
  border-color: var(--kakao-color);
  color: #222;
}

.button.naver {
  background-color: var(--naver-color);
  border-color: var(--naver-color);
  color: white;
}

/**
  * badge
  */

.badge-box {
  text-align: left;
  background: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.badge {
  width: max-content;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
}

.badge.outline-primary {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.badge i.circle {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--point-color);
}
.badge.red {
  background-color: #fb2c36;
  color: white;
}
.badge.red .circle {
  background-color: white;
}
/* Container */
/* .container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
} */
/* 
@media (min-width: 1024px) {
  .container {
    max-width: 1649px;
  }
  .container.sm {
    max-width: 1185px;
  }
} */

header,
section,
footer {
  width: 100%;
}
section {
  width: 100%;
  background-color: white;
  color: var(--text-color);
}
section.primaryBg,
footer {
  background-color: var(--primary-color);
  color: white;
}
section.secondaryBg {
  background-color: var(--background-color);
  color: var(--text-color);
}
.primaryBg .section-header p {
  color: var(--light-text-color);
}
/* Header */
.header {
  background-color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1001;
  transition:
    box-shadow 0.3s ease,
    border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: var(--fs-title);
  font-weight: bold;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 50px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-size: 22px;
  letter-spacing: -1.5px;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}
.nav-button-wrap {
  width: 30%;
  display: flex;
  gap: 15px;
}

/* 햄버거 메뉴 */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* 모바일 네비게이션 팝업 */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding-top: 64px; /* 헤더 높이만큼 여백 */
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px); /* 헤더를 제외한 전체 높이 */
  background-color: white;
  z-index: 999;
  padding: 80px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: top 0.4s ease-in-out;
  overflow-y: auto;
}

.mobile-nav.active {
  top: 64px; /* 헤더 아래에서 시작 */
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-nav-links .nav-link {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  padding: 10px 0;
}

.mobile-nav-buttons {
  width: 100%;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.products-grid,
.reviews-grid,
.consultation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-gap);
}

/**
  * Section header
  */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.section-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.section-title.center {
  text-align: center;
}
.section-title .subtitle {
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
}
.section-title h2 {
  font-size: var(--fs-title);
  line-height: 1.3;
}
.section-title p {
  padding-top: 30px;
  color: var(--primary-color);
  font-size: var(--fs-body);
}
.section-header .view-all {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* Main Section */
.main-banner {
  padding: 20px 0;
}
.main-banner-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  height: 948px;
}

.main-banner-text-wrap {
  gap: 50px;
  line-height: 1.2;
}

.main-banner-title {
  font-size: 84px;
  font-weight: 700;
  color: var(--text-color);
}
.main-banner-title span,
.main-banner-description {
  color: var(--primary-color);
}

.main-banner-description {
  font-weight: 400;
  font-size: var(--fs-title);
}

.main-banner-button-wrap {
  gap: 15px;
  width: 40%;
}

.rating-wrap {
  gap: 4px;
}
.stars {
  gap: 2px;
}
.stars .star {
  fill: #ffc93f;
  width: 20px;
  height: 20px;
}
.rating-text {
  font-size: var(--fs-body);
}

.main-banner-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-banner-image-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.main-banner-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.top-badge,
.bottom-badge {
  position: absolute;
  padding: 20px;
}
.top-badge {
  top: 30px;
  right: 50px;
}
.bottom-badge {
  bottom: 30px;
  left: 50px;
}
.top-badge span {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
}
.top-badge h6 {
  display: block;
  font-weight: 600;
  font-size: var(--fs-body);
  line-height: 1;
}

.bottom-badge span {
  display: flex;
  gap: 6px;
  font-size: var(--fs-body);
  font-weight: 600;
}
.bottom-badge span i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: var(--primary-color);
}
.bottom-badge p {
  padding-top: 10px;
  line-height: 1.2;
  font-size: 14px;
  color: var(--primary-color);
}

.sale-badge-wrap {
  position: absolute;
  bottom: 20px;
  right: -70px;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-gap);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--background-color);
  padding: 35px 25px;
  border: 1px solid #eee6d9;
  border-radius: 20px;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-title);
}
.feature-icon.blue {
  background: #e3ecff;
}
.feature-icon.green {
  background: #edf3ef;
}
.feature-icon.orange {
  background: #f1e2d3;
}
.feature-icon.purple {
  background: #f0eef4;
}
.feature-card h3 {
  font-size: 27px;
  font-weight: 500;
}
.feature-card p {
  font-size: var(--fs-body);
  color: var(--primary-color);
}

/* Live Deals Section */
.deals-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.deals-text-wrap {
  gap: var(--s-gap);
}
.deals-text-wrap h2 {
  font-size: 50px;
  line-height: 1.2;
}
.deals-text-wrap h2 .highlight {
  color: var(--point-color);
}
.deals-text-wrap p {
  font-size: var(--fs-body);
  color: #eee6d9;
}
.countdown {
  gap: 15px;
}
.time-box {
  min-width: 70px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 20px;
  text-align: center;
}
.time-box .time {
  display: block;
  font-weight: 700;
  font-size: 27px;
  color: #ffffff;
  font-family: "Cousine";
  text-align: center;
}
.time-box .label {
  display: block;
  text-transform: uppercase;
  color: #eee6d9;
  font-size: 12px;
  font-weight: 700;
  font-family: "Cousine";
  text-align: center;
}
.deals-button-wrap {
  width: 45%;
  gap: 10px;
}

.deals-image-wrap {
  position: relative;
  /* width: 670px; */
  height: 450px;
  margin-left: auto;
  border: 10px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
}
.deals-image-wrap .image-card {
  height: 370px;
}
.deals-image-wrap .image-card img {
  width: 100%;
  height: 100%;
}
.info-card-wrap {
  background: white;
  padding: 20px;
}
.info-card-wrap .info-card {
  display: flex;
  align-items: center;
  gap: 15px;
}
.info-card-wrap .img-wrap {
  width: 73px;
  height: 73px;
  border-radius: 8px;
}
.info-card-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.info-text {
  color: #222222;
}
.info-text .name {
  font-size: var(--fs-title);
  font-weight: 600;
}
.price-info {
  display: flex;
  align-items: baseline;
  font-size: 28px;
}
.price-info .discount {
  font-weight: 600;
  color: #fb2c36;
}
.original-price {
  font-size: var(--fs-body);
  color: #99a1af;
  text-decoration: line-through;
}
.info-card-btn-wrap {
  margin-left: auto;
}

/* Products Section */
.product-card {
  height: 527px;
  border: 1px solid #eee6d9;
  background: white;
  border-radius: 30px;
}
.products-grid .product-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.products-grid .product-image {
  position: relative;
  border-radius: 30px;
  height: 275px;
}

.products-grid .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.products-grid .product-image .sale-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--point-color);
  padding: 4px 16px;
  border-radius: 20px;
  color: white;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}

.products-grid .product-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: white;
  padding: 20px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.products-grid .info-badge {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.products-grid .product-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.product-tags .tag {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 11px;
}

.product-info h3 {
  font-size: var(--fs-body);
  font-weight: 700;
}

.product-info .product-desc {
  font-size: 11px;
  color: var(--primary-color);
}
.product-info .product-desc span {
  display: block;
}
.product-price {
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee6d9;
}
.product-price .price-info {
  display: flex;
  flex-direction: column;
}
.product-price .price-info .original-price {
  font-size: 12px;
  text-decoration: line-through;
  color: #99a1af;
}
.product-price .price-info .price {
  font-weight: 700;
  font-size: var(--fs-title);
  color: var(--primary-color);
}
.product-card-btn-wrap button {
  padding: 6px 12px;
  font-size: 15px;
}

/* Reviews Section */
.reviews {
  background: white;
}
.review-card {
  position: relative;
  height: 238px;
  padding: 30px;
  border-radius: 28px;
  background-color: #f7f5ed ;
  border: 1px solid #eee6d9;
}
.review-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
}
.reviewer-info {
}
.review-text {
  font-size: var(--fs-body);
  color: var(--primary-color);
}
.reviewer-info {
  display: flex;
  flex-direction: column;
}
.reviewer-name {
  font-size: 16px;
  color: #222222;
}
.review-buy {
  font-size: 13px;
  color: var(--primary-color);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c3471b;
}

/* Consultation Section */
.consultation {
  text-align: center;
}

.consultation .section-title p {
  color: #eee6d9;
  padding-top: 20px;
}

.consultation-grid {
  margin-bottom: 40px;
}

.consultation-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 266px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.consultation-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.consultation-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consultation-card .icon img {
  width: 60%;
}
.icon.yellow {
  background-color: var(--kakao-color);
}
.icon.white {
  background-color: white;
}
.icon.green {
  background-color: var(--naver-color);
}

.consultation-card h3 {
  font-size: 26px;
  color: #ffffff;
}

.consultation-card p {
  font-size: 15px;
  color: #eee6d9;
}
.consultation-note {
  display: inline-block;
  padding: 20px 70px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.03);
  font-size: 15px;
  color: #ffffff;
}

/* Showroom Section */
.showroom-grid {
  display: flex;
  gap: var(--s-gap);
  justify-content: center;
  flex-wrap: wrap;
}
.showroom .section-title p {
  padding-top: 20px;
}
.showroom-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 20px 30px;
  text-align: left;
}
.showroom-card h3 {
  font-size: 30px;
  color: var(--text-color);
}
.showroom-card p {
  font-size: var(--fs-body);
  color: var(--primary-color);
}

.showroom-image {
  overflow: hidden;
  height: 163px;
}
.showroom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  padding: 60px 0 30px;
}

.footer-content {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-brand {
  gap: var(--s-gap);
}
.footer-brand p {
  font-size: var(--fs-body);
  color: var(--light-text-color);
}

.social-links {
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  background-color: rgba(248, 245, 238, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.social-icon img {
  width: 100%;
}

.social-icon:hover {
  background-color: rgba(248, 245, 238, 0.2);
}

.footer-links {
  gap: var(--s-gap);
}
.link-group {
  gap: 20px;
  padding: 0 40px;
}
.link-group h4 {
  font-size: var(--fs-title);
  color: var(--light-text-color);
  font-weight: 700;
}
.link-group a.strong {
  font-weight: 600;
}
.link-group a {
  font-size: var(--fs-body);
  color: var(--light-text-color);
  transition: color 0.3s;
}

.link-group a:hover {
  color: white;
}

.link-group p {
  font-size: 16px;
  line-height: 20px;
}

.footer-bottom p {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--light-text-color);
  line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .main-banner-content,
  .deals-content {
    flex-direction: column;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid,
  .reviews-grid,
  .consultation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-banner-content {
    height: auto;
    gap: var(--s-gap);
    padding: 40px 0;
  }

  .nav-button-wrap {
    width: 40%;
  }

  /* 라이브딜 이미지 래퍼 반응형 */
  .deals-image-wrap {
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  /* 헤더 모바일 */
  .nav {
    display: none;
  }

  .nav-button-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    gap: 8px;
    padding: 12px var(--container-px);

    background: linear-gradient(
      to top,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.65) 40%,
      rgba(255, 255, 255, 0.3) 70%,
      rgba(255, 255, 255, 0) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 995;
    box-sizing: border-box;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }
  .nav-button-wrap.is-hidden {
    opacity: 0;
    transform: translateY(12px);
    visibility: hidden;
    pointer-events: none;
  }
  .nav-button-wrap .button {
    flex: 1;
  }

  .hamburger-menu {
    display: flex;
  }

  .header {
    z-index: 1000;
    padding: 15px 0;
  }
  .logo {
    width: 62%;
  }
  .logo img {
    width: 100%;
    height: auto;
  }

  /* 섹션 */
  .main-banner {
    padding: 0;
  }

  /* 메인 배너 섹션 - PC와 동일한 순서 유지 */
  .main-banner-content {
    grid-template-columns: 1fr;
    height: auto;
    gap: var(--s-gap);
  }
  .main-banner-text-wrap {
    gap: var(--s-gap);
  }
  .main-banner-title {
    font-size: 36px;
    line-height: 1.3;
  }

  .main-banner-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .main-banner-button-wrap {
    width: 100%;
  }

  /* 배지 크기 조정 */
  .top-badge,
  .bottom-badge {
    padding: 15px;
  }

  .top-badge {
    top: 20px;
    right: 20px;
  }

  .bottom-badge {
    bottom: 20px;
    left: 20px;
  }

  .top-badge h6 {
    font-size: 16px;
  }

  .bottom-badge span {
    font-size: 16px;
  }

  .bottom-badge p {
    font-size: 12px;
  }

  .sale-badge-wrap {
    display: none;
  }

  /* 배지 */
  .badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  .badge-box {
    padding: 8px 15px;
    font-size: 12px;
  }

  .secondaryBg.products .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .section-title h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .section-title p {
    font-size: 14px;
    padding-top: 15px;
  }

  .section-title .subtitle {
    font-size: 11px;
  }

  /* 그리드 */
  .features-grid,
  .products-grid,
  .reviews-grid,
  .consultation-grid,
  .showroom-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* 피처 카드 */
  .features {
    padding: 0 0 30px 0;
  }
  .feature-card h3 {
    font-size: 20px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  /* 라이브딜 섹션 */
  .deals-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .info-card-wrap .img-wrap {
    display: none;
  }
  .deals-text-wrap h2 {
    font-size: 28px;
  }
  .original-price {
    font-size: 14px;
  }
  .deals-text-wrap p {
    font-size: 14px;
  }

  .countdown {
    gap: 10px;
  }

  .time-box {
    padding: 10px 15px;
  }

  .time-box .time {
    font-size: 24px;
  }

  .time-box .label {
    font-size: 10px;
  }

  .deals-button-wrap {
    flex-direction: column;
    width: 100%;
  }

  /* 라이브딜 이미지 래퍼 모바일 최적화 */
  .deals-image-wrap {
    width: 100%;
    height: auto;
    min-height: 350px;
  }

  .deals-image-wrap .image-card {
    height: 280px;
  }

  .info-card-wrap {
    flex-direction: column;
    gap: 15px;
  }

  .info-card-wrap .info-card {
    width: 100%;
  }

  .info-text .name {
    font-size: 16px;
  }

  .price-info {
    font-size: 20px;
  }

  .info-card-btn-wrap {
    width: 100%;
    margin-left: 0;
  }

  /* 제품 카드 */
  .product-card {
    height: auto;
  }

  .products-grid .product-image {
    height: 200px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .products-grid .product-desc {
    font-size: 13px;
  }

  .product-price .price-info .price {
    font-size: 20px;
  }

  .product-price .price-info .original-price {
    font-size: 14px;
  }

  /* 리뷰 카드 */
  .review-card {
    height: auto;
    padding: 20px;
  }

  .review-text {
    font-size: 14px;
  }

  .reviewer-name {
    font-size: 14px;
  }

  .review-buy {
    font-size: 12px;
  }

  /* 상담 카드 */
  .consultation-card {
    height: auto;
    padding: 30px 20px;
  }

  .consultation-card h3 {
    font-size: 20px;
  }

  .consultation-card p {
    font-size: 14px;
  }

  .consultation-note {
    font-size: 13px;
    padding: 15px 30px;
  }

  /* 쇼룸 카드 */
  .showroom-card {
    width: 100%;
    padding: 20px;
  }

  .showroom-card h3 {
    font-size: 20px;
  }

  .showroom-card p {
    font-size: 14px;
  }

  /* 푸터 */
  .footer {
    padding: 40px 0 30px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .link-group {
    padding: 0;
    gap: 15px;
  }

  .link-group h4 {
    font-size: 20px;
  }

  .link-group a {
    font-size: 15px;
  }

  .link-group p {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  /* 버튼 */
  .button {
    font-size: 14px;
    padding: 10px;
  }

  .buy-btn {
    font-size: 16px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .main-banner-title {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .time-box .time {
    font-size: 20px;
  }

  body {
    padding-bottom: 70px;
  }
  .time-box {
    padding: 8px 12px;
  }

  /* 작은 화면에서 이미지 최적화 */
  .deals-image-wrap {
    min-height: 300px;
  }

  .deals-image-wrap .image-card {
    height: 230px;
  }
}

