.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--c-line);
    margin-bottom: 26px;
}
.shop-toolbar__crumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 13px;
}
.shop-toolbar__crumb a { color: var(--c-muted); text-transform: uppercase; letter-spacing: .3px; font-weight: 600; }
.shop-toolbar__crumb a:hover { color: var(--c-red); }
.shop-toolbar__crumb .sep { margin: 0 8px; color: var(--c-gold); font-size: 11px; }
.shop-toolbar__crumb .current { color: var(--c-ink); font-weight: 800; text-transform: uppercase; letter-spacing: .3px; }
.shop-toolbar__count { color: var(--c-muted); font-size: 13px; margin-left: 14px; font-weight: 400; text-transform: none; }

.shop-toolbar__sort { display: flex; align-items: center; flex-shrink: 0; }
.shop-toolbar__sort select {
    border: 1px solid var(--c-line);
    border-radius: 4px;
    padding: 9px 34px 9px 14px;
    font-size: 13px;
    color: var(--c-body);
    background: var(--c-white) url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238a7d68' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right 14px center;
    appearance: none;
    cursor: pointer;
}
.shop-toolbar__sort select:focus { outline: none; border-color: var(--c-maroon); }
.shop-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 60px;
}
.shop-main { flex: 1; min-width: 0; }
.shop-sidebar { width: 270px; flex-shrink: 0; }

.shop-widget { margin-bottom: 28px; }
.shop-widget__title {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--c-ink);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--c-gold-pale);
}

.price-filter__track {
    position: relative;
    height: 4px;
    background: var(--c-line);
    border-radius: 3px;
    margin: 10px 4px 18px;
}
.price-filter__range {
    position: absolute;
    height: 4px;
    background: var(--c-red);
    border-radius: 3px;
    left: 0%;
    right: 35%;
}
.price-filter__handle {
    position: absolute;
    top: 50%;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--c-white);
    border: 3px solid var(--c-red);
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.price-filter__handle--min { left: 0%; }
.price-filter__handle--max { left: 65%; }
.price-filter__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price-filter__value { font-size: 13px; color: var(--c-body); }
.price-filter__value strong { color: var(--c-ink); }
.price-filter button.btn { padding: 9px 26px; font-size: 12px; }

.shop-cat-list > li { border-bottom: 1px solid var(--c-line); }
.shop-cat-list > li:last-child { border-bottom: 0; }
.shop-cat-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 2px;
    font-size: 14px;
    color: var(--c-body);
}
.shop-cat-list > li > a:hover { color: var(--c-red); }
.shop-cat-list > li.is-active > a { color: var(--c-red); font-weight: 700; }
.shop-cat-list > li.has-children > a .toggle-arrow {
    font-size: 11px;
    color: var(--c-muted);
    transition: transform var(--t-fast) var(--ease);
}
.shop-cat-list > li.has-children.is-open > a .toggle-arrow { transform: rotate(180deg); }
.shop-cat-list .sub-cat-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-mid) var(--ease);
}
.shop-cat-list > li.has-children.is-open .sub-cat-list { max-height: 900px; }
.shop-cat-list .sub-cat-list li a {
    display: block;
    padding: 8px 2px 8px 16px;
    font-size: 13.3px;
    color: var(--c-muted);
    position: relative;
}
.shop-cat-list .sub-cat-list li a::before { content: ''; position: absolute; left: 0; top: 16px; width: 6px; height: 1px; background: var(--c-muted); }
.shop-cat-list .sub-cat-list li a:hover { color: var(--c-red); }
.shop-cat-list .sub-cat-list li.is-current > a { color: var(--c-red); font-weight: 700; }

.mini-product-list > li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--c-line);
}
.mini-product-list > li:last-child { border-bottom: 0; }
.mini-product-list__thumb {
    width: 64px; height: 64px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--c-cream);
}
.mini-product-list__thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-product-list__body { min-width: 0; }
.mini-product-list__name {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: var(--c-ink);
    font-weight: 500;
    margin-bottom: 5px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mini-product-list__name:hover { color: var(--c-red); }
.mini-product-list__price { font-size: 13px; font-weight: 700; color: var(--c-red); }
.mini-product-list__price .price-old { font-weight: 400; color: var(--c-muted); text-decoration: line-through; margin-right: 6px; font-size: 12px; }

/* Product card status text variant (LiÃªn há»‡ / Äá»c tiáº¿p) dÃ¹ng trong shop grid */
.product-card__price .price-contact { font-size: 14.5px; font-weight: 700; color: var(--c-red); }
.product-card__cta--outline { border-color: var(--c-line); color: var(--c-body); }
.product-card__cta--outline:hover { background: var(--c-ink); border-color: var(--c-ink); color: var(--c-white); }

@media (max-width: 991px) {
    .shop-layout { flex-direction: column; }
    .shop-sidebar { width: 100%; order: 2; }
    .shop-main { order: 1; }
    .shop-toolbar { flex-direction: column; align-items: flex-start; }
}



.product-detail-box .price {
  display: flex;
  margin-bottom: 10px;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.product-detail-box .price span.label_title {
  font-size: 14px;
  line-height: 18px;
}

.product-detail-box .price .span_bigsale {
  color: #e02e2e;
  font-size: 14px;
}

.product-detail-box .nd-qua-tang {
  width: auto !important;
  display: block;
  font-size: 13px;
  padding: 5px 10px;
}

.product-detail-box .price del {
  color: #333 !important;
}

.product-detail-box .price del span {
  font-size: 15px;
  color: #333 !important;
}

.product-detail-box .price ins {
  color: transparent;
  font-size: 15px;
  order: 2;
}

.product-detail-box .price ins span,
.product-detail-box .price>span.woocommerce-Price-amount {
  font-size: 22px;
  font-weight: 700;
  color: red;
}

.product-detail-box .reset_variations {
  display: none !important;
}

.product-detail-box table.variations {
  width: 100% !important;
  margin-bottom: 20px;
}

.product-detail-box .woocommerce-variation-price {
  margin: 10px 0;
}


/* ===================================================================
   PRODUCT DETAIL PAGE
   =================================================================== */
.pdp {
    display: flex;
    gap: 44px;
    padding: 30px 0 10px;
    align-items: flex-start;
}
.pdp__gallery { width: 46%; flex-shrink: 0; }

.pdp__main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #000;
    margin-bottom: 14px;
}
.pdp__main-image .swiper-slide { width: 100%; height: 100%; }
.pdp__main-image img { width: 100%; height: 100%; object-fit: cover; }
.pdp__badge {
    position: absolute; top: 14px; left: 14px; z-index: 3;
    background: var(--c-red);
    color: var(--c-white);
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
}
.pdp__zoom-btn {
    position: absolute; bottom: 14px; left: 14px; z-index: 3;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    color: var(--c-white);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.pdp__main-nav {
    position: absolute; top: 50%; z-index: 4;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    color: var(--c-ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    transform: translateY(-50%);
    transition: all var(--t-fast) var(--ease);
}
.pdp__main-nav:hover { background: var(--c-red); color: var(--c-white); }
.pdp__main-nav--prev { left: 12px; }
.pdp__main-nav--next { right: 12px; }

/* Dáº£i thumbnail náº±m ngang, bÃªn dÆ°á»›i áº£nh chÃ­nh */
.pdp__thumbs {
    width: 100%;
    padding: 2px;
}
.pdp__thumb {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--c-line);
    cursor: pointer;
    transition: border-color var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
    background: #000;
    opacity: .7;
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumb:hover { opacity: 1; }
.pdp__thumb.swiper-slide-thumb-active { border-color: var(--c-red); opacity: 1; }

.pdp__info { flex: 1; min-width: 0; padding-top: 4px; }
.pdp__breadcrumb { font-size: 12.5px; margin-bottom: 14px; }
.pdp__breadcrumb a { color: var(--c-muted); text-transform: uppercase; font-weight: 600; letter-spacing: .3px; }
.pdp__breadcrumb a:hover { color: var(--c-red); }
.pdp__breadcrumb .sep { margin: 0 6px; color: var(--c-gold); }
.pdp__title { font-size: 26px; font-weight: 800; line-height: 1.32; margin-bottom: 16px; }
.pdp__price { font-size: 15px; color: var(--c-body); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--c-line); }
.pdp__price .price-now { font-size: 26px; font-weight: 800; color: var(--c-red); margin-left: 6px; }
.pdp__price .price-old { font-size: 16px; color: var(--c-muted); text-decoration: line-through; margin-left: 10px; }

.pdp__variant { margin-bottom: 20px; }
.pdp__variant label { display: block; font-size: 13.5px; font-weight: 700; color: var(--c-ink); margin-bottom: 8px; }
.pdp__variant select {
    width: 100%;
    max-width: 320px;
    border: 1px solid var(--c-line);
    border-radius: 4px;
    padding: 11px 34px 11px 14px;
    font-size: 14px;
    color: var(--c-body);
    background: var(--c-white) url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238a7d68' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right 14px center;
    appearance: none;
    cursor: pointer;
}

.pdp__actions { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--c-line);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}
.qty-stepper button {
    width: 38px; height: 46px;
    font-size: 16px;
    color: var(--c-body);
    background: var(--c-cream);
}
.qty-stepper button:hover { background: var(--c-cream-2); color: var(--c-red); }
.qty-stepper input {
    width: 46px; height: 46px;
    border: 0;
    border-left: 1px solid var(--c-line);
    border-right: 1px solid var(--c-line);
    text-align: center;
    font-size: 14px;
    color: var(--c-ink);
}
.pdp__add-cart { flex: 1; height: 46px; }

.pdp__wishlist {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--c-body);
    margin-bottom: 22px;
}
.pdp__wishlist i { color: var(--c-red); }
.pdp__wishlist:hover { color: var(--c-red); }

.pdp__meta { font-size: 13px; color: var(--c-muted); line-height: 1.9; margin-bottom: 18px; }
.pdp__meta strong { color: var(--c-body); font-weight: 600; }
.pdp__meta a { color: var(--c-body); }
.pdp__meta a:hover { color: var(--c-red); }

.pdp__share { display: flex; align-items: center; gap: 10px; }
.pdp__share span { font-size: 13px; color: var(--c-muted); margin-right: 4px; }
.pdp__share a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--c-cream-2);
    color: var(--c-ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
}
.pdp__share a:hover { background: var(--c-red); color: var(--c-white); }

.pdp-tabs {margin-top: 20px;margin-bottom: 20px;}
.pdp-tabs__nav {display: flex;gap: 6px;border-bottom: 2px solid var(--c-line);margin-bottom: 10px;flex-wrap: wrap;}
.pdp-tabs__btn {
    padding: 13px 22px;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--c-muted);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
    outline: none !important;
}
.pdp-tabs__btn:hover { color: var(--c-red); }
.pdp-tabs__btn.is-active { color: var(--c-red); border-color: var(--c-red); }
.pdp-tabs__panel { display: none; }
.pdp-tabs__panel.is-active { display: block; }

.pdp-description h2,
.pdp-description h3 { font-size: 22px; font-weight: 800; margin-bottom: 18px; }
.pdp-description p { color: var(--c-body); line-height: 1.85; margin-bottom: 18px; }
.pdp-description img { border-radius: var(--radius-sm); margin: 10px 0;}
.pdp-description ul { margin: 18px 0; padding-left: 4px; }
.pdp-description ul li { position: relative; padding-left: 22px; margin-bottom: 10px; color: var(--c-body); line-height: 1.7; }
.pdp-description ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--c-gold); }
.pdp-description ul li strong { color: var(--c-ink); }
.pdp-description h4 { font-size: 18px; font-weight: 800; margin: 28px 0 14px; color: var(--c-maroon); }

.pdp-addinfo table { width: 100%; border-collapse: collapse; }
.pdp-addinfo table tr { border-bottom: 1px solid var(--c-line); }
.pdp-addinfo table th, .pdp-addinfo table td { text-align: left; padding: 5px 10px; font-size: 14px; }
.pdp-addinfo table th { color: var(--c-ink); font-weight: 700;}
.pdp-addinfo table td { color: var(--c-body); }
.pdp-addinfo table td p{margin-bottom:0;}

.pdp-reviews__empty { color: var(--c-muted); font-size: 14.5px; padding: 20px 0; }

/* Sáº£n pháº©m tÆ°Æ¡ng tá»± */
.pdp-related { margin-top: 56px; padding-top: 6px; }
.pdp-related .section-head { text-align: left; margin-bottom: 24px; }
.pdp-related .section-head h2 { font-size: 22px; }
.pdp-related .section-head__divider { margin-left: 0; }



.product-detail-box .product_title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  line-height: 26px;
}

.product-detail-box {
  display: flex;
  flex-direction: column;
}

.product-detail-box .woocommerce-product-details__short-description {
  order: 3;
}

.product-detail-box .product_meta {
  order: 2;
  margin-bottom: 15px;
  display: none;
}

.woocommerce-product-rating,
.stock {
  display: none !important;
}

.product-detail-box .nd-qua-tang {
  display: none !important;
}

.product-detail-box .cart {
  order: 4;
}

.product-detail-box .prod-hotline {
  order: 6;
}

.product-detail-box .pd_saler {
  order: 7;
}

.product-detail-box .product_search {
  order: 8;
}

.product-detail-box .out-of-stock {
  order: 3;
  color: var(--main-color);
  margin-bottom: 10px;
}

.product-detail-box .product_meta_row {
  display: flex;
  justify-content: space-between;
  gap: 0px;
  margin-bottom: 0;
  margin-top: 0;
  flex-direction: column;
}

.product-detail-box .product_meta_row:last-child {
  margin-top: 5px;
}

.product-detail-box .product_meta_col {
  width: 100% !important;
  font-size: 15px;
}

.product-detail-box .yith-wcbr-brands {
  margin: 0 !important;
}

.product-detail-box .product_meta_col a {
  color: var(--second-color);
}

.product-detail .box-price .sales {
  display: none !important;
}

.product_meta_item strong {
  font-weight: 700;
}

.product_meta_item {
  font-size: 15px;
  margin-bottom: 5px;
}

.woocommerce-product-details__short-description {
  display: none;
}

.product-detail-box .sku {
  font-size: 14px;
  font-style: normal;
  display: inline-block;
  color: #333333;
  vertical-align: middle;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
    .pdp { flex-direction: column; gap: 30px; }
    .pdp__gallery { width: 100%; }
}
@media (max-width: 575px) {
    .pdp__thumb { width: 70px; height: 70px; }
    .pdp__title { font-size: 21px; }
    .pdp__price .price-now { font-size: 22px; }
}
