/* ===== CSS Variables ===== */
:root {
  --header-bg: #282828;
  --header-color: #fff;
  --topbar-bg: #F3FF34;
  --topbar-color: #313131;
  --footer-bg: #282828;
  --footer-color: #fff;
  --accent-red: #e02020;
  --accent-orange: #F8AD6B;
  --text-dark: #1D1F21;
  --text-muted: #999;
  --bg-light: #f4f4f4;
  --discount-tag-color: #fff;
  --discount-tag-bg: #e02020;
  --container-max: 1400px;
  --header-height: 60px;
  --transition: 0.3s ease;
  --popup-radius: 0px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Arimo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input { font: inherit; }

.container-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: middle;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--topbar-bg);
  color: var(--topbar-color);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
}
.top-bar a { color: inherit; }
.top-bar a:hover { text-decoration: underline; }

/* ===== Header ===== */
.page-header { --font-color: #fff; --bg-color: #282828; }
.header_box { z-index: 400; width: 100%; }
.header_box.header_fixed .header-nav {
  position: fixed;
  left: 0; top: 0;
  width: 100%;
  z-index: 400;
  background: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: background-color 0.5s;
}
.header-nav {
  background: var(--header-bg);
  color: var(--header-color);
  position: relative;
  z-index: 400;
}
.header-nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: var(--header-height);
}
.header-logo img { height: 40px; width: auto; }
.header-nav-left { flex: 1; display: flex; justify-content: center; }
.header-nav-left .header-nav-content { height: 100%; }
.header-nav-left .header-nav-content .header-menu { height: 100%; display: flex; gap: 0; }
.header-nav-left .header-nav-content .header-menu .header-nav-item { height: 100%; }
.header-menu { display: flex; gap: 0; }
.header-nav-item.more-menu.hidden { display: none !important; }
.header-nav-item .navigation {
  display: block;
  padding: 0 18px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--header-color);
  line-height: var(--header-height);
  transition: opacity var(--transition);
}
.header-nav-item .navigation:hover { opacity: 0.7; }
.header-nav-right { display: flex; align-items: center; gap: 16px; }
.header-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--header-color);
  cursor: pointer;
  transition: opacity var(--transition);
}
.header-nav-icon:hover { opacity: 0.7; }
.header-nav-icon svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--accent-red);
  color: #fff;
  font-size: 10px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-nav-icon.cart-icon { position: relative; }
.mobile-menu-icon, .mobile-search-icon { display: none; }

/* ===== Mobile Menu ===== */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  visibility: hidden;
}
.fullscreen-menu.active {
  pointer-events: auto;
  visibility: visible;
}
.fullscreen-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.4s;
}
.fullscreen-menu.active .fullscreen-mask { opacity: 1; }
.fullscreen-wrapper {
  position: absolute;
  left: 0; top: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.fullscreen-menu.active .fullscreen-wrapper { transform: translateX(0); }
.bar-light {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}
.icn-close {
  width: 24px; height: 24px;
  position: relative;
  cursor: pointer;
}
.icn-close::before, .icn-close::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 2px;
  background: var(--text-dark);
}
.icn-close::before { transform: rotate(45deg); }
.icn-close::after { transform: rotate(-45deg); }
.mobile_nav { flex: 1; padding: 10px 0; }
.mobile_nav-item {
  border-bottom: 1px solid #eee;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.3s, transform 0.3s;
}
.fullscreen-menu.active .mobile_nav-item {
  opacity: 1;
  transform: translateX(0);
}
.mobile_nav-item a {
  display: block;
  padding: 16px 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}
.mobile_user {
  padding: 20px 24px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s 0.2s, transform 0.4s 0.2s;
}
.fullscreen-menu.active .mobile_user { opacity: 1; transform: translateY(0); }

/* ===== Search Popup ===== */
.search-popup {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.search-popup.show { visibility: visible; opacity: 1; }
.search-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.search-content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 600px;
  padding: 30px;
  transform: translateY(-20px);
  transition: transform 0.3s;
}
.search-popup.show .search-content { transform: translateY(0); }
.search-content input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #ddd;
  font-size: 16px;
  outline: none;
}
.search-content input:focus { border-color: var(--text-dark); }
.search-popup-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ===== Cart Drawer ===== */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 600;
  pointer-events: none;
  visibility: hidden;
}
.cart-drawer.active { pointer-events: auto; visibility: visible; }
.cart-drawer-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.cart-drawer.active .cart-drawer-mask { opacity: 1; }
.cart-drawer-panel {
  position: absolute;
  right: 0; top: 0;
  width: 400px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}
.cart-drawer.active .cart-drawer-panel { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #eee;
  font-weight: 600;
}
.cart-body { flex: 1; overflow-y: auto; padding: 20px; }
.cart-empty { text-align: center; color: var(--text-muted); padding: 40px 0; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
.cart-item:last-child { border-bottom: none; padding-bottom: 0; }
.cart-item-main { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 4px;
}
.cart-item-variant {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.cart-item-qty {
  font-size: 13px;
  color: var(--text-muted);
}
.cart-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-dark);
}
.cart-subtotal strong {
  font-size: 16px;
}
.cart-footer { padding: 20px; border-top: 1px solid #eee; }
.cart-button {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity var(--transition);
}
.cart-button.main_btn {
  background: var(--text-dark);
  color: #fff;
  margin-bottom: 10px;
}
.cart-button.main_btn:hover { opacity: 0.85; }
.cart-button.main_btn.checkout-disabled,
.product-btns .main_btn.checkout-disabled,
#productBuyNow.checkout-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.cart-button-plan {
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
}

/* ===== Hero Slider ===== */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-slider .swiper-slide img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
}
.hero-slider .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}
.hero-slider .swiper-pagination-bullet-active { opacity: 1; }
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  color: #fff;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
}
.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after { font-size: 16px; }

/* ===== Promo Popup ===== */
.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.promo-popup.show { visibility: visible; opacity: 1; }
.promo-popup-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.promo-popup-content {
  position: relative;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #c0392b 100%);
  padding: 40px 30px 30px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  color: #fff;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.promo-popup.show .promo-popup-content { transform: scale(1); }
.promo-popup-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
}
.promo-popup-close svg { width: 14px; height: 14px; }
.promo-title { font-size: 28px; font-weight: 700; margin-bottom: 24px; }
.promo-coupons { display: flex; gap: 16px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.promo-coupon {
  background: #fff;
  color: var(--text-dark);
  padding: 16px 20px;
  border: 2px dashed #ddd;
  min-width: 180px;
}
.promo-coupon .discount { font-size: 24px; font-weight: 700; color: var(--accent-red); }
.promo-coupon .condition { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.promo-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 40px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity var(--transition);
}
.promo-btn:hover { opacity: 0.85; }
.promo-note { font-size: 11px; margin-top: 16px; opacity: 0.8; }

/* ===== Section Titles ===== */
.block_coustom_title {
  text-align: center;
  padding: 40px 0 24px;
}
.block_coustom_title h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== Product Grid ===== */
.collection_product {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding-bottom: 40px;
}
.collection_item {
  text-align: center;
  transition: transform 0.3s;
}
.collection_item:hover { transform: translateY(-4px); }
.collection-product-item {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #f9f9f9;
  margin-bottom: 12px;
}
.collection-product-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
}
.collection_item:hover .collection-product-item img { transform: scale(1.05); }
.item-caption-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
  line-height: 1.4;
}
.item-caption-price { margin-bottom: 4px; }
.general-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-red);
}
.general-oldprice {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 6px;
}
.product_price {
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--discount-tag-color);
  background: var(--discount-tag-bg);
  margin-top: 8px;
  text-align: center;
  box-sizing: border-box;
}
.sold-out-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  background: rgba(220, 220, 220, 0.92);
  color: #333;
  padding: 8px 10px;
  font-size: 12px;
  text-transform: capitalize;
  text-align: center;
  z-index: 2;
}
.collection_item { position: relative; }
.product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 6px;
}
.product-rating svg { width: 14px; height: 14px; }
.product-rating .count { font-size: 12px; color: var(--text-muted); margin-left: 4px; }

/* ===== Category Banner ===== */
.category-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
}
.category-banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s;
}
.category-banner:hover img { transform: scale(1.03); }
.category-banner h2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 28px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ===== IGET Bar Image Banner ===== */
.block_image {
  position: relative;
  max-width: var(--container-max);
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}
.block_image-fill {
  width: 100%;
  max-width: 100%;
}
.block_image a {
  display: block;
  position: relative;
  width: 100%;
}
.block_image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.block_image .block-image-mobile {
  display: none;
}
.block_image .block_image-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.block_image .block_image-content {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  box-sizing: border-box;
  pointer-events: none;
}
.block_image-fill .block_image-content {
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%);
}
.block_image .content-position-center {
  align-items: center;
  text-align: center;
}
.block_image .content-align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.block_image .content-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.block_image .content-describe {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
}
.iget-bar-banner {
  margin-bottom: 8px;
}

/* ===== Flash Sale Section ===== */
.flash-sale-section {
  background: #fff;
  padding: 40px 0;
}
#iget.flash-sale-section {
  padding-top: 0;
}
.iget-bar-block {
  margin-bottom: 8px;
}
.iget-bar-block .block_coustom_title {
  padding-top: 0;
}
.iget-bar-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 32px;
}
.flash-sale-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 400px;
}
.flash-sale-left {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  color: #fff;
  text-align: center;
}
.flash-sale-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flash-sale-video-mask {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}
.flash-sale-video-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
}
.flash-sale-video-text h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.flash-sale-video-text p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 360px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.flash-sale-left .shop-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity var(--transition), background var(--transition);
}
.flash-sale-left .shop-btn:hover {
  opacity: 0.9;
  background: rgba(255,255,255,0.12);
}
.flash-sale-right { overflow: hidden; }
.flash-sale-right .swiper { height: 100%; }
.flash-sale-right img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Featured Product ===== */
.featured-product {
  padding: 60px 0;
}
.featured-product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.featured-gallery .swiper { border-radius: 4px; overflow: hidden; }
.featured-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.featured-info h2 { font-size: 22px; margin-bottom: 8px; }
.featured-info .subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.featured-info .price { margin-bottom: 20px; }
.featured-info .price .current { font-size: 24px; font-weight: 700; color: var(--accent-red); }
.featured-info .price .old { font-size: 16px; color: var(--text-muted); text-decoration: line-through; margin-left: 8px; }
.flavor-carousel { margin-bottom: 24px; }
.flavor-carousel .swiper-slide {
  width: 80px !important;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.flavor-carousel .swiper-slide-thumb-active { opacity: 1; }
.flavor-carousel img { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; border: 2px solid transparent; }
.flavor-carousel .swiper-slide-thumb-active img { border-color: var(--text-dark); }
.quantity-wrap { margin-bottom: 20px; }
.quantity-wrap label { display: block; font-size: 13px; margin-bottom: 8px; font-weight: 500; }
.step-warp {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
}
.step-warp-handle {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.step-warp-handle:hover { background: #f5f5f5; }
.step-warp-handle svg { width: 14px; height: 14px; }
.step-warp-value {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 8px 0;
  -moz-appearance: textfield;
}
.step-warp-value::-webkit-outer-spin-button,
.step-warp-value::-webkit-inner-spin-button { -webkit-appearance: none; }
.product-buttons { display: flex; flex-direction: column; gap: 10px; }
.btn-add-cart, .btn-buy-now {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: opacity var(--transition);
}
.btn-add-cart {
  background: var(--text-dark);
  color: #fff;
}
.btn-buy-now {
  background: var(--accent-red);
  color: #fff;
}
.btn-add-cart:hover, .btn-buy-now:hover { opacity: 0.85; }

/* ===== Trust Icons Carousel ===== */
.trust-section {
  background: var(--topbar-bg);
  padding: 50px 0 40px;
}
.trust-slider {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.trust-slider .swiper {
  overflow: hidden;
}
.trust-slider .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  box-sizing: border-box;
}
.trust-item svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  fill: var(--text-dark);
}
.trust-item p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 520px;
}
.trust-slider .swiper-pagination {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.trust-slider .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 0;
  opacity: 0.35;
  background: var(--text-dark);
  margin: 0 !important;
  transition: opacity 0.2s, transform 0.2s;
}
.trust-slider .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.15);
}

/* ===== Newsletter ===== */
.block_newsletter {
  position: relative;
  padding: 60px 0;
  background: var(--text-dark);
  color: #fff;
  text-align: center;
}
.news_title { font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.news_detail { font-size: 14px; opacity: 0.8; margin-bottom: 24px; }
.news_input_wrap {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}
.news_input_wrap input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: 14px;
}
.news_input_wrap .btn {
  background: var(--accent-red);
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.news_input_wrap .btn:hover { opacity: 0.85; }

/* ===== Reviews ===== */
.reviews-section { padding: 50px 0; overflow: hidden; }
.reviews-marquee {
  display: flex;
  gap: 20px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.reviews-marquee:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  flex-shrink: 0;
  width: 320px;
  background: #fff;
  border: 1px solid #eee;
  padding: 24px;
  border-radius: 4px;
}
.review-card .quote-icon { width: 24px; height: 24px; fill: #ddd; margin-bottom: 12px; }
.review-card .stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-card .stars svg { width: 16px; height: 16px; fill: var(--accent-orange); }
.review-card .text { font-size: 13px; line-height: 1.6; color: #555; margin-bottom: 16px; }
.review-card .author { font-size: 12px; color: var(--text-muted); }
.section-view-more {
  text-align: center;
  padding-bottom: 20px;
}
.view-more-btn {
  display: block;
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  transition: opacity var(--transition);
}
.view-more-btn:hover { opacity: 0.7; }

/* ===== Footer ===== */
.footer {
  background: var(--footer-bg);
  color: var(--footer-color);
  padding: 50px 0 30px;
}
.footer_menu_box {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 40px;
  margin-bottom: 40px;
}
.footer_logo img { height: 20px; filter: brightness(0) invert(1); }
.menu_title { font-weight: 600; margin-bottom: 16px; font-size: 14px; }
.footer_menu .list li { margin-bottom: 10px; }
.footer_menu .list a {
  font-size: 13px;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.footer_menu .list a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.7;
}
.currency-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.currency-selector svg { width: 10px; height: 10px; }

/* ===== Floating Elements ===== */
.recently-viewed-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--header-bg);
  color: #fff;
  writing-mode: vertical-rl;
  padding: 16px 8px;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition);
}
.recently-viewed-tab:hover { background: #444; }
.recently-viewed-tab svg { width: 16px; height: 16px; writing-mode: horizontal-tb; }
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
.trusted-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #eee;
  padding: 6px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  z-index: 300;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.trusted-badge svg { width: 16px; height: 16px; }

/* ===== Scroll Animations ===== */
.animation-init {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animation-init.animated {
  opacity: 1;
  transform: translateY(0);
}
.animation-move-bottom.animated { animation: moveBottom 0.8s ease forwards; }
@keyframes moveBottom {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Cart Success Toast ===== */
.cart-toast {
  position: fixed;
  top: 80px;
  right: 20px;
  background: #fff;
  border: 1px solid #eee;
  padding: 16px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(calc(100% + 40px));
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cart-toast.show { transform: translateX(0); }
.cart-toast svg { width: 24px; height: 24px; flex-shrink: 0; }

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .collection_product { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
  .collection_product { grid-template-columns: repeat(3, 1fr); }
  .iget-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-product-inner { grid-template-columns: 1fr; }
  .flash-sale-banner { grid-template-columns: 1fr; }
  .flash-sale-left { min-height: 300px; }
  .flash-sale-video-text h2 { font-size: 24px; }
  .flash-sale-video-text { padding: 24px; }
  .footer_menu_box { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .header-nav-left { display: none; }
  .mobile-menu-icon, .mobile-search-icon { display: flex; }
  .header-nav-container { padding: 0 15px; }
  .collection_product { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .iget-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .block_image .block-image-mobile { display: block; }
  .block_image .block-image-pc { display: none; }
  .block_image .content-title { font-size: 24px; }
  .block_image .block_image-content { padding: 0 15px; }
  .block_coustom_title h2 { font-size: 20px; }
  .news_input_wrap { flex-direction: column; }
  .news_input_wrap .btn { width: 100%; }
  .footer_menu_box { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .recently-viewed-tab { display: none; }
  .promo-coupons { flex-direction: column; align-items: center; }
  .category-banner h2 { font-size: 20px; }
}

/* ===== Collection Page ===== */
.collection-page .collection-main {
  padding: 24px 0 60px;
  min-height: 60vh;
}
.collection-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.collection-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}
.collection-breadcrumb a:hover { color: var(--text-dark); }
.collection-breadcrumb .sep { margin: 0 8px; }
.collection-page-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
.collection-toolbar-mobile { display: none; }
.collection-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  border-radius: 2px;
}
.collection-filter-btn .icon { width: 16px; height: 16px; }
.collection-toolbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.collection-count {
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
}
.collection-sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.collection-sort select {
  padding: 8px 32px 8px 12px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23333' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.collection-grid { padding-bottom: 32px; }
.collection-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px;
  color: var(--text-muted);
}
.collection-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0 32px;
}
.collection-pagination .page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
}
.collection-pagination .page-btn.is-active {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
}
.collection-pagination .page-ellipsis {
  padding: 0 4px;
  color: var(--text-muted);
}
.collection-back {
  text-align: center;
  padding-top: 16px;
}
.header-nav-item.is-active .navigation {
  opacity: 1;
  border-bottom: 2px solid var(--accent-yellow, #F3FF34);
  padding-bottom: 2px;
}
.filter-panel {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
}
.filter-panel.is-open {
  pointer-events: auto;
  visibility: visible;
}
.filter-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s;
}
.filter-panel.is-open .filter-mask { opacity: 1; }
.filter-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s;
}
.filter-panel.is-open .filter-drawer { transform: translateX(0); }
.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.filter-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.filter-close {
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px;
}
.filter-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.filter-group h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px;
}
.filter-option {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
}
.filter-option input { margin-right: 8px; }
.filter-footer {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid #eee;
}
.filter-clear {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
}
.filter-apply {
  flex: 1;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 767px) {
  .collection-toolbar:not(.collection-toolbar-mobile) { display: none; }
  .collection-toolbar-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .collection-toolbar-mobile .collection-sort {
    flex: 1;
    min-width: 160px;
  }
  .collection-toolbar-mobile .collection-sort select { width: 100%; }
  .collection-page-title { font-size: 22px; }
}

/* ===== Product Detail Page ===== */
.product-detail-page .product-detail-main {
  padding: 24px 0 48px;
  min-height: 60vh;
}
.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-top: 16px;
}
.product-detail-media,
.product-right-sticky {
  min-width: 0;
  max-width: 100%;
}
.product-right-sticky {
  position: sticky;
  top: 24px;
  align-self: start;
}
.product-detail-media {
  position: sticky;
  top: 24px;
  overflow: hidden;
}
.product-gallery-main {
  background: #fff;
  border: 1px solid #eee;
  margin-bottom: 12px;
  width: 100%;
  height: min(520px, 80vw);
  overflow: hidden;
}
.product-gallery-main.swiper {
  overflow: hidden;
}
.product-gallery-main .swiper-wrapper,
.product-gallery-main .swiper-slide {
  height: 100%;
}
.product-gallery-main .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}
.product-gallery-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-gallery-thumbs {
  width: 100%;
  overflow: hidden;
}
.product-gallery-thumbs .swiper-slide {
  width: 72px;
  height: 72px;
  border: 1px solid #ddd;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-sizing: border-box;
}
.product-gallery-thumbs .swiper-slide-thumb-active,
.product-gallery-thumbs .swiper-slide.is-active {
  opacity: 1;
  border-color: var(--text-dark);
}
.product-gallery-thumbs img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.control-product_detail-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 12px;
  color: var(--text-dark);
}
.product-detail-rating {
  justify-content: flex-start;
  margin-bottom: 16px;
}
.control-product_detail-price_box {
  margin-bottom: 20px;
}
.control-product_detail-price_box .product-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}
.product-price-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-red);
}
.product-price-market {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
}
.product-price-discount {
  font-size: 14px;
  color: var(--accent-red);
  font-weight: 600;
}
.product-sku-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}
#app_detailmarkettool-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#app_detailmarkettool-wrap li {
  display: flex;
  align-items: flex-start;
  gap: 0;
  font-size: 13px;
  line-height: 1.4;
}
.detailmarkettool-icon {
  font-style: normal;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.detailmarkettool-activities-condition,
.detailmarkettool-time,
.detailmarkettool-browse-num {
  font-weight: 600;
}
.moi-product-option {
  margin-top: 16px;
}
.moi-product-sku-label {
  margin-bottom: 8px;
}
.product-sku-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-sku-values-item {
  padding: 8px 14px;
  border: 1px solid #ddd;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}
.product-sku-values-item:hover {
  border-color: var(--text-dark);
}
.product-sku-values-item-active {
  border-color: var(--text-dark);
  background: #f5f5f5;
  font-weight: 600;
}
.product-calculator {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
}
.product-calculator-handle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}
.product-calculator-handle:hover { background: #f5f5f5; }
.product-calculator-value {
  width: 48px;
  height: 36px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 14px;
  -moz-appearance: textfield;
}
.product-calculator-value::-webkit-outer-spin-button,
.product-calculator-value::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.control-product_detail-quantity_box .cell-item + .cell-item {
  margin-top: 8px;
}
.app_producttransaction-wrap {
  margin-top: 24px;
  border: 1px solid #eee;
  padding: 16px;
}
.app_pt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.app_pt-title { font-weight: 600; font-size: 15px; }
.app_pt-info { display: flex; gap: 12px; font-size: 12px; color: #888; align-items: center; }
.app_pt-th,
.app_pt-tr {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr 1fr;
  gap: 8px;
  font-size: 12px;
  padding: 8px 0;
}
.app_pt-th { font-weight: 600; color: #888; border-bottom: 1px solid #eee; }
.app_pt-tr { border-bottom: 1px solid #f5f5f5; }
.app_pt-tr:last-child { border-bottom: none; }
.app_pt-flag { width: 16px; height: 12px; margin-right: 4px; vertical-align: middle; }
.plugin-product_detail-buy_bottom { margin-top: 20px; }
.app-trusttool-0 { margin-top: 20px; }
.app-trusttool-networksecurity { margin-bottom: 0; }
.safeguard-clause-list {
  padding: 12px 16px;
  background: #f9f9f9;
}
.safeguard-clause-list.trusttool-alert.dis_show {
  display: block;
}
.safeguard-clause-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.safeguard-left > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}
.trusttool.icon-anquan_4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-style: normal;
}
.trusttool.icon-anquan_4::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L4 5v6c0 5.25 3.4 10.15 8 11.35C16.6 21.15 20 16.25 20 11V5l-8-3zm-1 14.5l-3.5-3.5 1.4-1.4L11 13.7l5.1-5.1 1.4 1.4L11 16.5z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L4 5v6c0 5.25 3.4 10.15 8 11.35C16.6 21.15 20 16.25 20 11V5l-8-3zm-1 14.5l-3.5-3.5 1.4-1.4L11 13.7l5.1-5.1 1.4 1.4L11 16.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.disnone { display: none !important; }
.safeguard-clause-list-body {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 12px;
}
.safeguard-clause-list-body > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.safeguard-bage { font-weight: 700; font-size: 13px; }
.safeguard-title { color: #666; font-size: 11px; }
.app-trusttool-badge { margin-top: 8px; }
.badge-flex.dis_flex { display: flex; }
.badge-title {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin: 0 0 10px;
}
.badge-title span { background: #fff; padding: 0 8px; }
.badge-list-reep {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.badge-list {
  padding: 6px 10px;
  border: 1px solid #eee;
  background: #fff;
}
.badge-list.large img { height: 28px; width: auto; display: block; }
.product-detail-soldout {
  color: var(--accent-red);
  font-weight: 600;
  margin: 0 0 16px;
}
.product-detail-soldout.hidden { display: none; }
.control-product_detail-quantity_box {
  margin-bottom: 24px;
}
.control-product_detail-quantity_box .cell-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.control-product_detail-quantity_box .qty-label {
  font-size: 14px;
  font-weight: 500;
}
.control-product_detail-quantity_box.hidden { display: none; }
.product-btns.product-cart-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 420px;
}
.product-btns .secondary_btn,
.product-btns .main_btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: opacity var(--transition);
}
.product-btns .secondary_btn {
  background: var(--text-dark);
  color: #fff;
}
.product-btns .main_btn {
  background: var(--main-button-bg, #405DE6);
  color: #fff;
}
.product-btns .divider {
  height: 10px;
}
.product-btns button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.product-btns .secondary_btn:hover,
.product-btns .main_btn:hover { opacity: 0.85; }

.moi-tabs {
  margin-top: 40px;
  list-style: none;
  padding: 0;
  border-top: 1px solid #ddd;
  position: relative;
}
.moi-tabs-item {
  list-style: none;
}
.moi-tabs-style-tab {
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
  padding-bottom: 0;
}
.moi-tabs-style-tab .moi-tabs-title {
  padding: 12px 0;
  font-size: 16px;
  color: #999;
  cursor: pointer;
  font-weight: 500;
  border-bottom: 4px solid transparent;
  margin-bottom: -1px;
}
.moi-tabs-style-tab .moi-tabs-active .moi-tabs-title {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
  font-weight: 600;
}
.moi-tabs-style-tab .moi-tabs-content {
  display: none;
}
.moi-tabs-style-tab .moi-tabs-item {
  width: auto;
}
.product-tabs-panels {
  width: 100%;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.product-tabs-panels .moi-tabs-panel {
  display: none;
}
.product-tabs-panels .moi-tabs-panel.is-active {
  display: block;
}
.mo-editor-reset p {
  margin: 0 0 1em;
}
.product-reviews-empty {
  color: var(--text-muted);
  margin: 0 0 12px;
}
.product-reviews-see-all {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: underline;
}
.product-detail-media .share-warp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.share-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}
.share-item .icon {
  fill: currentColor;
}
.product-detail-back-wrap {
  margin-top: 32px;
  text-align: center;
}
.product-detail-back {
  display: inline-block;
  padding: 12px 48px;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: opacity var(--transition);
}
.product-detail-back:hover { opacity: 0.7; }
.product-detail-main.is-error .product-detail-layout {
  display: block;
  text-align: center;
  padding: 48px 0;
}

@media (max-width: 767px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-detail-media { position: static; }
  .control-product_detail-title { font-size: 20px; }
  .moi-tabs {
    flex-direction: column;
    gap: 0;
    border-top: none;
  }
  .moi-tabs-item {
    width: 100%;
    border-top: 1px solid #ddd;
  }
  .moi-tabs-style-tab .moi-tabs-title {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: none;
    font-size: 18px;
  }
  .moi-tabs-style-tab .moi-tabs-active .moi-tabs-title {
    border-bottom: none;
  }
  .product-btns.product-cart-group { max-width: none; }
}
