#confirmationBox {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5); /* 투명도 조절 */
     display: none;
     justify-content: center;
     align-items: center;
     z-index: 9999; /* 다른 요소들보다 위에 오도록 설정 */
 }
 #confirmationContent {
  	background-color: white;
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
 } 
 button.color {
    width: 140px;
    height: 40px;
    border: none;
    background: #F57249;
    border-radius: 2px;
    color: #fff;
}
button.white,
select.white,
input.white {
    display: inline-block;
    width: 140px;
    height: 30px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 3px;
    color: #000;
    padding: 2px;                  /* 브라우저 기본 패딩 제거 */
    box-sizing: border-box;      /* border 포함해서 height 계산 */
    line-height: 24px;           /* 텍스트가 중앙에 오도록 */
    font-size: 14px;             /* 동일한 폰트 크기 */
    vertical-align: middle;      /* 인라인 요소 정렬 */
}
button.white, input.white {
    box-sizing: border-box;            
    font-size: 14px;             
}
button.gray {
    width: 140px;
    height: 40px;
    border: none;
    background: #777;
    border-radius: 2px;
    color: #fff;
}
button.red {
  border: 1px solid red;
  color: red;
}
/* 페이지네이션 스타일 */
.pagination-wrapper { margin-top: 40px;  margin-bottom: 40px; display: flex; justify-content: center; }
.pagination { display: flex; list-style: none; gap: 6px; padding: 0; }
.pagination li a, .pagination li span {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}
.pagination li.active span {
  background: #000;
  color: #fff;
  border-color: #000;
}
.pagination li a:hover {
  border-color: #000;
  color: #000;
}

/* 섹션 */
.product-section {
  padding: 60px 0;
  background-color: #fff;
}

.section-group {
  display: flex;  
  gap: 40px;
  margin-bottom: 60px;  
  justify-content: space-between; /* 좌측과 우측 공간 분리 */
}

/* 섹션 타이틀 */
.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #000;
  margin-bottom: 32px;
  text-align: center;
}
.section-sub-title {
  font-size: 30px;
  font-weight: bold;
  color: #000; 
  padding-left: 12px;
  line-height: 1.2;
  margin: 0; /* h3 여백 제거 */
  min-width: 120px; /* 좌측 영역 고정 */
}
.section-sub-text {
  font-size: 16px;           
  font-weight: normal;       
  color: #555;              
  padding-left: 12px;
  line-height: 1.4;
  margin: 4px 0 0;           
  min-width: 260px;
}
/* 리스트 래퍼 */
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: left;
}

/* 개별 상품 카드 */
.product-item {
  width: 300px;
  box-sizing: border-box;
  text-align: left;  
  /* 높이 통일 위해 플렉스 레이아웃 적용 */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 'left' → 정식 값 */
  margin-bottom: 50px; /* ← 상품 간 간격 */
}
/* 상품 썸네일 */
.product-thumb {
  width: 305px;
  height: 305px;
  object-fit: cover;
  border-radius: 0px;
  border: 1px solid #eee;
  background-color: #f5f5f5;
}
.product-thumb:hover {
    border: 1px solid #ff0000;
}


/* 브랜드 */
.product-brand {
  font-size: 14px;
  color: #000;
  margin-top: 10px;      /* 10px → 6px (조밀) */
  line-height: 1.2;
}

/* 상품명 (한 줄 + 말줄임 유지) */
.product-name {
  font-size: 17px;
  color: #000;
  margin-top: 0;
  line-height: 1.2;

  white-space: nowrap;     /* 줄바꿈 금지 */
  overflow: hidden;        /* 넘치는 부분 감춤 */
  text-overflow: ellipsis; /* 넘치면 ... */
  width: 100%;             /* ellipsis 적용 위해 필요 */
}

/* 가격줄(할인율 / 정가 / 할인가) */
.product-price {
  margin-top: 2px;            /* 상품명과 간격 좁힘 */
    display: flex;
  flex-direction: column;
  
  align-items: baseline;      /* 숫자 기준선 맞춤 */
  gap: 10px;                  /* 요소 간격 (네가 선택한 값) */
  font-size: inherit;         /* 상위 폰트 크기 사용 */
  line-height: 1.1;
}

/* 할인율 → 정가 → 할인가 순서 */
.discount-rate {
  order: 1;
  font-size: 17px;
  font-weight: bold;
  color: #d32f2f;
  margin-right: 0; /* gap 사용하므로 제거 */
}

.original-price {
  order: 2;
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-right: 0;
}

.sale-price {
  order: 3;
  font-size: 17px;
  font-weight: bold;
  color: #000;
  margin-right: 0;
}
.separator {
  margin: 40px 0;
  border-top: 1px solid #000;
  text-align: center;
  position: relative;
}
.line {
  margin: 2px 0;
  border-top: 1px solid #ccc;
  text-align: center;
  position: relative;
}


.search-button {
  margin-left: auto;
}

.search-button .gray {
  height: 32px;
  padding: 0 20px;
}
.sort-search-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  gap: 20px;
  flex-wrap: wrap;
}

.sort-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}


.sort-options a {
  color: #333;
  text-decoration: none;
  margin-right: 12px;
}

.sort-options a.active {
  color: red;
  font-weight: normal;
}

.sort-options a:hover {
  text-decoration: underline;
}

#keyword {
  width: 200px;
  height: 32px;
  padding: 5px 24px 5px 8px; /* 오른쪽 패딩은 clear-btn 공간 확보 */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}
.product-info{
  display: flex;
  align-items: flex-start; 
  justify-content: space-between;
}
.custom-slider-container {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
    overflow: hidden;
}

/* 썸네일 활성 표시(선택사항) */
.thumbnail-item.active { outline: 2px solid #333; }

.custom-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    touch-action: pan-y;        /* ← 중요: 세로 스크롤은 그대로, 가로 스와이프만 인식 */
    cursor: grab;    
}
.custom-slider-track.no-transition {
    transition: none !important;
}
.custom-slider-track.dragging { transition: none; cursor: grabbing; }
.custom-slide {
    min-width: 100%;
    box-sizing: border-box;
}
.custom-slide img {
    width: 450px;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
}

.custom-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}
.custom-slider-btn.prev { left: 10px; }
.custom-slider-btn.next { right: 10px; }

.slide-counter {
    position: absolute;
    bottom: 10px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 5px;
}

/* 썸네일 목록 */
.thumbnail-list {
    display: flex;
    gap: 5px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.thumbnail-item {
    flex: 0 0 auto; /* 한 줄에 고정 */
    width: 60px;
    height: 60px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}
.thumbnail-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.thumbnail-item.active {
    border-color: #007bff;
}

/* 스크롤바 개선 (웹킷 브라우저) */
.thumbnail-list::-webkit-scrollbar {
    height: 6px;
}
.thumbnail-list::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 3px;
}
/* 리스트 래퍼 */
.product-order-info {
  width:100%;
  margin-left:20px;
  display: flex;
  flex-direction: column;
  justify-content: left;
}

.product-info-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.product-info-price {
  font-size: 20px;
  color: #d60000;
  font-weight: bold;
}
.product-info-desc {
  font-size: 16px;
  color: #666;
}
.product-info-code {
  font-size: 14px;
  color: #777;
}
.product-info-options label {
  display: block;
  margin-top: 12px;
  font-weight: 600;
}
.product-info-options select {
  width: 100%;
  max-width: 250px;
  height: 36px;
  padding: 6px 10px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  line-height: normal;
  vertical-align: middle;
  box-sizing: border-box;
  background: #fff; 
  color: #000; 
}
.product-info-qty {
  margin-top: 15px;
}
.product-info-qty input[type="number"] {
  width: 100%;
  max-width: 100px;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.delivery-info {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}
.product-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end; 
}
.btn-add-cart,
.btn-buy-now {
  padding: 12px 20px;
  font-size: 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.btn-add-cart {
  background-color: #222;
  color: #fff;
}
.btn-add-cart:hover {
  background-color: #000;
}
.btn-buy-now {
  background-color: #d60000;
  color: #fff;
}
.btn-buy-now:hover {
  background-color: #a60000;
}
/* ===============================
   2. 상품 상세 탭 영역
=============================== */
.product-tab-wrapper {
  max-width: 1280px;
  margin: 60px auto;
  padding-bottom: 40px;
}
.product-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid #ddd;
}
.product-tabs li {
  padding: 14px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 3px solid transparent;
  color: #555;
  transition: all 0.2s ease;
}
.product-tabs li.active {
  border-bottom: 3px solid #222;
  color: #222;
}
.product-tab-content {
  display: none;
  padding: 40px 0;
}
.product-tab-content.active {
  display: block;
}
.product-description-text {
  padding: 20px 0;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}
.product-description-text h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}
.product-detail-images img {
  max-width: 100%;
  display: block;
  margin-bottom: 30px;
}
.review-item,
.qna-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
.review-item strong,
.qna-item strong {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
}
.star {
  color: #f5b301;
  margin-left: 8px;
}
.exchange-policy {
  list-style: disc;
  padding-left: 20px;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}



.related-products {
  max-width: 1280px;
  margin-top: 50px;
}
.related-products h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
.related-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 20px;
  margin-bottom:20px;
}

.related-item {
  width: 23%;
  text-align: center;
}

.related-thumb {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #eee;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
}
.related-item .product-brand {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}
.related-item .product-name {
  font-size: 14px;
  margin-top: 4px;
  color: #333;
}
.related-item .product-price {
  font-size: 15px;
  font-weight: bold;
  margin-top: 6px;
  color: #d60000;
}
.related-item .product-origin-price {
  font-size: 14px;
  margin-top: 6px;
  color: #999;
  text-decoration: line-through;  
  display: flex;
  flex-direction: column;  
  align-items: baseline;      /* 숫자 기준선 맞춤 */  
}
.subcat-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin-bottom: 20px;
  list-style: none;
}

.subcat-link {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s;
}

.subcat-link:hover {
  background-color: #f5f5f5;
}

.subcat-link.active {
  font-weight: bold;
  background-color: #f0f0f0;
}
.qna-page-btn {
    margin: 0 3px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}
.qna-page-btn.active {
    background: #333;
    color: #fff;
    font-weight: bold;
}
.qna-item {
    margin-bottom: 1.2em;
    padding-bottom: 1em;
    border-bottom: 1px dashed #ddd;
}
.qna-content {
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f9f9f9;
    white-space: pre-line;
    font-size: 14px;
    line-height: 1; /* 기존보다 살짝 줄임 */
}
#review-pagination,
#qna-pagination  {
    display: flex;
    justify-content: center;
    gap: 6px; /* 버튼 간격 */
    padding-left: 0;
}
.pagination-wrapper ul.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 4px;
    margin-top: 10px;
}

.pagination-wrapper ul.pagination li {
    font-size: 14px;
}

.pagination-wrapper ul.pagination li a,
.pagination-wrapper ul.pagination li span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    background-color: #f9f9f9;
    color: #333;
    cursor: pointer;
}

.pagination-wrapper ul.pagination li.active span {
    background-color: #333;
    color: #fff;
    font-weight: bold;
    border-color: #333;
}
#reviewImageModal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6); /* ← 바로 이 부분이 어둡게 보이게 함 */
    z-index: 1000;
    align-items:center; 
    justify-content:center;
}
.cart-item {
  display: flex;
  gap: 10px;
  padding: 12px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.cart-item-checkbox {
  flex: 0 0 30px;
  display: flex;
  align-items: flex-start;
}
.cart-item-image img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-brand { font-weight: bold; font-size: 14px; }
.cart-name a { font-size: 14px; color: #333; text-decoration: underline; }
.cart-option { font-size: 13px; color: #555; }
.cart-qty-input {
  width: 50px;
  font-size: 13px;
  padding: 3px;
  border: 1px solid #ccc;
}
.stock-warning {
  font-size: 12px;
  color: #d00;
}
.cart-price {
  margin-top: 6px;
  font-size: 14px;
}
.cart-buy-btn {
  font-size: 13px;
  margin-top: 6px;
  padding: 6px 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 3px;
}
.cart-remove-btn {
  font-size: 16px;
  border: 1px solid #ccc;
  background: none;
  color: #888;
}
.cart-summary {
  text-align: right;
  font-size: 16px;
  background: #ddd;
  padding: 8px;
  margin-bottom: 20px;
}
.cart-grand-total {
  text-align: right;
  font-size: 20px;
  margin-top: 30px;
}
.cart-grand-total span {
  color: #d60000;
  font-weight: bold;
}
.order-section-title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #333;
}
#address-search-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  background: #fff;
  z-index: 9999;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
#delivery-address-modal {
  display:none;
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:600px;
  background:#fff;
  z-index:9999;
  border:1px solid #ccc;
  padding:20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.address-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.address-table th {
  background-color: #ddd;
  height: 30px;
  text-align: center;
  vertical-align: middle;
  line-height: 30px; /* height와 동일하게 */
  border-bottom: 1px solid #ccc;
}

.zip-header {
  width: 80px;
  text-align: center;
}

.address-row {
  height: 30px;
  cursor: pointer;
  border-bottom: 1px solid #e0e0e0;
}

.address-row:hover {
  background-color: #f9f9f9;
}

.zip-cell {
  text-align: center;
  padding: 4px 8px;
}

.road-cell {
  padding: 4px 8px;
}
#address-search-pagination {
    width: 100%;
    display: flex;
    align-items:left; 
    justify-content:left;
    margin: 10px;
}

.address-pagination {
  margin-top: 15px;
  text-align: center;
}

.address-pagination button {
  font-size: 13px;
  padding: 5px 10px;
  margin: 0 2px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.address-pagination button:hover:not(:disabled) {
  background-color: #f0f0f0;
}

.address-pagination button:disabled {
  background-color: #eee;
  color: #aaa;
  cursor: default;
}

.address-pagination button.active,
.address-pagination button[disabled][style*="font-weight:bold"] {
  background-color: #4285f4;
  color: #333;
  border-color: #4285f4;
  font-weight: bold;
}
  .clickable-address {
    text-decoration: underline;
    color: #007BFF;
  }

  .clickable-address:hover {
    color: #0056b3;
  }
  .coupon-badge {
    display: inline-block;
    background-color: #e60000;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 6px;
    border-radius: 4px;
    margin-top: 4px;
}
/* 초성 네비게이션 */
.brand-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.brand-nav li {
  list-style: none;
}
.brand-nav a {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  text-decoration: none;
}
.brand-nav a:hover {
  background-color: #f5f5f5;
}

/* 브랜드 그룹 */
.brand-group {
  margin-bottom: 60px;
}
.brand-group__heading {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 8px;
}
.brand-group__columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.brand-group__columns ul {
  flex: 1 1 200px;
  list-style: none;
  padding: 0;
}
.brand-group__columns li {
  margin-bottom: 8px;
}
.brand-group__columns li a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}
.brand-group__columns li a:hover {
  text-decoration: underline;
}
/* 전역 로딩 오버레이 */
/* 전역 로딩 오버레이 */
#globalLock {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.35); /* ⬅ 살짝 어두운 배경 */
  display: none;
  align-items: center;
  justify-content: center;
}

#globalLock.active {
  display: flex;
}

/* 중앙 카드 */
#globalLock .lock-inner {
  background: #ffffff;
  padding: 22px 26px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* 스피너 */
#globalLock .spinner {
  width: 42px;
  height: 42px;
  border: 4px solid #e0e0e0;
  border-top-color: #111;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

/* 처리 중입니다 텍스트 */
#globalLock .lock-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #444;               /* ⬅ 너무 진하지 않게 */
  letter-spacing: -0.2px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* ---------------------------------
   반응형
   --------------------------------- */
@media (max-width: 768px) {
  /* 메인 타이틀 */
  .section-title {
    font-size: 20px;       /* 기존 32px → 줄임 */
    margin-bottom: 16px;   /* 여백 축소 */
  }

  /* 서브 타이틀 */
  .section-sub-title {
    font-size: 18px;       /* 기존 30px → 줄임 */
    padding-left: 8px;     /* 좌측 패딩 축소 */
    min-width: auto;       /* 영역 고정 해제 (줄바꿈 여유) */
  }

  /* 서브 텍스트 */
  .section-sub-text {
    font-size: 14px;       /* 기존 16px → 줄임 */
    padding-left: 8px;
    min-width: auto;
  } 
  .brand-group__columns {
    flex-direction: column;
    gap: 10px;
  }  
  .product-list {
    justify-content: center !important; /* 좌측 정렬 → 가운데 정렬 */
  }

  .product-item {
    width: calc(50% - 10px); /* 2열 배치 유지, 좌우 간격 확보 */
    margin-left: auto;
    margin-right: auto;
  }  
  .section-group {
    flex-direction: column;       /* 가로 → 세로 배치 */
    gap: 10px;
  }

  .section-sub-title,
  .section-sub-text {
    padding-left: 0;
    min-width: auto;
  }
  .product-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .product-sub-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .custom-slider-container {
    position: relative;
    width: 100%;
    min-width: 300px;
    margin: 0 auto;
    overflow: hidden; 
  }
  .product-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .product-order-info {
    width:100%;
    padding:0px;
    margin-left:0px;
    display: flex;
    flex-direction: column;
    justify-content: left;
  }
  .related-item {
    width: 40%;
    aspect-ratio: 1 / 1;
  }
  .product-tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .product-tabs li {
    flex: 1; /* 탭 넓이 균등 분배 */
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.4; /* 필요 시 1로 조정 */
    white-space: nowrap; /* 줄바꿈 방지 */
    box-sizing: border-box;
  }

  .product-tabs li.active {
    font-weight: bold;
    border-bottom: 2px solid #000;
  }
  
  #address-search-modal {
    width: 95%;
    padding: 16px;
  }

  #address-search-modal input[type="text"] {
    font-size: 14px;
  }

  #address-search-modal button {
    font-size: 14px;
    height: 32px;
  }

  .address-pagination button {
    font-size: 13px;
    padding: 4px 8px;
  }
  #delivery-address-modal {
    display:none;
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:90%;
    background:#fff;
    z-index:9999;
    border:1px solid #ccc;
    padding:20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
}