/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #212121;
  background: #000;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

ul { list-style: none; }

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

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* ===== HEADER ===== */
.doz_header_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.doz_header_wrap.scrolled {
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(255,255,255,0.05);
}

.header_inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 71px;
}

.header_left {
  flex: 1;
}

.header_center {
  flex: 0 0 auto;
}

.header_right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.logo {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 6px;
  white-space: nowrap;
}

.logo:hover { opacity: 1; }

.header_icon {
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
}

.header_icon:hover { opacity: 0.5; }

.cart_icon { position: relative; }

.cart_count {
  position: absolute;
  top: -5px;
  right: -7px;
  background: #fff;
  color: #000;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile Menu Button */
.mobile_menu_btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  z-index: 1001;
}

.mobile_menu_btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile_menu_btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile_menu_btn.active span:nth-child(2) { opacity: 0; }
.mobile_menu_btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation */
.viewport_nav {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  background: transparent;
  transition: background 0.4s ease;
}

.doz_header_wrap.scrolled .viewport_nav {
  background: rgba(0,0,0,0.97);
}

.nav_list {
  display: flex;
  gap: 0;
}

.nav_item {
  position: relative;
}

.nav_link {
  display: block;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.nav_link:hover {
  opacity: 1;
  color: rgba(255,255,255,0.5);
}

/* Dropdown */
.dropdown_menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  min-width: 200px;
  background: rgba(0,0,0,0.97);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.nav_item:hover .dropdown_menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown_menu ul li a {
  display: block;
  padding: 12px 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  font-weight: 400;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown_menu ul li a:hover {
  opacity: 1;
  color: #fff;
  background: rgba(255,255,255,0.04);
}

/* Search Overlay */
.search_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.search_overlay.open {
  opacity: 1;
  visibility: visible;
}

.search_inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 600px;
  max-width: 90%;
}

.search_input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 24px;
  font-family: 'Pretendard', sans-serif;
  padding: 12px 0;
  outline: none;
  letter-spacing: 2px;
}

.search_input::placeholder {
  color: rgba(255,255,255,0.3);
}

.search_close {
  color: #fff;
  padding: 8px;
}

/* Mobile Nav Overlay */
.mobile_nav_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile_nav_overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ===== HERO / VISUAL SECTION ===== */
.visual_section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

.owl_slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}

.slide_item.active {
  opacity: 1;
  z-index: 2;
}

.slide_bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease;
}

.slide_item.active .slide_bg img {
  transform: scale(1.08);
}

.slide_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 3;
}

.slide_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 4;
}

.slide_sub {
  font-size: 12px;
  letter-spacing: 8px;
  margin-bottom: 24px;
  opacity: 0.7;
  font-weight: 300;
}

.slide_title {
  font-size: 60px;
  font-weight: 200;
  letter-spacing: 14px;
  line-height: 1.3;
  margin-bottom: 36px;
}

.slide_btn {
  display: inline-block;
  padding: 15px 50px;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  transition: all 0.4s ease;
}

.slide_btn:hover {
  opacity: 1;
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Slider Dots */
.owl_dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.owl_dot {
  padding: 4px;
  cursor: pointer;
}

.owl_dot span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  transition: all 0.3s ease;
}

.owl_dot.active span {
  background: #fff;
  border-color: #fff;
}

/* Slider Arrows */
.owl_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
  z-index: 10;
  padding: 20px 10px;
  transition: color 0.3s ease;
}

.owl_nav:hover { color: #fff; }
.owl_prev { left: 30px; }
.owl_next { right: 30px; }

/* Slide Count */
.slide_count {
  position: absolute;
  bottom: 42px;
  right: 50px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 3px;
  z-index: 10;
  font-weight: 300;
}

.slide_count .current_num {
  color: #fff;
  font-weight: 500;
}

.slide_count .divider {
  margin: 0 6px;
}

/* ===== CATEGORY BANNER ===== */
.section_category {
  background: #000;
  padding: 0;
}

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

.category_item {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3/4;
}

.category_item:hover { opacity: 1; }

.category_img_wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.category_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.category_item:hover .category_img_wrap img {
  transform: scale(1.06);
}

.category_text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  z-index: 2;
}

.category_text h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 6px;
}

.category_text span {
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 1px;
  font-weight: 300;
}

/* ===== SECTIONS ===== */
.section_shop {
  padding: 100px 0 80px;
  background: #000;
}

.section_dark {
  background: #0a0a0a;
}

.shop_container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.section_header {
  text-align: center;
  margin-bottom: 50px;
}

.section_title {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 10px;
  color: #fff;
  margin-bottom: 12px;
}

.section_desc {
  font-size: 13px;
  color: #666;
  letter-spacing: 2px;
  font-weight: 300;
}

/* Shop Tab */
.shop_tab {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tab_btn {
  padding: 12px 28px;
  font-size: 12px;
  color: #666;
  letter-spacing: 2px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tab_btn:hover { color: #fff; }

.tab_btn.active {
  color: #fff;
  border-bottom-color: #fff;
}

/* Product Grid */
.product_grid {
  display: grid;
  gap: 30px 20px;
}

.product_grid.col4 {
  grid-template-columns: repeat(4, 1fr);
}

.product_item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.product_item.visible {
  opacity: 1;
  transform: translateY(0);
}

.product_thumb {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111;
}

.product_thumb:hover { opacity: 1; }

.product_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product_thumb:hover img:first-child {
  transform: scale(1.04);
}

.product_thumb_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product_thumb:hover .product_thumb_hover {
  opacity: 1;
}

/* Badge */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  letter-spacing: 1px;
  z-index: 2;
}

.badge_best { background: #000; color: #fff; }
.badge_new { background: #222; color: #fff; }
.badge_sale { background: #8b0000; color: #fff; }

/* Wish Button */
.wish_btn {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 6px;
  z-index: 2;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.product_thumb:hover .wish_btn { opacity: 1; }

/* Product Info */
.product_info {
  padding: 14px 2px;
}

.product_name {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  line-height: 1.5;
  font-weight: 400;
}

.product_price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.sale_per {
  font-size: 14px;
  font-weight: 700;
  color: #e74c3c;
}

.sale_price {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.origin_price {
  font-size: 12px;
  color: #555;
  text-decoration: line-through;
  font-weight: 400;
}

.product_color_chips {
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
}

.chip {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
}

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

.star_rate {
  font-size: 10px;
  color: #c4a46c;
  letter-spacing: -1px;
}

.review_count {
  font-size: 11px;
  color: #555;
}

/* View All Button */
.view_all_btn {
  display: block;
  width: 200px;
  margin: 50px auto 0;
  padding: 14px 0;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: #999;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view_all_btn:hover {
  opacity: 1;
  border-color: #fff;
  color: #fff;
}

/* ===== LOOKBOOK ===== */
.section_lookbook {
  background: #000;
  padding: 0;
}

.lookbook_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.lookbook_item {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: auto;
}

.lookbook_item:hover { opacity: 1; }

.lookbook_large {
  grid-row: span 2;
}

.lookbook_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.lookbook_item:hover img {
  transform: scale(1.05);
}

.lookbook_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
  transition: background 0.4s ease;
  z-index: 2;
}

.lookbook_item:hover .lookbook_overlay {
  background: rgba(0,0,0,0.15);
}

.lookbook_text {
  position: absolute;
  bottom: 50px;
  left: 40px;
  color: #fff;
  z-index: 3;
}

.lookbook_sub {
  display: block;
  font-size: 11px;
  letter-spacing: 5px;
  opacity: 0.6;
  margin-bottom: 12px;
  font-weight: 300;
}

.lookbook_title {
  font-size: 26px;
  font-weight: 200;
  letter-spacing: 5px;
  line-height: 1.5;
}

.lookbook_link {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 3px;
  opacity: 0.6;
  font-weight: 400;
}

/* ===== REVIEW SECTION ===== */
.section_review {
  padding: 100px 0;
  background: #000;
}

.review_slider {
  overflow: hidden;
  margin-top: 10px;
}

.review_track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 10px;
}

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

.review_card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.review_img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.review_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review_body {
  padding: 24px;
}

.review_stars {
  font-size: 12px;
  color: #c4a46c;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.review_text {
  font-size: 13px;
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
}

.review_author {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.5px;
}

/* ===== INSTAGRAM ===== */
.section_instagram {
  padding: 80px 0 0;
  background: #000;
}

.section_instagram .section_header {
  padding: 0 40px;
}

.insta_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-top: 50px;
}

.insta_item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.insta_item:hover { opacity: 1; }

.insta_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.insta_item:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer_inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer_top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 60px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer_logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 5px;
  margin-bottom: 16px;
}

.footer_brand_desc {
  font-size: 13px;
  color: #666;
  line-height: 1.9;
  font-weight: 300;
}

.footer_social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer_social a {
  color: #555;
  transition: color 0.3s ease;
}

.footer_social a:hover {
  opacity: 1;
  color: #fff;
}

.footer_col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #fff;
}

.footer_col ul li {
  margin-bottom: 10px;
}

.footer_col ul li,
.footer_col ul li a {
  font-size: 13px;
  color: #666;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.footer_col ul li a:hover {
  opacity: 1;
  color: #fff;
}

.contact_phone {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin-bottom: 14px !important;
  letter-spacing: 1px !important;
}

.kakao_btn {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 20px;
  background: #FEE500;
  color: #3C1E1E;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.kakao_btn:hover { opacity: 0.85; }

.footer_bottom {
  padding: 30px 0 40px;
  text-align: center;
}

.footer_info p {
  font-size: 11px;
  color: #444;
  line-height: 2;
  font-weight: 300;
}

.footer_policy {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.footer_policy a {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.5px;
}

.footer_policy a.bold {
  font-weight: 700;
  color: #999;
}

.footer_policy span {
  color: #333;
  font-size: 10px;
}

.footer_policy a:hover {
  opacity: 1;
  color: #fff;
}

.copyright {
  margin-top: 20px;
  font-size: 11px;
  color: #333;
  letter-spacing: 2px;
  font-weight: 300;
}

/* ===== QUICK MENU ===== */
.quick_menu {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.quick_menu.visible {
  opacity: 1;
  visibility: visible;
}

.quick_item {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.quick_kakao {
  background: #FEE500;
}

.quick_kakao:hover { opacity: 0.85; }

.quick_top {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

.quick_top:hover {
  background: rgba(255,255,255,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .header_inner,
  .shop_container,
  .footer_inner {
    padding: 0 30px;
  }

  .viewport_nav { padding: 0 30px; }

  .slide_title { font-size: 48px; }

  .product_grid.col4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .review_card { flex: 0 0 320px; }
}

@media (max-width: 992px) {
  .mobile_menu_btn { display: flex; }

  .header_inner { height: 58px; }
  .logo { font-size: 22px; letter-spacing: 4px; }

  .viewport_nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    flex-direction: column;
    background: rgba(0,0,0,0.98);
    padding: 80px 0 40px;
    overflow-y: auto;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .viewport_nav.open { left: 0; }

  .nav_list { flex-direction: column; }

  .nav_link {
    padding: 16px 30px;
    font-size: 15px;
    letter-spacing: 3px;
  }

  .dropdown_menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    display: none;
    background: rgba(255,255,255,0.02);
  }

  .nav_item.active .dropdown_menu { display: block; }

  .dropdown_menu ul li a {
    padding: 10px 44px;
  }

  .category_grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .category_item { aspect-ratio: 16/9; }

  .footer_top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .lookbook_grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .lookbook_large { grid-row: span 1; }
  .lookbook_item { aspect-ratio: 16/9; }

  .review_card { flex: 0 0 280px; }
}

@media (max-width: 768px) {
  .header_inner,
  .shop_container,
  .footer_inner,
  .viewport_nav,
  .section_instagram .section_header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .slide_title {
    font-size: 32px;
    letter-spacing: 6px;
  }

  .slide_sub {
    font-size: 10px;
    letter-spacing: 5px;
  }

  .slide_btn {
    padding: 12px 36px;
    font-size: 10px;
  }

  .owl_nav { display: none; }
  .slide_count { display: none; }

  .section_shop { padding: 60px 0 50px; }
  .section_review { padding: 60px 0; }

  .section_title {
    font-size: 20px;
    letter-spacing: 6px;
  }

  .shop_tab { gap: 0; }
  .tab_btn { padding: 10px 16px; font-size: 11px; }

  .product_grid.col4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product_name { font-size: 12px; }
  .sale_price { font-size: 13px; }
  .sale_per { font-size: 12px; }
  .origin_price { font-size: 11px; }

  .wish_btn { opacity: 1; }

  .insta_grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer_top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0 30px;
  }

  .lookbook_text { bottom: 24px; left: 24px; }
  .lookbook_title { font-size: 20px; }

  .review_card { flex: 0 0 260px; }

  .quick_menu { bottom: 16px; right: 16px; }
  .quick_item { width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  .slide_title {
    font-size: 26px;
    letter-spacing: 4px;
  }

  .slide_content { width: 85%; }

  .category_text h3 { font-size: 18px; }
}
