@charset "UTF-8";
/* Bootstrap icons */
@import url("https://cdnjs.cloudflare.com/ajax/libs/bootstrap-icons/1.11.3/font/bootstrap-icons.min.css");
/* Web fonts */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.css");
/* ============================================
   Design System Variables
   ============================================ */
/* ============================================
   Typography
   ============================================ */
/* ============================================
   Color Palette - Semantic Naming
   ============================================ */
/* Brand Colors */
/* Gradients */
/* Status Colors */
/* Base Colors */
/* ============================================
   Text Colors - Semantic Mapping
   ============================================ */
/* ============================================
   Background Colors
   ============================================ */
/* ============================================
   Border Colors
   ============================================ */
/* ============================================
   Responsive Breakpoints
   ============================================ */
/* ============================================
   Border Radius
   ============================================ */
/* Spacing (common / responsive / style 호환) */
/* Transition & Shadow */
/* 폰트 크기 보조 (responsive / best-products 등) */
/* ############ Mixin Group ############ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
}

input, textarea, select {
  border: none;
  font-family: inherit;
  outline: none;
}

li {
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "NEXON Lv1 Gothic";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON%20Lv1%20Gothic%20OTF.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GmarketSansMedium";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Cafe24Ssurround";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/Cafe24Ssurround.woff2") format("woff2"), url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/Cafe24Ssurround.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* ============================================
   Common Styles
   ============================================ */
/* Common CSS */
* {
  font-family: "NEXON Lv1 Gothic", sans-serif;
  color: #111;
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

button i,
button .bi {
  color: currentColor;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  color: #111;
  font-family: "GmarketSansMedium", sans-serif;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.4;
}

h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* Point Font Utility */
.font-point {
  font-family: "GmarketSansMedium", sans-serif;
}

/* 특이 포인트 폰트 */
.font-accent {
  font-family: "Cafe24Ssurround", sans-serif;
}

/* 포인트가 필요한 텍스트에 적용 */
.product-badge,
.top3-rank-badge span,
.product-rank,
.matrix-banner-badge,
.deal-banner-badge {
  font-family: "Cafe24Ssurround", sans-serif;
}

/* 강조 텍스트 */
.product-price .price-sale,
.product-detail-price .price-sale,
.rating-score,
.review-count strong,
.matrix-banner-title,
.deal-banner-title,
.btn,
.btn-cart,
.add-to-cart-btn {
  font-family: "GmarketSansMedium", sans-serif;
}

/* Accessibility Helpers */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #D0021B;
  color: #FFFFFF;
  z-index: 800;
  transform: translateY(-200%);
  transition: 0.3s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(233, 111, 20, 0.35);
  outline-offset: 3px;
}

.noscript-notice {
  width: min(1160px, 100%);
  margin: 10px auto;
  padding: 10px 20px;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  background: rgba(255, 217, 18, 0.12);
  color: #111;
}

section {
  padding: 80px 0;
}

[class*=inner] {
  width: 1160px;
  margin: auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  [class*=inner] {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 400px) {
  [class*=inner] {
    padding: 0 15px;
  }
}

.container {
  width: 1160px;
  margin: auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 400px) {
  .container {
    padding: 0 15px;
  }
}

/* Section Title */
.section-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 50px;
  color: #111;
  position: relative;
  padding-bottom: 20px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #D0021B, #E96F14);
  border-radius: 5px;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, rgba(208, 2, 27, 0.1) 0%, rgba(255, 217, 18, 0.1) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(208, 2, 27, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 217, 18, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header .page-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #111;
  position: relative;
  z-index: 1;
}
.page-header .page-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #999;
  position: relative;
  z-index: 1;
}

/* Page Header Variants */
.page-header--products {
  background: linear-gradient(135deg, rgba(46, 107, 168, 0.55) 0%, rgba(31, 78, 121, 0.45) 100%), url("https://cdn.imweb.me/thumbnail/20250623/3f8ca4a06ce6d.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header--products::before {
  background: radial-gradient(circle, rgba(46, 107, 168, 0.18) 0%, transparent 70%);
}
.page-header--products::after {
  background: radial-gradient(circle, rgba(31, 78, 121, 0.16) 0%, transparent 70%);
}

.page-header--best {
  background: linear-gradient(135deg, rgba(255, 217, 18, 0.45) 0%, rgba(237, 32, 64, 0.45) 100%), url("https://cdn.imweb.me/thumbnail/20250716/5947177243085.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header--best::before {
  background: radial-gradient(circle, rgba(255, 217, 18, 0.18) 0%, transparent 70%);
}
.page-header--best::after {
  background: radial-gradient(circle, rgba(237, 32, 64, 0.18) 0%, transparent 70%);
}

.page-header--cart {
  background: linear-gradient(135deg, rgba(10, 117, 54, 0.5) 0%, rgba(46, 107, 168, 0.4) 100%), url("https://cdn.imweb.me/thumbnail/20250703/2a3add2fa661d.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header--cart::before {
  background: radial-gradient(circle, rgba(10, 117, 54, 0.18) 0%, transparent 70%);
}
.page-header--cart::after {
  background: radial-gradient(circle, rgba(46, 107, 168, 0.16) 0%, transparent 70%);
}

.page-header--mypage {
  background: linear-gradient(135deg, rgba(31, 78, 121, 0.5) 0%, rgba(46, 107, 168, 0.45) 100%), url("https://cdn.imweb.me/thumbnail/20250716/f2251f23f5e22.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header--mypage::before {
  background: radial-gradient(circle, rgba(31, 78, 121, 0.18) 0%, transparent 70%);
}
.page-header--mypage::after {
  background: radial-gradient(circle, rgba(46, 107, 168, 0.18) 0%, transparent 70%);
}

.page-header--products .page-title,
.page-header--products .page-description,
.page-header--best .page-title,
.page-header--best .page-description,
.page-header--cart .page-title,
.page-header--cart .page-description,
.page-header--mypage .page-title,
.page-header--mypage .page-description {
  color: #FFFFFF;
}

/* Page Content */
.page-content {
  padding: 50px 0;
}

/* ============================================
   베스트 상품 페이지 스타일
   ============================================ */
.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #EEEEEE;
}
.products-toolbar .toolbar-left .products-count {
  font-size: 14px;
  color: #555;
}
.products-toolbar .toolbar-left .products-count strong {
  color: #D0021B;
  font-weight: 800;
}
.products-toolbar .toolbar-right .sort-select {
  padding: 5px 10px;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  font-size: 14px;
  background: #FFFFFF;
  cursor: pointer;
  transition: 0.3s ease;
}
.products-toolbar .toolbar-right .sort-select:hover {
  border-color: #D0021B;
}
.products-toolbar .toolbar-right .sort-select:focus {
  outline: none;
  border-color: #D0021B;
  box-shadow: 0 0 0 3px rgba(208, 2, 27, 0.1);
}

.section-subtitle {
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
}
.section-subtitle i {
  color: #D0021B;
}

.best-top3-section {
  margin-bottom: 60px;
}
.best-top3-section .best-top3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .best-top3-section .best-top3-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .best-top3-section .best-top3-grid {
    grid-template-columns: 1fr;
  }
}
.best-top3-section .best-top3-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease;
  border: 2px solid transparent;
}
.best-top3-section .best-top3-card:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.best-top3-section .best-top3-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(23, 23, 23, 0.2);
  border-color: #D0021B;
}
.best-top3-section .best-top3-card .top3-rank-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  border-radius: 50%;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
}
.best-top3-section .best-top3-card .top3-rank-badge i {
  font-size: 20px;
}
.best-top3-section .best-top3-card .top3-rank-badge.rank-1 {
  background: linear-gradient(135deg, #1F4E79 0%, #2E6BA8 100%);
}
.best-top3-section .best-top3-card .top3-rank-badge.rank-2 {
  background: linear-gradient(135deg, #1F4E79 0%, #F59E0B 100%);
}
.best-top3-section .best-top3-card .top3-rank-badge.rank-3 {
  background: linear-gradient(135deg, #FF6B9A 0%, #FFD1DC 100%);
}
.best-top3-section .best-top3-card .product-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #F9F9F9;
}
.best-top3-section .best-top3-card .product-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.best-top3-section .best-top3-card .product-image-wrapper .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  z-index: 2;
}
.best-top3-section .best-top3-card .product-image-wrapper .product-badge.sale {
  background: linear-gradient(135deg, #ED2040, #FFD912);
}
.best-top3-section .best-top3-card .product-image-wrapper .product-badge.new {
  background: linear-gradient(135deg, #0a7536, #064620);
}
.best-top3-section .best-top3-card .product-image-wrapper .product-badge.hot {
  background: linear-gradient(135deg, #FFD912, #E96F14);
}
.best-top3-section .best-top3-card .product-image-wrapper .product-badge.best {
  background: linear-gradient(135deg, #D0021B, #E96F14);
}
.best-top3-section .best-top3-card .product-info {
  padding: 20px;
}
.best-top3-section .best-top3-card .product-info .product-rating {
  margin-bottom: 8px;
}
.best-top3-section .best-top3-card .product-info .product-title {
  margin-bottom: 8px;
  min-height: auto;
}
.best-top3-section .best-top3-card .product-info .product-price {
  margin-bottom: 8px;
}
.best-top3-section .best-top3-card .product-info .product-meta {
  margin-bottom: 12px;
}

.best-others-section .best-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .best-others-section .best-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .best-others-section .best-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .best-others-section .best-products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.best-others-section .best-product-card .product-image-wrapper {
  position: relative;
}
.best-others-section .best-product-card .product-image-wrapper .product-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(208, 2, 27, 0.9);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(23, 23, 23, 0.2);
}

/* ============================================
   Responsive Styles
   ============================================
   ※ variables를 씁니다. 단독 컴파일 시 변수 인식용 */
@media (max-width: 767px) {
  section {
    padding: 30px 0;
  }
  .section-title {
    font-size: 28px;
  }
  .nav-search {
    max-width: 300px;
    margin: 0 5px;
  }
  .category-shortcut .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .deal-clock {
    width: 100%;
    flex-wrap: nowrap;
    gap: 5px;
  }
  .deal-clock .deal-unit {
    flex: 1;
    min-width: 0;
    padding: 10px 5px;
  }
  .deal-clock .deal-sep {
    flex: 0 0 auto;
  }
  .footer {
    padding: 30px 0;
  }
  .footer .container .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 30px;
  }
  .footer .container .footer-content .footer-section {
    position: relative;
  }
  .footer .container .footer-content .footer-section:nth-child(1), .footer .container .footer-content .footer-section:nth-child(2) {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer .container .footer-content .footer-section:nth-child(1), .footer .container .footer-content .footer-section:nth-child(3) {
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer .container .footer-content .footer-section h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .footer .container .footer-content .footer-section p {
    font-size: 12px;
    margin-bottom: 4px;
    line-height: 1.6;
  }
  .footer .footer-bottom {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
  }
  .footer .footer-bottom .copyright {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
  }
  .footer .footer-bottom .footer-links {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .footer .footer-bottom .footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
  }
  .footer .footer-bottom .footer-links a:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
  }
  .products-section .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-detail .product-images {
    margin-bottom: 30px;
  }
  .product-detail .product-images .thumbnail-images {
    gap: 5px;
    flex-wrap: wrap;
  }
  .product-detail .product-images .thumbnail-images .thumbnail {
    width: 80px;
    height: 80px;
  }
  .product-detail .product-detail-info .product-detail-title {
    font-size: 32px;
  }
  .product-detail .product-detail-info .product-actions {
    flex-direction: column;
  }
  .product-detail .product-detail-info .product-actions .btn-cart,
.product-detail .product-detail-info .product-actions .btn-buy {
    width: 100%;
  }
  .cart-section .cart-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cart-section .cart-wrapper .cart-summary {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    z-index: 5;
  }
  .cart-section .cart-wrapper .cart-summary .summary-box {
    width: 100%;
    background: #FFFFFF;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .cart-section .cart-wrapper .cart-summary .summary-box > * {
    grid-column: 1/-1;
  }
  .cart-section .cart-wrapper .cart-summary .summary-box .checkout-btn,
.cart-section .cart-wrapper .cart-summary .summary-box .continue-shopping-btn {
    grid-column: span 1;
    margin-bottom: 0;
  }
  .cart-section .cart-item {
    grid-template-columns: auto 120px 1fr;
    grid-template-areas: "check image info" ". image quantity" ". image total" ". image delete";
    align-items: flex-start;
    gap: 10px;
  }
  .cart-section .cart-item .checkbox-wrapper {
    grid-area: check;
  }
  .cart-section .cart-item .cart-item-image {
    grid-area: image;
  }
  .cart-section .cart-item .cart-item-info {
    grid-area: info;
  }
  .cart-section .cart-item .cart-item-quantity {
    grid-area: quantity;
    justify-content: flex-start;
  }
  .cart-section .cart-item .cart-item-total {
    grid-area: total;
    justify-content: flex-start;
  }
  .cart-section .cart-item .cart-item-delete {
    grid-area: delete;
    justify-self: flex-start;
  }
  .page-content {
    overflow-x: hidden;
  }
  .page-content .container {
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .mypage-wrapper {
    grid-template-columns: 1fr;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .mypage-wrapper .mypage-sidebar {
    order: 1;
    max-width: 100%;
    box-sizing: border-box;
  }
  .mypage-wrapper .mypage-sidebar .user-info {
    display: none;
  }
  .mypage-wrapper .mypage-sidebar .mypage-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    overflow-x: auto;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .mypage-wrapper .mypage-sidebar .mypage-menu .menu-item {
    flex: 1;
    min-width: auto;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 10px 20px;
    text-align: center;
    justify-content: center;
  }
  .mypage-wrapper .mypage-sidebar .mypage-menu .menu-item i {
    display: none;
  }
  .mypage-wrapper .mypage-sidebar .mypage-menu .menu-item span {
    font-size: 14px;
  }
  .mypage-wrapper .mypage-sidebar .mypage-menu .menu-item:hover, .mypage-wrapper .mypage-sidebar .mypage-menu .menu-item.active {
    border-left: none;
    border-bottom-color: #D0021B;
    background: rgba(208, 2, 27, 0.05);
  }
  .mypage-wrapper .mypage-content {
    order: 2;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .mypage-wrapper .mypage-content .mypage-panel {
    display: none;
  }
  .mypage-wrapper .mypage-content .mypage-panel.active {
    display: block;
  }
  .mypage-content .order-summary {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .mypage-content .order-summary .summary-card {
    padding: 20px;
  }
  .mypage-content .order-summary .summary-card:first-child {
    grid-column: 1/-1;
  }
  .page-content .mobile-filter-radio {
    display: block;
    margin-bottom: 30px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(23, 23, 23, 0.08);
  }
  .page-content .mobile-filter-radio .filter-group {
    margin-bottom: 30px;
  }
  .page-content .mobile-filter-radio .filter-group:last-child {
    margin-bottom: 0;
  }
  .page-content .mobile-filter-radio .filter-group h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
    padding-bottom: 5px;
    border-bottom: 1px solid #EEEEEE;
  }
  .page-content .mobile-filter-radio .filter-group .radio-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .page-content .mobile-filter-radio .filter-group .radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    color: #111;
    transition: 0.3s ease;
    white-space: nowrap;
  }
  .page-content .mobile-filter-radio .filter-group .radio-group label:hover {
    color: #D0021B;
  }
  .page-content .mobile-filter-radio .filter-group .radio-group label input[type=radio] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #D0021B;
    flex-shrink: 0;
  }
  .page-content .mobile-filter-radio .filter-group .radio-group label input[type=radio]:checked + span, .page-content .mobile-filter-radio .filter-group .radio-group label input[type=radio]:checked {
    color: #D0021B;
  }
  .page-content .mobile-filter-radio .filter-group .radio-group label span {
    margin-left: 0;
  }
  .page-content .content-wrapper {
    grid-template-columns: 1fr;
  }
  .page-content .content-wrapper .sidebar {
    display: none;
  }
}
@media (max-width: 767px) {
  header .navbar .nav-search {
    display: none;
  }
  header .navbar .nav-actions {
    gap: 5px;
    margin-left: auto;
  }
  header .navbar .nav-toggle {
    display: flex;
  }
  header .navbar .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px;
    box-shadow: -2px 0 20px rgba(23, 23, 23, 0.2);
    transition: 0.3s ease;
    z-index: 999;
  }
  header .navbar .nav-menu.active {
    right: 0;
  }
  header .navbar .nav-menu li {
    width: 100%;
    margin-bottom: 10px;
  }
  header .navbar .nav-menu li a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    width: 100%;
  }
  .category-shortcut .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
  .category-shortcut .category-grid .category-item {
    padding: 10px;
  }
  .category-shortcut .category-grid .category-item .category-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .category-shortcut .category-grid .category-item span {
    font-size: 12px;
  }
  .products-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .products-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .hero {
    height: 400px;
  }
  .hero .hero-slider .hero-slide .hero-content .hero-title {
    font-size: 32px;
  }
  .hero .hero-slider .hero-slide .hero-content .hero-subtitle {
    font-size: 16px;
  }
  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .page-header {
    padding: 30px 0;
  }
  .page-header .page-title {
    font-size: 28px;
  }
  .page-header .page-description {
    font-size: 16px;
  }
  .page-content .content-wrapper .sidebar {
    display: none;
  }
  .page-content .mobile-filter-radio {
    display: block;
    margin-bottom: 20px;
    padding: 10px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(23, 23, 23, 0.08);
  }
  .page-content .mobile-filter-radio .filter-group {
    margin-bottom: 20px;
  }
  .page-content .mobile-filter-radio .filter-group:last-child {
    margin-bottom: 0;
  }
  .page-content .mobile-filter-radio .filter-group h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #111;
    padding-bottom: 5px;
    border-bottom: 1px solid #EEEEEE;
  }
  .page-content .mobile-filter-radio .filter-group .radio-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
  }
  .page-content .mobile-filter-radio .filter-group .radio-group label {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 5px;
    cursor: pointer;
    font-size: 12px;
    color: #555;
    transition: 0.3s ease;
    white-space: nowrap;
  }
  .page-content .mobile-filter-radio .filter-group .radio-group label:hover {
    color: #D0021B;
  }
  .page-content .mobile-filter-radio .filter-group .radio-group label input[type=radio] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #D0021B;
    flex-shrink: 0;
  }
  .page-content .mobile-filter-radio .filter-group .radio-group label input[type=radio]:checked + span, .page-content .mobile-filter-radio .filter-group .radio-group label input[type=radio]:checked {
    color: #D0021B;
  }
  .page-content .mobile-filter-radio .filter-group .radio-group label span {
    margin-left: 0;
  }
  .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-detail .product-images .thumbnail-images .thumbnail {
    width: 70px;
    height: 70px;
  }
  .product-detail .product-detail-info .product-detail-title {
    font-size: 24px;
  }
  .product-detail .product-detail-info .product-detail-price .price-sale {
    font-size: 32px;
  }
  .product-detail .product-detail-info .product-actions {
    flex-direction: column;
  }
  .product-detail .product-detail-info .product-actions .btn-cart,
.product-detail .product-detail-info .product-actions .btn-buy {
    width: 100%;
  }
  .product-detail .product-tabs .tab-buttons {
    flex-wrap: wrap;
    gap: 5px;
  }
  .product-detail .product-tabs .tab-buttons .tab-btn {
    flex: 1;
    min-width: auto;
    font-size: 14px;
    padding: 5px 10px;
  }
  .product-detail .product-tabs .tab-content {
    padding: 20px;
  }
  .cart-section .cart-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cart-section .cart-summary {
    position: -webkit-sticky;
    position: sticky;
    top: 72px;
    z-index: 5;
  }
  .cart-section .cart-summary .summary-box {
    width: 100%;
    background: #FFFFFF;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .cart-section .cart-summary .summary-box > * {
    grid-column: 1/-1;
  }
  .cart-section .cart-summary .summary-box .checkout-btn,
.cart-section .cart-summary .summary-box .continue-shopping-btn {
    grid-column: span 1;
    margin-bottom: 0;
  }
  .cart-section .cart-item {
    grid-template-columns: 100px 1fr;
    grid-template-areas: "image info" "image quantity" "image total" "image delete";
    align-items: flex-start;
    gap: 10px;
  }
  .cart-section .cart-item .checkbox-wrapper {
    grid-column: 1/-1;
    justify-content: flex-start;
    margin-bottom: 5px;
  }
  .cart-section .cart-item .cart-item-image {
    grid-area: image;
  }
  .cart-section .cart-item .cart-item-info {
    grid-area: info;
  }
  .cart-section .cart-item .cart-item-quantity {
    grid-area: quantity;
    justify-content: flex-start;
  }
  .cart-section .cart-item .cart-item-total {
    grid-area: total;
    justify-content: flex-start;
  }
  .cart-section .cart-item .cart-item-delete {
    grid-area: delete;
    justify-self: flex-start;
  }
  .page-content {
    overflow-x: hidden;
  }
  .page-content .container {
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .mypage-wrapper {
    grid-template-columns: 1fr;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .mypage-wrapper .mypage-sidebar {
    max-width: 100%;
    box-sizing: border-box;
  }
  .mypage-wrapper .mypage-sidebar .user-info {
    display: none;
  }
  .mypage-wrapper .mypage-sidebar .mypage-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    overflow-x: auto;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .mypage-wrapper .mypage-sidebar .mypage-menu .menu-item {
    flex: 1;
    min-width: auto;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 5px 10px;
    text-align: center;
    justify-content: center;
  }
  .mypage-wrapper .mypage-sidebar .mypage-menu .menu-item i {
    display: none;
  }
  .mypage-wrapper .mypage-sidebar .mypage-menu .menu-item span {
    font-size: 12px;
  }
  .mypage-wrapper .mypage-sidebar .mypage-menu .menu-item:hover, .mypage-wrapper .mypage-sidebar .mypage-menu .menu-item.active {
    border-left: none;
    border-bottom-color: #D0021B;
    background: rgba(208, 2, 27, 0.05);
  }
  .mypage-wrapper .mypage-content .order-summary {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .mypage-wrapper .mypage-content .order-summary .summary-card {
    padding: 20px;
  }
  .mypage-wrapper .mypage-content .order-summary .summary-card:first-child {
    grid-column: 1/-1;
  }
  .mypage-wrapper .mypage-content {
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  .mypage-wrapper .mypage-content .mypage-panel {
    display: none;
  }
  .mypage-wrapper .mypage-content .mypage-panel.active {
    display: block;
  }
  .stats-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .best-top3-section .best-top3-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .best-top3-section .best-top3-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1200px) {
  .best-others-section .best-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .best-others-section .best-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .best-others-section .best-products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 1200px) {
  .products-section .products-grid.mosaic {
    grid-template-columns: 1.4fr 1fr;
  }
}
@media (max-width: 1024px) {
  body.nav-open {
    overflow: hidden;
  }
  header .navbar .nav-toggle {
    display: flex;
    z-index: 1101;
    position: relative;
  }
  header .navbar .nav-toggle.active span {
    background-color: #D0021B;
  }
  header .navbar .nav-menu {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9F9F9 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 20px 0 30px;
    box-shadow: -4px 0 30px rgba(23, 23, 23, 0.15);
    z-index: 1100;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
  }
  header .navbar .nav-menu.active {
    right: 0;
    visibility: visible;
    opacity: 1;
  }
  header .navbar .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(23, 23, 23, 0.05);
  }
  header .navbar .nav-menu li:last-child {
    border-bottom: none;
  }
  header .navbar .nav-menu li a {
    display: block;
    padding: 18px 30px;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    transition: 0.3s ease;
    position: relative;
    width: 100%;
  }
  header .navbar .nav-menu li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #D0021B, #E96F14);
    transform: scaleY(0);
    transition: 0.3s ease;
  }
  header .navbar .nav-menu li a:hover,
header .navbar .nav-menu li a.active {
    color: #D0021B;
    background: rgba(208, 2, 27, 0.05);
    padding-left: 35px;
  }
  header .navbar .nav-menu li a:hover::before,
header .navbar .nav-menu li a.active::before {
    transform: scaleY(1);
  }
  .home-top-grid {
    grid-template-columns: 1fr;
  }
  .deal-grid {
    grid-template-columns: 1fr;
  }
  .matrix-grid {
    grid-template-columns: 1fr;
  }
  .matrix-side {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-section .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .products-section .products-grid.mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .products-section .products-grid.mosaic .product-card:first-child {
    grid-row: auto;
  }
}
@media (max-width: 1024px) {
  #newScroll.hscroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow-x: visible;
    padding: 0;
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
  }
  #newScroll.hscroll .hcard {
    flex: none;
    width: 100%;
    min-width: auto;
  }
}
@media (max-width: 767px) {
  #newScroll.hscroll {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .home-feature .feature-body {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .home-feature .feature-kicker {
    font-size: 14px;
  }
  .home-feature .feature-title {
    font-size: 32px;
  }
  .home-feature .feature-desc {
    font-size: 16px;
  }
  .home-feature .feature-cta {
    font-size: 15px;
    padding: 10px 20px;
  }
  .home-feature .feature-media img {
    width: 100%;
    max-width: 100%;
  }
  .matrix-side {
    grid-template-columns: 1fr;
  }
  .deal-clock {
    width: 100%;
    flex-wrap: nowrap;
    gap: 5px;
  }
  .deal-clock .deal-unit {
    flex: 1;
    min-width: 0;
    padding: 10px 5px;
    font-size: 18px;
  }
  .deal-clock .deal-num {
    font-size: 18px;
  }
  .deal-clock .deal-label {
    font-size: 10px;
  }
  .deal-clock .deal-sep {
    flex: 0 0 auto;
  }
  .info-card {
    padding: 20px;
  }
  .info-card .info-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
  }
  .info-card .info-icon i {
    font-size: 28px;
  }
  .info-card h3 {
    font-size: 16px;
  }
  .info-card p {
    font-size: 13px;
  }
  .products-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .products-section .products-grid.mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}
@media (max-width: 767px) {
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .event-banners .banner-grid {
    grid-template-columns: 1fr;
  }
  .reviews-section .reviews-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-section {
    padding: 50px 0 60px;
  }
  .newsletter-section .newsletter-box {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
    gap: 20px;
  }
  .newsletter-section .newsletter-content {
    order: 2;
    text-align: center;
  }
  .newsletter-section .newsletter-content h2 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #FFFFFF;
  }
  .newsletter-section .newsletter-content p {
    font-size: 13px;
    color: #FFFFFF;
  }
  .newsletter-section .newsletter-form {
    order: 1;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .newsletter-section .newsletter-form input[type=email] {
    width: 100%;
    padding: 10px 20px;
    font-size: 15px;
  }
  .newsletter-section .newsletter-form button {
    width: 100%;
    padding: 10px 18px;
    font-size: 15px;
  }
}
/* Local SCSS - @use (Dart Sass 3.0 호환) */
/* Common styles are imported from _common.scss */
button i,
button .bi {
  color: currentColor;
}

/* ############ Header ############ */
header {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #D0021B;
  position: relative;
  background-color: #FFd502;
  transition: 0.3s ease;
}
header.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  -webkit-animation: slideDown 0.3s ease-out;
          animation: slideDown 0.3s ease-out;
}
@-webkit-keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
header .header-inner {
  width: 1160px;
  margin: auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  header .header-inner {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 400px) {
  header .header-inner {
    padding: 0 15px;
  }
}
header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
header .navbar .nav-brand {
  position: relative;
  z-index: 10;
}
header .navbar .nav-brand a {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #D0021B, #E96F14);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: 0.3s ease;
}
header .navbar .nav-brand a:hover {
  transform: scale(1.05);
}
header .navbar .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}
header .navbar .nav-toggle span {
  width: 28px;
  height: 3px;
  background-color: #111;
  transition: 0.3s ease;
  border-radius: 2px;
}
header .navbar .nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header .navbar .nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
header .navbar .nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
header .navbar .nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
header .navbar .nav-menu li {
  position: relative;
}
header .navbar .nav-menu li a {
  font-weight: 600;
  color: #111;
  transition: 0.3s ease;
  padding: 5px 0;
  position: relative;
  font-size: 16px;
}
header .navbar .nav-menu li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #D0021B, #E96F14);
  transition: 0.3s ease;
  border-radius: 5px;
}
header .navbar .nav-menu li a:hover, header .navbar .nav-menu li a.active {
  color: #D0021B;
}
header .navbar .nav-menu li a:hover::before, header .navbar .nav-menu li a.active::before {
  width: 100%;
}

/* Section title is imported from _common.scss */
/* ############ Advanced Features Section ############ */
.features {
  background: linear-gradient(to bottom, #FFFFFF, #F9F9F9);
}
.features .features-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .features .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 400px) {
  .features .features-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.features .features-grid .feature-card {
  transition: 0.3s;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.features .features-grid .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(23, 23, 23, 0.2);
}
.features .features-grid .feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(208, 2, 27, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: 0.3s ease;
}
.features .features-grid .feature-card:hover::before {
  opacity: 1;
}
.features .features-grid .feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
}
.features .features-grid .feature-card .feature-icon {
  font-size: 64px;
  margin-bottom: 20px;
  transition: 0.3s ease;
  display: inline-block;
}
.features .features-grid .feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.features .features-grid .feature-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.features .features-grid .feature-card .feature-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ED2040, #E96F14);
  color: #FFFFFF;
  padding: 5px 10px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
}

/* ############ Home feature (메인 추천) ############ */
.home-feature {
  position: relative;
  overflow: hidden;
}
.home-feature .feature-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://www.lego.com/cdn/cs/set/assets/blt6689cbad57e43e22/blt4299e61f1664eaff-42228-202603-PDP-SuperHero-Tall-Large.jpg?format=webply&fit=crop&quality=60&width=1600&height=700&dpr=2");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-feature .feature-cta {
  transition: 0.3s ease;
  color: #D0021B;
}
.home-feature .feature-cta i {
  color: currentColor;
}
.home-feature .feature-cta:hover {
  background: #D0021B;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(208, 2, 27, 0.3);
}

/* ############ Advanced Content Cards ############ */
.content {
  background: #F9F9F9;
}
.content .content-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .content .content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 400px) {
  .content .content-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.content .content-grid .content-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  background: #FFFFFF;
}
.content .content-grid .content-item:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.content .content-grid .content-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(23, 23, 23, 0.2);
}
.content .content-grid .content-item .content-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.content .content-grid .content-item .content-image-wrapper .content-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.content .content-grid .content-item .content-image-wrapper .content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(23, 23, 23, 0.7));
  opacity: 0;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #FFFFFF;
  padding: 20px;
}
.content .content-grid .content-item .content-image-wrapper .content-overlay .overlay-icon {
  font-size: 32px;
  margin-bottom: 5px;
}
.content .content-grid .content-item .content-image-wrapper .content-overlay .overlay-text {
  font-size: 14px;
  font-weight: 600;
}
.content .content-grid .content-item .content-image-wrapper .content-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(237, 32, 64, 0.9);
  color: #FFFFFF;
  padding: 5px 10px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}
.content .content-grid .content-item:hover .content-image {
  transform: scale(1.15);
}
.content .content-grid .content-item:hover .content-overlay {
  opacity: 1;
}
.content .content-grid .content-item .content-body {
  padding: 20px;
}
.content .content-grid .content-item .content-body .content-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #555;
}
.content .content-grid .content-item .content-body .content-meta .meta-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.content .content-grid .content-item .content-body .content-meta .meta-item i {
  font-size: 14px;
}
.content .content-grid .content-item .content-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.content .content-grid .content-item .content-body p {
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.content .content-grid .content-item .content-body .content-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #EEEEEE;
}
.content .content-grid .content-item .content-body .content-footer .content-author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.content .content-grid .content-item .content-body .content-footer .content-author .author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D0021B, #E96F14);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 12px;
}
.content .content-grid .content-item .content-body .content-footer .content-author .author-name {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}
.content .content-grid .content-item .content-body .content-footer .content-link {
  color: #D0021B;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}
.content .content-grid .content-item .content-body .content-footer .content-link:hover {
  gap: 5px;
}
.content .content-grid .content-item .content-body .content-footer .content-link:hover::after {
  content: "→";
  margin-left: 5px;
}

/* ############ Page Header ############ */
.page-header {
  background: linear-gradient(135deg, rgba(208, 2, 27, 0.1) 0%, rgba(255, 217, 18, 0.1) 100%);
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(208, 2, 27, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 217, 18, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header .page-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
  position: relative;
  z-index: 1;
}
.page-header .page-description {
  font-size: 18px;
  color: #555;
  position: relative;
  z-index: 1;
}

/* Page Header Variants */
.page-header--products {
  background: url("./source/banner01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header--products::before {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
}
.page-header--products::after {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
}

.page-header--best {
  background: url("./source/banner02.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header--best::before {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
}
.page-header--best::after {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
}

.page-header--cart {
  background: url("./source/banner03.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header--cart .container .page-title {
  color: #111;
}
.page-header--cart .container .page-description {
  color: #111;
}
.page-header--cart::before {
  background: radial-gradient(circle, rgba(10, 117, 54, 0.18) 0%, transparent 70%);
}
.page-header--cart::after {
  background: radial-gradient(circle, rgba(46, 107, 168, 0.16) 0%, transparent 70%);
}

.page-header--mypage {
  background: url("./source/banner04.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header--mypage::before {
  background: radial-gradient(circle, rgba(31, 78, 121, 0.18) 0%, transparent 70%);
}
.page-header--mypage::after {
  background: radial-gradient(circle, rgba(46, 107, 168, 0.18) 0%, transparent 70%);
}

.page-header--products .page-title,
.page-header--products .page-description,
.page-header--best .page-title,
.page-header--best .page-description,
.page-header--cart .page-title,
.page-header--cart .page-description,
.page-header--mypage .page-title,
.page-header--mypage .page-description {
  color: #FFFFFF;
}

/* ############ Advanced Page Content ############ */
.page-content {
  padding: 30px 0;
}
.page-content .content-wrapper {
  display: grid;
  grid-template-columns: 0.5fr 2fr;
  gap: 30px;
}
.page-content .content-wrapper .article .article-section {
  margin-bottom: 30px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  padding: 30px;
  background: #FFFFFF;
}
.page-content .content-wrapper .article .article-section:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.page-content .content-wrapper .article .article-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #D0021B;
}
.page-content .content-wrapper .article .article-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #D0021B;
}
.page-content .content-wrapper .article .article-section p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 10px;
  font-size: 16px;
}
.page-content .content-wrapper .article .article-section .article-image {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
}
.page-content .content-wrapper .article .article-section .article-list {
  background: #F9F9F9;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}
.page-content .content-wrapper .article .article-section .article-list li {
  margin-bottom: 5px;
  color: #555;
  padding-left: 25px;
  position: relative;
}
.page-content .content-wrapper .article .article-section .article-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #D0021B;
  font-weight: 800;
}
.page-content .content-wrapper .sidebar .sidebar-widget {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFFFFF;
}
.page-content .content-wrapper .sidebar .sidebar-widget:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.page-content .content-wrapper .sidebar .sidebar-widget h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #EEEEEE;
  position: relative;
}
.page-content .content-wrapper .sidebar .sidebar-widget h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #D0021B;
}
.page-content .content-wrapper .sidebar .sidebar-widget .sidebar-links li {
  margin-bottom: 5px;
  padding: 5px 0;
  border-bottom: 1px solid #EEEEEE;
}
.page-content .content-wrapper .sidebar .sidebar-widget .sidebar-links li:last-child {
  border-bottom: none;
}
.page-content .content-wrapper .sidebar .sidebar-widget .sidebar-links li a {
  color: #555;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}
.page-content .content-wrapper .sidebar .sidebar-widget .sidebar-links li a::before {
  content: "→";
  opacity: 0;
  transition: 0.3s ease;
}
.page-content .content-wrapper .sidebar .sidebar-widget .sidebar-links li a:hover {
  color: #D0021B;
  padding-left: 5px;
}
.page-content .content-wrapper .sidebar .sidebar-widget .sidebar-links li a:hover::before {
  opacity: 1;
}

/* ############ Advanced Gallery Section ############ */
.gallery-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #F9F9F9;
}
.gallery-grid .gallery-item .gallery-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(23, 23, 23, 0.9) 0%, transparent 100%);
  color: #FFFFFF;
  padding: 20px;
  transform: translateY(100%);
  transition: 0.3s ease;
}
.gallery-grid .gallery-item .gallery-overlay h3 {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}
.gallery-grid .gallery-item .gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}
.gallery-grid .gallery-item .gallery-overlay .gallery-actions {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.gallery-grid .gallery-item .gallery-overlay .gallery-actions button {
  padding: 5px 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 14px;
  transition: 0.3s ease;
}
.gallery-grid .gallery-item .gallery-overlay .gallery-actions button:hover {
  background: rgba(255, 255, 255, 0.3);
}
.gallery-grid .gallery-item:hover .gallery-image {
  transform: scale(1.15);
}
.gallery-grid .gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* ############ Advanced Tabs Section ############ */
.tabs {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  border-bottom: 2px solid #EEEEEE;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar {
  display: none;
}
.tabs .tab-btn {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #555;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
  position: relative;
}
.tabs .tab-btn::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #D0021B, #E96F14);
  transition: 0.3s ease;
}
.tabs .tab-btn:hover {
  color: #D0021B;
  background: rgba(208, 2, 27, 0.05);
}
.tabs .tab-btn.active {
  color: #D0021B;
  background: rgba(208, 2, 27, 0.1);
}
.tabs .tab-btn.active::before {
  width: 100%;
}

.tab-content {
  display: none;
  -webkit-animation: fadeIn 0.5s ease-out;
          animation: fadeIn 0.5s ease-out;
}
.tab-content.active {
  display: block;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 400px) {
  .card-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.card-grid .card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  transition: 0.3s;
  padding: 20px;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.card-grid .card:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.card-grid .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(23, 23, 23, 0.2);
}
.card-grid .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #D0021B, #E96F14);
  transform: scaleY(0);
  transition: 0.3s ease;
}
.card-grid .card:hover::before {
  transform: scaleY(1);
}
.card-grid .card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.card-grid .card .card-header .card-badge {
  background: linear-gradient(135deg, #ED2040, #E96F14);
  color: #FFFFFF;
  padding: 5px 10px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
}
.card-grid .card .card-header .card-date {
  font-size: 12px;
  color: #555;
}
.card-grid .card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  padding-left: 10px;
}
.card-grid .card p {
  color: #555;
  line-height: 1.7;
  font-size: 14px;
  padding-left: 10px;
}

.info-list li {
  padding: 20px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, rgba(208, 2, 27, 0.05), rgba(233, 111, 20, 0.05));
  border-left: 4px solid #D0021B;
  border-radius: 5px;
  transition: 0.3s ease;
  position: relative;
  padding-left: 30px;
}
.info-list li::before {
  content: "●";
  position: absolute;
  left: 20px;
  color: #D0021B;
  font-size: 12px;
}
.info-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(23, 23, 23, 0.08);
}

.contact-form {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  padding: 30px;
  background: #FFFFFF;
}
.contact-form:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
  font-size: 14px;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 10px 20px;
  border: 2px solid #EEEEEE;
  border-radius: 5px;
  font-size: 15px;
  transition: 0.3s ease;
  background: #F9F9F9;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #D0021B;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(208, 2, 27, 0.1);
}
.contact-form .form-group input::-moz-placeholder, .contact-form .form-group textarea::-moz-placeholder {
  color: #555;
}
.contact-form .form-group input:-ms-input-placeholder, .contact-form .form-group textarea:-ms-input-placeholder {
  color: #555;
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #555;
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
}
.contact-form .btn {
  background-color: #D0021B;
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 50%;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
  padding: 20px;
  font-size: 16px;
}
.contact-form .btn:hover {
  background-color: #930113;
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 24px rgba(208, 2, 27, 0.35), 0 0 0 3px rgba(208, 2, 27, 0.18);
}
.contact-form .btn:active {
  transform: translateY(0);
}

/* ############ Advanced Accordion Section ############ */
.accordion .accordion-item {
  margin-bottom: 10px;
  border: 2px solid #EEEEEE;
  border-radius: 10px;
  overflow: hidden;
  background: #FFFFFF;
  transition: 0.3s ease;
}
.accordion .accordion-item:hover {
  border-color: #D0021B;
}
.accordion .accordion-item .accordion-header {
  width: 100%;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: 0.3s ease;
}
.accordion .accordion-item .accordion-header:hover {
  background-color: #F9F9F9;
}
.accordion .accordion-item .accordion-header span {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}
.accordion .accordion-item .accordion-header .accordion-icon {
  font-size: 24px;
  font-weight: 400;
  transition: 0.3s ease;
  color: #D0021B;
}
.accordion .accordion-item.active {
  border-color: #D0021B;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
}
.accordion .accordion-item.active .accordion-header {
  background: linear-gradient(135deg, #D0021B, #E96F14);
  color: #FFFFFF;
}
.accordion .accordion-item.active .accordion-header span {
  color: #FFFFFF;
}
.accordion .accordion-item.active .accordion-header .accordion-icon {
  transform: rotate(45deg);
  color: #FFFFFF;
}
.accordion .accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 30px;
}
.accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease ease-out;
  background-color: #FFFFFF;
}
.accordion .accordion-item .accordion-content p {
  color: #555;
  line-height: 1.9;
  font-size: 14px;
}

/* ############ Advanced Stats Section ############ */
.stats-section {
  margin-top: 50px;
  background: linear-gradient(135deg, rgba(208, 2, 27, 0.05), rgba(233, 111, 20, 0.05));
  padding: 50px 0;
  border-radius: 20px;
}
.stats-section .stats-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .stats-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 400px) {
  .stats-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.stats-section .stats-grid .stat-item {
  text-align: center;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.stats-section .stats-grid .stat-item:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.stats-section .stats-grid .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D0021B, #E96F14);
  transform: scaleX(0);
  transition: 0.3s ease;
}
.stats-section .stats-grid .stat-item:hover::before {
  transform: scaleX(1);
}
.stats-section .stats-grid .stat-item:hover .stat-number {
  transform: scale(1.1);
}
.stats-section .stats-grid .stat-item .stat-number {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #D0021B, #E96F14);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
  transition: 0.3s ease;
}
.stats-section .stats-grid .stat-item .stat-label {
  font-size: 16px;
  color: #555;
  font-weight: 600;
}

/* ############ Shopping Mall Styles ############ */
/* Header Search & Actions */
.nav-search {
  flex: 1;
  max-width: 500px;
  margin: 0 20px;
  position: relative;
  display: flex;
  align-items: center;
}
.nav-search .search-input {
  width: 100%;
  padding: 10px 45px 10px 10px;
  border: 2px solid #EEEEEE;
  border-radius: 50%;
  font-size: 14px;
  transition: 0.3s ease;
}
.nav-search .search-input:focus {
  outline: none;
  border-color: #D0021B;
  box-shadow: 0 0 0 3px rgba(208, 2, 27, 0.1);
}
.nav-search .search-btn {
  position: absolute;
  right: 5px;
  padding: 5px 10px;
  background: #D0021B;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}
.nav-search .search-btn:hover {
  background: #9d0214;
}

.view-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s ease;
  margin-top: 5px;
}
.view-detail-btn:hover {
  border-color: #D0021B;
  color: #D0021B;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 10;
}
.nav-actions .nav-icon {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #555;
  transition: 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.nav-actions .nav-icon:hover {
  color: #D0021B;
}
.nav-actions .nav-icon .cart-count {
  position: absolute;
  top: -10px;
  right: -12px;
  width: 20px;
  height: 20px;
  background: #ED2040;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  z-index: 11;
  box-shadow: 0 2px 4px rgba(23, 23, 23, 0.2);
  pointer-events: none;
}

/* Category Shortcut */
.category-shortcut {
  padding: 30px 0;
  background: #F9F9F9;
}
.category-shortcut .category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.category-shortcut .category-grid .category-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  text-align: center;
  transition: 0.3s ease;
  background: #FFFFFF;
}
.category-shortcut .category-grid .category-item:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.category-shortcut .category-grid .category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.15);
}
.category-shortcut .category-grid .category-item .category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(208, 2, 27, 0.1), rgba(233, 111, 20, 0.1));
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #D0021B;
  margin-bottom: 5px;
  transition: 0.3s ease;
}
.category-shortcut .category-grid .category-item span {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}
.category-shortcut .category-grid .category-item:hover .category-icon {
  background: linear-gradient(135deg, #D0021B, #E96F14);
  color: #FFFFFF;
  transform: scale(1.1);
}

/* Products Section */
.products-section {
  padding: 50px 0;
}
.products-section.new-products {
  background: #F9F9F9;
}
.products-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  align-items: center;
}
.products-section .section-header .section-title {
  margin-bottom: 0;
}
.products-section .section-header .view-all-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #555;
  font-weight: 600;
  transition: 0.3s ease;
}
.products-section .section-header .view-all-btn:hover {
  color: #D0021B;
  gap: 10px;
}
.products-section .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  gap: 20px;
}
@media (max-width: 767px) {
  .products-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 400px) {
  .products-section .products-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}

/* Brands Section */
/* Product Card */
.product-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
  position: relative;
}
.product-card:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(23, 23, 23, 0.2);
}
.product-card .product-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: #F9F9F9;
}
.product-card .product-image-wrapper .product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.product-card .product-image-wrapper .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  z-index: 2;
}
.product-card .product-image-wrapper .product-badge.sale {
  background: linear-gradient(135deg, #ED2040, #E96F14);
}
.product-card .product-image-wrapper .product-badge.new {
  background: linear-gradient(135deg, #0a7536, #064620);
}
.product-card .product-image-wrapper .product-badge.hot {
  background: linear-gradient(135deg, #FFD912, #E96F14);
}
.product-card .product-image-wrapper .product-badge.best {
  background: linear-gradient(135deg, #D0021B, #E96F14);
}
.product-card .product-image-wrapper .product-badge:nth-child(2) {
  top: 50px;
}
.product-card .product-image-wrapper .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(23, 23, 23, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transition: 0.3s ease;
}
.product-card .product-image-wrapper .product-overlay .quick-view-btn,
.product-card .product-image-wrapper .product-overlay .wishlist-btn {
  padding: 10px 20px;
  background: #FFFFFF;
  color: #111;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.product-card .product-image-wrapper .product-overlay .quick-view-btn:hover,
.product-card .product-image-wrapper .product-overlay .wishlist-btn:hover {
  background: #D0021B;
  color: #FFFFFF;
  transform: scale(1.05);
}
.product-card .product-image-wrapper .product-overlay .wishlist-btn {
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.product-card .product-image-wrapper:hover .product-image {
  transform: scale(1.1);
}
.product-card .product-image-wrapper:hover .product-overlay {
  opacity: 1;
}
.product-card .product-info {
  padding: 20px;
}
.product-card .product-info .product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.product-card .product-info .product-rating i {
  color: #FFD912;
  font-size: 14px;
}
.product-card .product-info .product-rating .rating-text {
  margin-left: 5px;
  font-size: 12px;
  color: #555;
}
.product-card .product-info .product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  min-height: 44px;
}
.product-card .product-info .product-price {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.product-card .product-info .product-price .price-original {
  font-size: 14px;
  color: #555;
  text-decoration: line-through;
}
.product-card .product-info .product-price .price-sale {
  font-size: 20px;
  font-weight: 800;
  color: #ED2040;
}
.product-card .product-info .product-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #555;
}
.product-card .product-info .product-meta .delivery-info,
.product-card .product-info .product-meta .review-count {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.product-card .product-info .product-meta .delivery-info i,
.product-card .product-info .product-meta .review-count i {
  font-size: 12px;
}
.product-card .product-info .add-to-cart-btn {
  width: 100%;
  padding: 10px;
  background: #D0021B;
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.product-card .product-info .add-to-cart-btn i {
  color: #fff;
}
.product-card .product-info .add-to-cart-btn:hover {
  background: #9d0214;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(208, 2, 27, 0.3);
}
.product-card .product-info .add-to-cart-btn:active {
  transform: translateY(0);
}

/* ############ Product Detail Page ############ */
.product-detail {
  padding: 30px 0;
}
.product-detail .product-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}
.product-detail .product-images .main-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #F9F9F9;
}
.product-detail .product-images .main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail .product-images .thumbnail-images {
  display: flex;
  gap: 5px;
  width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.product-detail .product-images .thumbnail-images .thumbnail {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s ease;
  overflow: hidden;
}
.product-detail .product-images .thumbnail-images .thumbnail.active {
  border-color: #D0021B;
}
.product-detail .product-images .thumbnail-images .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail .product-detail-info .product-badges {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.product-detail .product-detail-info .product-badges .product-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  white-space: nowrap;
}
.product-detail .product-detail-info .product-badges .product-badge.discount-badge {
  background: linear-gradient(135deg, #ED2040, #ca102d);
  box-shadow: 0 2px 8px rgba(237, 32, 64, 0.3);
}
.product-detail .product-detail-info .product-badges .product-badge.sale {
  background: linear-gradient(135deg, #ED2040, #E96F14);
}
.product-detail .product-detail-info .product-badges .product-badge.new {
  background: linear-gradient(135deg, #D0021B, #E96F14);
}
.product-detail .product-detail-info .product-badges .product-badge.best {
  background: linear-gradient(135deg, #FFD912, #deba00);
}
.product-detail .product-detail-info .product-detail-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-detail .product-detail-info .product-detail-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
}
.product-detail .product-detail-info .product-detail-rating .stars {
  display: flex;
  gap: 5px;
}
.product-detail .product-detail-info .product-detail-rating .stars i {
  color: #FFD912;
  font-size: 18px;
}
.product-detail .product-detail-info .product-detail-rating .rating-score {
  font-size: 18px;
  font-weight: 800;
  color: #111;
}
.product-detail .product-detail-info .product-detail-rating .review-count {
  color: #555;
  font-size: 14px;
}
.product-detail .product-detail-info .product-detail-price {
  margin-bottom: 20px;
}
.product-detail .product-detail-info .product-detail-price .price-original {
  font-size: 20px;
  color: #555;
  text-decoration: line-through;
  margin-right: 10px;
}
.product-detail .product-detail-info .product-detail-price .price-sale {
  font-size: 32px;
  font-weight: 800;
  color: #ED2040;
}
.product-detail .product-detail-info .product-detail-meta {
  background: #F9F9F9;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.product-detail .product-detail-info .product-detail-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #555;
}
.product-detail .product-detail-info .product-detail-meta .meta-item:last-child {
  margin-bottom: 0;
}
.product-detail .product-detail-info .product-detail-meta .meta-item i {
  color: #D0021B;
}
.product-detail .product-detail-info .product-options {
  margin-bottom: 20px;
}
.product-detail .product-detail-info .product-options .option-group {
  margin-bottom: 20px;
}
.product-detail .product-detail-info .product-options .option-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;
}
.product-detail .product-detail-info .product-options .option-group .option-buttons {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.product-detail .product-detail-info .product-options .option-group .option-buttons .option-btn {
  padding: 10px 20px;
  border: 2px solid #EEEEEE;
  background: #FFFFFF;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 14px;
}
.product-detail .product-detail-info .product-options .option-group .option-buttons .option-btn:hover, .product-detail .product-detail-info .product-options .option-group .option-buttons .option-btn.active {
  border-color: #D0021B;
  background: rgba(208, 2, 27, 0.1);
  color: #D0021B;
}
.product-detail .product-detail-info .product-options .option-group .quantity-control {
  display: flex;
  align-items: center;
  gap: 5px;
  max-width: 150px;
}
.product-detail .product-detail-info .product-options .option-group .quantity-control .qty-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #EEEEEE;
  background: #FFFFFF;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-detail .product-detail-info .product-options .option-group .quantity-control .qty-btn:hover {
  border-color: #D0021B;
  color: #D0021B;
}
.product-detail .product-detail-info .product-options .option-group .quantity-control .qty-input {
  flex: 1;
  height: 40px;
  text-align: center;
  border: 2px solid #EEEEEE;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
}
.product-detail .product-detail-info .product-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.product-detail .product-detail-info .product-actions .btn-cart {
  flex: 2;
  padding: 20px;
  background: #FFFFFF;
  border: 2px solid #D0021B;
  color: #D0021B;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.product-detail .product-detail-info .product-actions .btn-cart:hover {
  background: #D0021B;
  color: #FFFFFF;
}
.product-detail .product-detail-info .product-actions .btn-buy {
  flex: 2;
  padding: 20px;
  background: #D0021B;
  border: none;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.product-detail .product-detail-info .product-actions .btn-buy:hover {
  background: #9d0214;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(208, 2, 27, 0.3);
}
.product-detail .product-detail-info .product-actions .btn-wishlist {
  width: 56px;
  height: 56px;
  border: 2px solid #EEEEEE;
  background: #FFFFFF;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #555;
}
.product-detail .product-detail-info .product-actions .btn-wishlist:hover {
  border-color: #ED2040;
  color: #ED2040;
}
.product-detail .product-detail-info .product-share {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid #EEEEEE;
}
.product-detail .product-detail-info .product-share span {
  font-size: 14px;
  color: #555;
}
.product-detail .product-detail-info .product-share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F9F9F9;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555;
  transition: 0.3s ease;
}
.product-detail .product-detail-info .product-share a:hover {
  background: #D0021B;
  color: #FFFFFF;
}

/* ############ Cart Page ############ */
.cart-section {
  padding: 30px 0;
}
.cart-section .cart-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: flex-start;
}
.cart-section .cart-items .cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #F9F9F9;
  border-radius: 10px;
  margin-bottom: 20px;
}
.cart-section .cart-items .cart-header .checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.cart-section .cart-items .cart-header .checkbox-wrapper input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.cart-section .cart-items .cart-header .delete-selected {
  padding: 8px 16px;
  background: #ED2040;
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s ease;
}
.cart-section .cart-items .cart-header .delete-selected:hover {
  background: #ca102d;
}
.cart-section .cart-items .cart-item {
  display: grid;
  grid-template-columns: auto 120px 2fr auto auto auto;
  gap: 20px;
  padding: 20px;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  margin-bottom: 20px;
  align-items: center;
  background: #FFFFFF;
}
.cart-section .cart-items .cart-item .checkbox-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cart-section .cart-items .cart-item .checkbox-wrapper input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.cart-section .cart-items .cart-item .cart-item-image img {
  width: 100%;
  border-radius: 5px;
}
.cart-section .cart-items .cart-item .cart-item-info .cart-item-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-section .cart-items .cart-item .cart-item-info .cart-item-option {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}
.cart-section .cart-items .cart-item .cart-item-info .cart-item-price .price-original {
  font-size: 14px;
  color: #555;
  text-decoration: line-through;
  margin-right: 5px;
}
.cart-section .cart-items .cart-item .cart-item-info .cart-item-price .price-sale {
  font-size: 18px;
  font-weight: 800;
  color: #ED2040;
}
.cart-section .cart-items .cart-item .cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cart-section .cart-items .cart-item .cart-item-quantity .qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #EEEEEE;
  background: #FFFFFF;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
.cart-section .cart-items .cart-item .cart-item-quantity .qty-btn:hover {
  border-color: #D0021B;
  color: #D0021B;
}
.cart-section .cart-items .cart-item .cart-item-quantity .qty-input {
  width: 60px;
  height: 32px;
  text-align: center;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
}
.cart-section .cart-items .cart-item .cart-item-total .total-price {
  font-size: 20px;
  font-weight: 800;
  color: #111;
}
.cart-section .cart-items .cart-item .cart-item-delete {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #555;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.cart-section .cart-items .cart-item .cart-item-delete:hover {
  color: #ED2040;
  transform: scale(1.2);
}
.cart-section .cart-summary {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.cart-section .cart-summary .summary-box {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  padding: 30px;
  background: #FFFFFF;
}
.cart-section .cart-summary .summary-box:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.cart-section .cart-summary .summary-box h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #EEEEEE;
}
.cart-section .cart-summary .summary-box .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}
.cart-section .cart-summary .summary-box .summary-row.discount {
  color: #ED2040;
}
.cart-section .cart-summary .summary-box .summary-row.discount .discount-amount {
  font-weight: 800;
}
.cart-section .cart-summary .summary-box .summary-row.total {
  font-size: 18px;
  font-weight: 800;
  margin-top: 10px;
}
.cart-section .cart-summary .summary-box .summary-row.total .final-price {
  font-size: 24px;
  color: #ED2040;
}
.cart-section .cart-summary .summary-box .summary-row .free {
  color: #0a7536;
  font-weight: 600;
}
.cart-section .cart-summary .summary-box .summary-divider {
  height: 1px;
  background: #EEEEEE;
  margin: 20px 0;
}
.cart-section .cart-summary .summary-box .summary-info {
  background: #F9F9F9;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.cart-section .cart-summary .summary-box .summary-info p {
  font-size: 12px;
  color: #555;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.cart-section .cart-summary .summary-box .checkout-btn {
  width: 100%;
  padding: 20px;
  background: #D0021B;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  margin-bottom: 10px;
  transition: 0.3s ease;
}
.cart-section .cart-summary .summary-box .checkout-btn:hover {
  background: #9d0214;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(208, 2, 27, 0.3);
}
.cart-section .cart-summary .summary-box .continue-shopping-btn {
  width: 100%;
  padding: 14px;
  background: #FFFFFF;
  color: #111;
  border: 2px solid #EEEEEE;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.cart-section .cart-summary .summary-box .continue-shopping-btn:hover {
  border-color: #D0021B;
  color: #D0021B;
}

/* ############ MyPage Styles ############ */
.mypage-wrapper {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
}

.mypage-sidebar .user-info {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
  background: #FFFFFF;
}
.mypage-sidebar .user-info:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.mypage-sidebar .user-info .user-avatar {
  font-size: 64px;
  color: #D0021B;
  margin-bottom: 10px;
}
.mypage-sidebar .user-info h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 5px;
}
.mypage-sidebar .user-info p {
  font-size: 14px;
  color: #555;
}
.mypage-sidebar .mypage-menu {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  background: #FFFFFF;
}
.mypage-sidebar .mypage-menu:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.mypage-sidebar .mypage-menu .menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 30px;
  color: #555;
  transition: 0.3s ease;
  border-left: 3px solid transparent;
}
.mypage-sidebar .mypage-menu .menu-item i {
  font-size: 20px;
  width: 24px;
}
.mypage-sidebar .mypage-menu .menu-item:hover, .mypage-sidebar .mypage-menu .menu-item.active {
  background: rgba(208, 2, 27, 0.05);
  color: #D0021B;
  border-left-color: #D0021B;
}

.mypage-content .order-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.mypage-content .order-summary .summary-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #FFFFFF;
}
.mypage-content .order-summary .summary-card:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.mypage-content .order-summary .summary-card .summary-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(208, 2, 27, 0.1), rgba(233, 111, 20, 0.1));
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #D0021B;
}
.mypage-content .order-summary .summary-card .summary-info {
  display: flex;
  flex-direction: column;
}
.mypage-content .order-summary .summary-card .summary-info .summary-label {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}
.mypage-content .order-summary .summary-card .summary-info .summary-count {
  font-size: 28px;
  font-weight: 800;
  color: #111;
}
.mypage-content .order-list h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}
.mypage-content .order-list .order-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  padding: 30px;
  margin-bottom: 20px;
  background: #FFFFFF;
}
.mypage-content .order-list .order-item:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.mypage-content .order-list .order-item .order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 20px;
}
.mypage-content .order-list .order-item .order-header .order-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mypage-content .order-list .order-item .order-header .order-info .order-date {
  font-weight: 600;
  font-size: 16px;
}
.mypage-content .order-list .order-item .order-header .order-info .order-number {
  font-size: 14px;
  color: #555;
}
.mypage-content .order-list .order-item .order-header .order-status {
  padding: 6px 16px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
}
.mypage-content .order-list .order-item .order-header .order-status.preparing {
  background: rgba(255, 217, 18, 0.1);
  color: #E96F14;
}
.mypage-content .order-list .order-item .order-header .order-status.delivered {
  background: rgba(10, 117, 54, 0.1);
  color: #0a7536;
}
.mypage-content .order-list .order-item .order-products {
  margin-bottom: 20px;
}
.mypage-content .order-list .order-item .order-products .order-product {
  display: flex;
  gap: 20px;
  align-items: center;
}
.mypage-content .order-list .order-item .order-products .order-product img {
  width: 100px;
  height: 100px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.mypage-content .order-list .order-item .order-products .order-product .order-product-info {
  flex: 1;
}
.mypage-content .order-list .order-item .order-products .order-product .order-product-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.mypage-content .order-list .order-item .order-products .order-product .order-product-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}
.mypage-content .order-list .order-item .order-products .order-product .order-product-info .order-product-price {
  font-size: 18px;
  font-weight: 800;
  color: #111;
}
.mypage-content .order-list .order-item .order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #EEEEEE;
}
.mypage-content .order-list .order-item .order-footer .order-total {
  font-size: 18px;
  font-weight: 800;
}
.mypage-content .order-list .order-item .order-footer .order-actions {
  display: flex;
  gap: 5px;
}
.mypage-content .order-list .order-item .order-footer .order-actions .btn-secondary {
  padding: 10px 20px;
  background: #FFFFFF;
  border: 2px solid #EEEEEE;
  color: #111;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 14px;
}
.mypage-content .order-list .order-item .order-footer .order-actions .btn-secondary:hover {
  border-color: #111;
}
.mypage-content .order-list .order-item .order-footer .order-actions .btn-primary {
  padding: 10px 20px;
  background: #D0021B;
  border: none;
  color: #FFFFFF;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 14px;
}
.mypage-content .order-list .order-item .order-footer .order-actions .btn-primary:hover {
  background: #9d0214;
}

/* Filter Widget */
/* ############ 반응형 라디오 필터 ############ */
.mobile-filter-radio {
  display: none;
}

.filter-widget {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFFFFF;
}
.filter-widget:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.filter-widget h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #EEEEEE;
}
.filter-widget .filter-list li {
  margin-bottom: 5px;
}
.filter-widget .filter-list li a {
  display: block;
  padding: 5px 0;
  color: #555;
  transition: 0.3s ease;
  font-size: 14px;
}
.filter-widget .filter-list li a:hover, .filter-widget .filter-list li a.active {
  color: #D0021B;
  padding-left: 5px;
  font-weight: 600;
}

.products-list .products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  gap: 20px;
}
@media (max-width: 767px) {
  .products-list .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 400px) {
  .products-list .products-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.products-list .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 50px;
}
.products-list .pagination .page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #EEEEEE;
  background: #FFFFFF;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555;
}
.products-list .pagination .page-btn i {
  color: #D0021B;
}
.products-list .pagination .page-btn:hover {
  border-color: #D0021B;
  color: #D0021B;
}
.products-list .pagination .page-btn:hover i {
  color: #D0021B;
}
.products-list .pagination .page-btn.active {
  background: #D0021B;
  border-color: #D0021B;
  color: #FFFFFF;
}
.products-list .pagination .page-btn.active i {
  color: #FFFFFF;
}

/* ============================================
   검색 결과 없음 메시지
   ============================================ */
.search-no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 50px 20px;
  background: #FFFFFF;
  border-radius: 10px;
  margin: 30px 0;
}
.search-no-results .no-results-icon {
  font-size: 64px;
  color: #EEEEEE;
  margin-bottom: 20px;
  opacity: 0.5;
}
.search-no-results .no-results-title {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  margin-bottom: 5px;
  line-height: 1.4;
}
.search-no-results .no-results-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}
.search-no-results .no-results-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.search-no-results .no-results-actions .btn {
  padding: 10px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}
.search-no-results .no-results-actions .btn.btn-primary {
  background: #D0021B;
  color: #FFFFFF;
}
.search-no-results .no-results-actions .btn.btn-primary i {
  color: #FFFFFF;
}
.search-no-results .no-results-actions .btn.btn-primary:hover {
  background: #9d0214;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(208, 2, 27, 0.3);
}
.search-no-results .no-results-actions .btn.btn-primary:hover i {
  color: #FFFFFF;
}
.search-no-results .no-results-actions .btn.btn-secondary {
  background: #F9F9F9;
  color: #111;
  border: 1px solid #EEEEEE;
}
.search-no-results .no-results-actions .btn.btn-secondary:hover {
  background: #FFFFFF;
  border-color: #D0021B;
  color: #D0021B;
}
.search-no-results .no-results-actions .btn i {
  font-size: 16px;
}

/* Product Tabs */
.product-tabs {
  margin-top: 50px;
}
.product-tabs .tab-content {
  padding: 30px;
  background: #FFFFFF;
  border-radius: 10px;
  margin-top: 20px;
  /* 강제로 scss */
}
.product-tabs .tab-content .product-description h3, .product-tabs .tab-content .product-description h4,
.product-tabs .tab-content .product-specs h3,
.product-tabs .tab-content .product-specs h4,
.product-tabs .tab-content .reviews-section h3,
.product-tabs .tab-content .reviews-section h4,
.product-tabs .tab-content .qna-section h3,
.product-tabs .tab-content .qna-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.product-tabs .tab-content .product-description p,
.product-tabs .tab-content .product-specs p,
.product-tabs .tab-content .reviews-section p,
.product-tabs .tab-content .qna-section p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}
.product-tabs .tab-content .product-description img,
.product-tabs .tab-content .product-specs img,
.product-tabs .tab-content .reviews-section img,
.product-tabs .tab-content .qna-section img {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}
.product-tabs .tab-content .product-description ul,
.product-tabs .tab-content .product-specs ul,
.product-tabs .tab-content .reviews-section ul,
.product-tabs .tab-content .qna-section ul {
  padding-left: 30px;
}
.product-tabs .tab-content .product-description ul li,
.product-tabs .tab-content .product-specs ul li,
.product-tabs .tab-content .reviews-section ul li,
.product-tabs .tab-content .qna-section ul li {
  list-style-type: square;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}
.product-tabs .tab-content .product-description table,
.product-tabs .tab-content .product-specs table,
.product-tabs .tab-content .reviews-section table,
.product-tabs .tab-content .qna-section table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
.product-tabs .tab-content .product-description table tr,
.product-tabs .tab-content .product-specs table tr,
.product-tabs .tab-content .reviews-section table tr,
.product-tabs .tab-content .qna-section table tr {
  border-bottom: 1px solid #EEEEEE;
}
.product-tabs .tab-content .product-description table tr th,
.product-tabs .tab-content .product-specs table tr th,
.product-tabs .tab-content .reviews-section table tr th,
.product-tabs .tab-content .qna-section table tr th {
  padding: 20px;
  background: #F9F9F9;
  font-weight: 600;
  text-align: left;
  width: 200px;
}
.product-tabs .tab-content .product-description table tr td,
.product-tabs .tab-content .product-specs table tr td,
.product-tabs .tab-content .reviews-section table tr td,
.product-tabs .tab-content .qna-section table tr td {
  padding: 20px;
  color: #555;
}
.product-tabs .tab-content table tr th {
  text-align: left;
}
.product-tabs .tab-content table tr td {
  padding-left: 20px;
}
.product-tabs .tab-content .review-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background: #F9F9F9;
  border-radius: 10px;
  margin-bottom: 30px;
}
.product-tabs .tab-content .review-summary .review-rating {
  text-align: center;
}
.product-tabs .tab-content .review-summary .review-rating .rating-number {
  font-size: 48px;
  font-weight: 800;
  color: #D0021B;
  display: block;
  margin-bottom: 5px;
}
.product-tabs .tab-content .review-summary .review-rating .stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.product-tabs .tab-content .review-summary .review-rating .stars i {
  color: #FFD912;
  font-size: 24px;
}
.product-tabs .tab-content .review-summary .review-rating .total-reviews {
  font-size: 14px;
  color: #555;
}
.product-tabs .tab-content .review-list .review-item {
  padding: 30px;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  margin-bottom: 20px;
  background: #FFFFFF;
}
.product-tabs .tab-content .review-list .review-item:last-child {
  border-bottom: 1px solid #EEEEEE;
}
.product-tabs .tab-content .review-list .review-item .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  align-items: flex-start;
}
.product-tabs .tab-content .review-list .review-item .review-header .reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.product-tabs .tab-content .review-list .review-item .review-header .reviewer-info .reviewer-name {
  font-weight: 600;
  font-size: 16px;
  color: #111;
}
.product-tabs .tab-content .review-list .review-item .review-header .reviewer-info .verified-badge {
  padding: 4px 8px;
  background: #D0021B;
  color: #FFFFFF;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
}
.product-tabs .tab-content .review-list .review-item .review-header .reviewer-info .review-stars {
  display: flex;
  gap: 5px;
}
.product-tabs .tab-content .review-list .review-item .review-header .reviewer-info .review-stars i {
  color: #FFD912;
  font-size: 14px;
}
.product-tabs .tab-content .review-list .review-item .review-header .review-date {
  font-size: 14px;
  color: #555;
}
.product-tabs .tab-content .review-list .review-item .review-content {
  color: #111;
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 14px;
}
.product-tabs .tab-content .review-list .review-item .review-helpful {
  margin-top: 10px;
}
.product-tabs .tab-content .review-list .review-item .review-helpful .helpful-btn {
  padding: 5px 20px;
  border: 1px solid #EEEEEE;
  border-radius: 50%;
  background: #FFFFFF;
  color: #555;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.product-tabs .tab-content .review-list .review-item .review-helpful .helpful-btn i {
  font-size: 14px;
}
.product-tabs .tab-content .review-list .review-item .review-helpful .helpful-btn:hover {
  border-color: #D0021B;
  color: #D0021B;
  background: #F9F9F9;
}
.product-tabs .tab-content .reviews-summary {
  padding: 30px;
  background: #F9F9F9;
  border-radius: 10px;
  margin-bottom: 50px;
}
.product-tabs .tab-content .reviews-summary .reviews-summary-rating {
  display: flex;
  align-items: center;
  gap: 20px;
}
.product-tabs .tab-content .reviews-summary .reviews-summary-rating .summary-rating-score {
  font-size: 32px;
  font-weight: 800;
  color: #D0021B;
}
.product-tabs .tab-content .reviews-summary .reviews-summary-rating .summary-stars {
  display: flex;
  gap: 4px;
}
.product-tabs .tab-content .reviews-summary .reviews-summary-rating .summary-stars i {
  color: #FFD912;
  font-size: 20px;
}
.product-tabs .tab-content .reviews-summary .reviews-summary-rating .summary-review-count {
  font-size: 16px;
  color: #555;
}
.product-tabs .tab-content .no-reviews {
  text-align: center;
  padding: 80px 20px;
}
.product-tabs .tab-content .no-reviews i {
  font-size: 64px;
  color: #EEEEEE;
  margin-bottom: 20px;
  opacity: 0.5;
}
.product-tabs .tab-content .no-reviews p {
  color: #555;
  margin: 8px 0;
  font-size: 16px;
}
.product-tabs .tab-content .qna-section .qna-item {
  padding: 20px;
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 20px;
}
.product-tabs .tab-content .qna-section .qna-item:last-child {
  border-bottom: none;
}
.product-tabs .tab-content .qna-section .qna-item .qna-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.product-tabs .tab-content .qna-section .qna-item .qna-header .qna-category {
  padding: 5px 10px;
  background: #F9F9F9;
  border-radius: 50%;
  font-size: 12px;
  color: #555;
}
.product-tabs .tab-content .qna-section .qna-item .qna-header h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.product-tabs .tab-content .qna-section .qna-item p {
  color: #555;
  padding-left: 60px;
}

/* ############ Footer ############ */
.footer {
  background: linear-gradient(0deg, rgb(20, 20, 65), #1E1E46 30%);
  color: #F9F9F9;
  padding: 50px 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.footer .container .footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 30px;
}
.footer .container .footer-content .footer-section {
  position: relative;
  padding: 30px;
}
.footer .container .footer-content .footer-section:nth-child(1), .footer .container .footer-content .footer-section:nth-child(2) {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .container .footer-content .footer-section:nth-child(1), .footer .container .footer-content .footer-section:nth-child(3) {
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .container .footer-content .footer-section h3 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer .container .footer-content .footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 5px;
}
.footer .container .footer-content .footer-section strong {
  color: #FFFFFF;
}
.footer .container .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 30px;
  margin-top: 30px;
}
.footer .container .copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}
.footer .container .footer-links {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.footer .container .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  opacity: 0.9;
  transition: 0.3s ease;
  padding: 5px 10px;
  border-radius: 5px;
}
.footer .container .footer-links a:hover {
  opacity: 1;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   쇼핑 가이드 & 소식 섹션
   ============================================ */
.info-section {
  padding: 100px 0 30px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: 0.3s;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.info-card .info-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(208, 2, 27, 0.1), rgba(233, 111, 20, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: 0.3s;
}
.info-card .info-icon i {
  font-size: 32px;
  color: #D0021B;
  transition: 0.3s;
}
.info-card:hover .info-icon {
  background: linear-gradient(135deg, #D0021B, #E96F14);
  transform: scale(1.1);
}
.info-card:hover .info-icon i {
  color: #FFFFFF;
}
.info-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}
.info-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 12px;
}
.info-card .info-meta {
  margin-top: auto;
  font-size: 12px;
  color: #999;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.info-card .info-meta span {
  padding: 4px 8px;
  background: #f5f5f5;
  border-radius: 4px;
}

/* ============================================
   베스트 상품 페이지 스타일
   ============================================ */
.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.products-toolbar .toolbar-left .products-count {
  font-size: 14px;
  color: #555;
}
.products-toolbar .toolbar-left .products-count strong {
  color: #D0021B;
  font-weight: 800;
}
.products-toolbar .toolbar-right .sort-select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  background: #FFFFFF;
  cursor: pointer;
  transition: 0.3s ease;
}
.products-toolbar .toolbar-right .sort-select:hover {
  border-color: #D0021B;
}
.products-toolbar .toolbar-right .sort-select:focus {
  outline: none;
  border-color: #D0021B;
  box-shadow: 0 0 0 3px rgba(208, 2, 27, 0.1);
}

.section-subtitle {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
}
.section-subtitle i {
  color: #D0021B;
}

.best-top3-section {
  margin-bottom: 60px;
}
.best-top3-section .best-top3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.best-top3-section .best-top3-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(23, 23, 23, 0.12);
  transition: 0.3s;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease;
  border: 2px solid transparent;
}
.best-top3-section .best-top3-card:hover {
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.16);
}
.best-top3-section .best-top3-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(23, 23, 23, 0.2);
  border-color: #D0021B;
}
.best-top3-section .best-top3-card .top3-rank-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  border-radius: 50%;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.best-top3-section .best-top3-card .top3-rank-badge i {
  font-size: 20px;
}
.best-top3-section .best-top3-card .product-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #F9F9F9;
}
.best-top3-section .best-top3-card .product-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.best-top3-section .best-top3-card .product-image-wrapper .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  z-index: 2;
}
.best-top3-section .best-top3-card .product-image-wrapper .product-badge.sale {
  background: linear-gradient(135deg, #ED2040, #E96F14);
}
.best-top3-section .best-top3-card .product-image-wrapper .product-badge.new {
  background: linear-gradient(135deg, #0a7536, #064620);
}
.best-top3-section .best-top3-card .product-image-wrapper .product-badge.hot {
  background: linear-gradient(135deg, #FFD912, #E96F14);
}
.best-top3-section .best-top3-card .product-image-wrapper .product-badge.best {
  background: linear-gradient(135deg, #D0021B, #E96F14);
}
.best-top3-section .best-top3-card .product-info {
  padding: 20px;
}
.best-top3-section .best-top3-card .product-info .product-rating {
  margin-bottom: 8px;
}
.best-top3-section .best-top3-card .product-info .product-title {
  margin-bottom: 8px;
  min-height: auto;
}
.best-top3-section .best-top3-card .product-info .product-price {
  margin-bottom: 8px;
}
.best-top3-section .best-top3-card .product-info .product-meta {
  margin-bottom: 12px;
}

.best-others-section .best-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.best-others-section .best-product-card .product-image-wrapper {
  position: relative;
}
.best-others-section .best-product-card .product-image-wrapper .product-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(208, 2, 27, 0.9);
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================
   CSS에만 있던 섹션 보강
   ============================================ */
/* Header Search Panel (독립) */
header.search-open .navbar .nav-search {
  display: block;
}

header .navbar .nav-brand .brand-logo {
  height: 28px;
  width: auto;
  display: block;
}

header .navbar .nav-brand .brand-text {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #D0021B, #E96F14);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: 0.3s;
  display: inline-block;
}

header .navbar .nav-brand a:hover .brand-text {
  transform: scale(1.05);
}

.nav-actions .nav-icon.search-toggle {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #D0021B;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-actions .nav-icon.search-toggle i,
.nav-actions .nav-icon.search-toggle .bi::before,
.nav-actions .nav-icon.search-toggle [class*=" bi-"]::before,
.nav-actions .nav-icon.search-toggle [class^=bi-]::before {
  color: #fff;
}

.nav-actions .nav-icon.search-toggle:hover {
  color: #fff;
  background: rgb(7, 48, 94);
}

.nav-actions .nav-icon.search-toggle:hover i,
.nav-actions .nav-icon.search-toggle:hover .bi::before,
.nav-actions .nav-icon.search-toggle:hover [class*=" bi-"]::before,
.nav-actions .nav-icon.search-toggle:hover [class^=bi-]::before {
  color: #fff;
}

.nav-search .search-close {
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.2s;
}

.nav-search .search-close:hover {
  color: #555;
  background: rgba(0, 0, 0, 0.04);
}

.search-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--search-panel-top, 72px);
  padding: 12px 0 18px;
  display: none;
  background: transparent;
  z-index: 1200;
}

.search-panel .search-panel-inner {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  padding: 12px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-panel .search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-panel .search-input {
  flex: 1;
  min-height: 46px;
  padding: 0 46px 0 14px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-size: 14px;
  transition: 0.2s;
}

.search-panel .search-input:focus {
  outline: none;
  border-color: #D0021B;
  box-shadow: 0 0 0 3px rgba(208, 2, 27, 0.1);
}

.search-panel .search-btn {
  position: absolute;
  right: 48px;
  width: 36px;
  height: 36px;
  background: #D0021B;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.search-panel .search-btn i,
.search-panel .search-btn .bi::before,
.search-panel .search-btn [class*=" bi-"]::before,
.search-panel .search-btn [class^=bi-]::before {
  color: #fff;
}

.search-panel .search-btn:hover {
  background: rgb(7, 48, 94);
}

.search-panel .search-btn:hover i,
.search-panel .search-btn:hover .bi::before,
.search-panel .search-btn:hover [class*=" bi-"]::before,
.search-panel .search-btn:hover [class^=bi-]::before {
  color: #fff;
}

.search-panel .search-close {
  position: absolute;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  color: #888;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.search-panel .search-close:hover {
  color: #555;
  border-color: #ccc;
  background: #f7f7f7;
}

.search-panel .search-suggestions {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
}

.search-panel .search-suggestions a,
.search-panel .search-suggestions .suggestion-item {
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eee;
  font-size: 13px;
  color: #444;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.search-panel .search-suggestions a:hover {
  border-color: #D0021B;
  color: #D0021B;
}

body.search-open .search-panel {
  display: block;
}

/* ============================
   Home layout (덩어리형)
   ============================ */
.home-top {
  padding: 28px 0 10px;
}

.home-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.home-feature {
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  color: #fff;
  min-height: 360px;
  position: relative;
}

.home-feature .feature-body {
  position: relative;
  z-index: 1;
  padding: 26px 26px 22px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  height: 100%;
}

.home-feature .feature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  opacity: 0.92;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-feature .feature-kicker i,
.home-feature .feature-kicker .bi::before,
.home-feature .feature-kicker [class*=" bi-"]::before,
.home-feature .feature-kicker [class^=bi-]::before {
  color: #fff;
}

.home-feature .feature-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  margin-top: 10px;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-feature .feature-desc {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.92;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-feature .feature-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  color: #D0021B;
  font-weight: 800;
  font-size: 15px;
}

.home-feature .feature-media {
  align-self: end;
  justify-self: end;
}

.home-feature .feature-media img {
  width: 760px;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.home-side {
  border-radius: 18px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-side-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.home-side-title {
  font-size: 16px;
  font-weight: 800;
  color: #111;
}

.home-side-link {
  font-size: 13px;
  color: #777;
  font-weight: 600;
}

.home-side-list {
  display: grid;
  gap: 10px;
}

.side-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eee;
  transition: 0.2s;
}

.side-item:hover {
  border-color: rgba(208, 2, 27, 0.35);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.side-item img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #f3f3f3;
}

.side-item .side-title {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  line-height: 1.35;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-item .side-meta {
  font-size: 12px;
  color: #777;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.deal-row {
  padding: 16px 0 10px;
}

.deal-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 18px;
  align-items: stretch;
}

.deal-timer {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.deal-timer-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.deal-title {
  font-size: 16px;
  font-weight: 800;
  color: #111;
}

.deal-link {
  font-size: 13px;
  color: #D0021B;
  font-weight: 800;
}

.deal-clock {
  display: flex;
  align-items: center;
  gap: 10px;
}

.deal-unit {
  flex: 0 0 auto;
  min-width: 90px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7f7f7;
  border: 1px solid #eee;
  text-align: center;
}

.deal-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #111;
}

.deal-label {
  display: block;
  font-size: 12px;
  color: #777;
}

.deal-sep {
  font-weight: 800;
  color: #999;
}

.deal-banner {
  border-radius: 16px;
  background: #111;
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 18px;
  border: 1px solid #CCCCCC;
}

.deal-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(./source/sale-bg.jpg) no-repeat right/cover;
}

.deal-banner > * {
  position: relative;
  z-index: 1;
}

.deal-banner-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}

.deal-banner-title {
  margin-top: 12px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
}

.deal-banner-desc {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.92;
  color: #fff;
}

.section-header.compact {
  margin-bottom: 14px;
}

.hscroll-section:nth-of-type(3) {
  margin-top: 100px;
  background: #FFd502 url(./source/main-bg.jpg) right no-repeat;
}

.hscroll-section:nth-of-type(4) {
  background: #F9F9F9;
}

.hscroll-controls {
  display: flex;
  gap: 6px;
  align-items: center;
}

.hscroll-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
}

.hscroll-arrow:hover {
  border-color: #D0021B;
  color: #D0021B;
}

.hscroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 0;
  padding-right: 14px;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-right: 14px;
}

.hscroll::-webkit-scrollbar {
  display: none;
}

.hscroll .hcard {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* 신상품 섹션은 6단으로 표시 */
#newScroll.hscroll .hcard {
  flex: 0 0 calc((100% - 70px) / 6);
  min-width: 160px;
  scroll-snap-align: start;
}

.hscroll .hcard img {
  width: 100%;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}

.hscroll .hcard .hbody {
  padding: 12px 12px 14px;
}

.hscroll .hcard .htitle {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hscroll .hcard .hmeta {
  font-size: 12px;
  color: #777;
  display: flex;
  gap: 10px;
}

.home-matrix {
  padding: 18px 0 30px;
}

.matrix-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
}

.matrix-main {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(140, 10, 10, 0), rgba(0, 0, 0, 0.3)), url("./source/sale-banner.png");
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.matrix-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(208, 2, 27, 0.2);
}

.matrix-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(208, 2, 27, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.matrix-main:hover::before {
  opacity: 1;
}

.matrix-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 30px;
}

.matrix-banner-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: #fff;
}

.matrix-banner-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}

.matrix-banner-desc {
  font-size: 16px;
  opacity: 0.95;
  line-height: 1.6;
  color: #fff;
}

.matrix-side {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.matrix-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.matrix-card img {
  width: 100%;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}

.matrix-card .mbody {
  padding: 12px 12px 14px;
}

.matrix-card .mtitle {
  font-size: 13px;
  font-weight: 800;
  color: #111;
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}

.matrix-card .mprice {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.matrix-card .mprice-original {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.matrix-card .mprice-sale {
  font-size: 15px;
  font-weight: 800;
  color: #D0021B;
}

.matrix-card .mmeta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

.matrix-card .mmeta span {
  display: flex;
  align-items: center;
  gap: 3px;
}

.products-section .products-grid.mosaic {
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: minmax(260px, auto);
}

.products-section .products-grid.mosaic .product-card:first-child {
  grid-row: span 2;
}

.products-section .products-grid.mosaic .product-card:nth-child(n+2) {
  height: 100%;
}

/* Countdown Section */
.countdown-section {
  padding: 60px 0;
}

.countdown-section .countdown-banner {
  border-radius: 14px;
  padding: 28px 28px;
  background: linear-gradient(135deg, #D0021B 0%, #0a3d6b 50%, #ffffff 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.countdown-section .countdown-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.countdown-section .countdown-timer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.countdown-section .countdown-item {
  min-width: 70px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  text-align: center;
}

.countdown-section .countdown-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
}

.countdown-section .countdown-label {
  display: block;
  font-size: 12px;
  opacity: 0.85;
}

.countdown-section .countdown-separator {
  font-size: 28px;
  font-weight: 600;
}

.countdown-section .countdown-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  color: #D0021B;
  font-size: 14px;
  font-weight: 600;
}

/* Live Notification (실시간 구매 알림) */
.live-notification {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 800;
  transform: translateX(-120%);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.live-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.live-notification .notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.live-notification .notification-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.live-notification .notification-text {
  font-size: 13px;
}

.live-notification .notification-text strong {
  font-weight: 600;
}

.live-notification .notification-close {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

/* Trending Keywords */
.trending-keywords {
  padding: 40px 0 10px;
}

.trending-keywords .trending-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  margin-bottom: 12px;
  color: #555;
}

.trending-keywords .keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trending-keywords .keyword-item {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #eee;
  font-size: 13px;
  color: #555;
  background: #fff;
  transition: 0.2s;
}

.trending-keywords .keyword-item:hover {
  border-color: #D0021B;
  color: #D0021B;
  background: #F0F5FF;
}

/* Reviews Section */
.reviews-section {
  padding: 70px 0 40px;
  background: #fff;
}

.reviews-section .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reviews-section .review-card {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  padding: 20px 20px 16px;
}

.reviews-section .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.reviews-section .reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-section .reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D0021B, #E96F14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.reviews-section .reviewer-name {
  font-size: 14px;
  font-weight: 600;
}

.reviews-section .review-stars i {
  font-size: 14px;
  color: #FFD912;
}

.reviews-section .review-date {
  font-size: 12px;
  color: #999;
}

.reviews-section .review-product {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.reviews-section .review-product img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-section .review-content {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.reviews-section .review-helpful button {
  border-radius: 999px;
  border: 1px solid #eee;
  padding: 6px 14px;
  font-size: 12px;
  color: #555;
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.reviews-section .review-helpful button:hover {
  border-color: #D0021B;
  color: #D0021B;
  background: #F0F5FF;
}

/* Event Banners */
.event-banners {
  padding: 60px 0 30px;
}

.event-banners .banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.event-banners .event-banner {
  border-radius: 18px;
  padding: 24px 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.event-banners .event-banner:nth-child(1) {
  background: linear-gradient(135deg, #D0021B, #E96F14);
}

.event-banners .event-banner:nth-child(2) {
  background: linear-gradient(135deg, #FF641B, #FF3C6D);
}

.event-banners .event-banner:nth-child(3) {
  background: linear-gradient(135deg, #0a7536, #27AE60);
}

.event-banners .banner-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.event-banners .banner-content p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.event-banners .banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-weight: 600;
}

/* Newsletter Section */
.newsletter-section {
  padding: 100px 0;
  margin-top: 100px;
  background: #FFd502;
}

.newsletter-section .newsletter-box {
  border-radius: 18px;
  padding: 28px 32px;
  background: #D0021B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #fff;
}

.newsletter-section .newsletter-content h2 {
  font-size: 22px;
  margin-bottom: 4px;
  color: #fff;
}

.newsletter-section .newsletter-content h2 i,
.newsletter-section .newsletter-content h2 .bi::before,
.newsletter-section .newsletter-content h2 [class*=" bi-"]::before,
.newsletter-section .newsletter-content h2 [class^=bi-]::before {
  color: #fff;
}

.newsletter-section .newsletter-content p {
  font-size: 14px;
  opacity: 0.95;
  color: #fff;
}

.newsletter-section .newsletter-form {
  display: flex;
  gap: 8px;
  flex: 1;
}

.newsletter-section .newsletter-form input[type=email] {
  flex: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
}

.newsletter-section .newsletter-form button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #FFD912;
  color: #333;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

.mypage-panel {
  display: none;
}

.mypage-panel.active {
  display: block;
}

/* ============================================
   마이페이지 - 찜한 상품
   ============================================ */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.wishlist-empty {
  text-align: center;
  padding: 80px 20px;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.empty-state .empty-icon {
  font-size: 64px;
  color: #EEEEEE;
  margin-bottom: 20px;
  opacity: 0.5;
}
.empty-state h3 {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin-bottom: 5px;
}
.empty-state p {
  color: #555;
  margin: 5px 0 50px;
  text-align: center;
}

/* ============================================
   마이페이지 - 리뷰 관리
   ============================================ */
.review-tabs {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  border-bottom: 2px solid #EEEEEE;
}
.review-tabs .review-tab {
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #555;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: -2px;
}
.review-tabs .review-tab:hover {
  color: #D0021B;
}
.review-tabs .review-tab.active {
  color: #D0021B;
  border-bottom-color: #D0021B;
}

.review-content {
  margin-top: 30px;
}

.review-section {
  display: none;
}
.review-section.active {
  display: block;
}

.review-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  margin-bottom: 20px;
}
.review-item .review-product {
  display: flex;
  align-items: center;
  gap: 20px;
}
.review-item .review-product img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.review-item .review-product h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.review-item .review-product p {
  font-size: 14px;
  color: #555;
}

.written-review {
  padding: 30px;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  margin-bottom: 20px;
}
.written-review .review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.written-review .review-header .review-product {
  flex: 1;
}
.written-review .review-header .review-product .review-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}
.written-review .review-header .review-product .review-rating i {
  color: #FFD912;
}
.written-review .review-header .review-product .review-rating span {
  font-weight: 600;
}
.written-review .review-header .review-date {
  font-size: 14px;
  color: #555;
}
.written-review .review-body {
  margin-bottom: 20px;
}
.written-review .review-body p {
  line-height: 1.6;
  color: #111;
}
.written-review .review-actions {
  display: flex;
  gap: 10px;
}

/* ============================================
   마이페이지 - 회원정보 수정
   ============================================ */
.profile-section {
  margin-top: 30px;
}

.profile-avatar-section {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #EEEEEE;
}
.profile-avatar-section .profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-avatar-section .profile-avatar i {
  font-size: 120px;
  color: #555;
}

.profile-form {
  max-width: 600px;
}
.profile-form .form-group {
  margin-bottom: 30px;
}
.profile-form .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #111;
}
.profile-form .form-group label .required {
  color: #ED2040;
}
.profile-form .form-group input[type=text],
.profile-form .form-group input[type=email],
.profile-form .form-group input[type=tel],
.profile-form .form-group input[type=date] {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  font-size: 15px;
  transition: 0.3s ease;
}
.profile-form .form-group input[type=text]:focus,
.profile-form .form-group input[type=email]:focus,
.profile-form .form-group input[type=tel]:focus,
.profile-form .form-group input[type=date]:focus {
  outline: none;
  border-color: #D0021B;
  box-shadow: 0 0 0 3px rgba(208, 2, 27, 0.1);
}
.profile-form .form-group input[type=text][readonly],
.profile-form .form-group input[type=email][readonly],
.profile-form .form-group input[type=tel][readonly],
.profile-form .form-group input[type=date][readonly] {
  background: #F9F9F9;
  cursor: not-allowed;
}
.profile-form .form-group .form-help {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #555;
}
.profile-form .form-group .radio-group {
  display: flex;
  gap: 30px;
}
.profile-form .form-group .radio-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  cursor: pointer;
}
.profile-form .form-group .radio-group label input[type=radio] {
  cursor: pointer;
}
.profile-form .form-actions {
  display: flex;
  gap: 10px;
  margin-top: 50px;
}

.profile-security {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #EEEEEE;
}
.profile-security h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 30px;
}
.profile-security .security-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  margin-bottom: 20px;
}
.profile-security .security-item .security-info {
  flex: 1;
}
.profile-security .security-item .security-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.profile-security .security-item .security-info p {
  font-size: 14px;
  color: #555;
}

/* ============================================
   마이페이지 - 배송지 관리
   ============================================ */
.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.address-list {
  margin-top: 30px;
}

.address-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}
.address-item:hover {
  border-color: #D0021B;
  box-shadow: 0 2px 8px rgba(208, 2, 27, 0.1);
}
.address-item .address-info {
  flex: 1;
}
.address-item .address-info .address-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.address-item .address-info .address-header-info h4 {
  font-size: 18px;
  font-weight: 800;
}
.address-item .address-info .address-header-info .address-badge {
  padding: 5px 10px;
  background: #D0021B;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
}
.address-item .address-info .address-header-info .address-badge.default {
  background: #D0021B;
}
.address-item .address-info .address-phone {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}
.address-item .address-info .address-detail {
  font-size: 15px;
  color: #111;
  margin-bottom: 5px;
  line-height: 1.6;
}
.address-item .address-info .address-postal {
  font-size: 13px;
  color: #555;
}
.address-item .address-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.address-empty {
  text-align: center;
  padding: 80px 20px;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D0021B, #E96F14);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(208, 2, 27, 0.3);
}

.scroll-top i,
.scroll-top .bi::before,
.scroll-top [class*=" bi-"]::before,
.scroll-top [class^=bi-]::before {
  color: #fff;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: linear-gradient(135deg, #E96F14, #D0021B);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(208, 2, 27, 0.4);
}

.scroll-top:active {
  transform: translateY(-1px);
}