/*
Theme Name: unistore
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.1
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* Các màu sắc này sẽ được Flatsome Customizer quản lý, 
nhưng chúng ta giữ lại biến CSS để dùng cho các element tùy chỉnh nâng cao */
:root {
  --unice-primary: #7b1358;
  --unice-secondary: #ff4ecf;
  --unice-dark: #0a0808;
}

.h2, h2 {
    font-size: 36px;
}
h3, .h3{
  font-size: 28px;
}
form{
	margin-bottom:0;
}
/* Tùy chỉnh Header Top Bar theo UNice */
.header-top {
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Tùy chỉnh Logo */
.header-main .logo img {
  max-height: 60px !important;
}

/* Tùy chỉnh Navigation */
.header-main .nav > li > a {
  letter-spacing: 0.03em;
}

/* Badge giảm giá phong cách UNice */
.badge-inner.on-sale {
  background-color: transparent !important;
  font-weight: 700;
  border-radius: 4px;
}

/* Mobile Add to Cart Sticky (Gợi ý cho giai đoạn sau) */
@media only screen and (max-width: 48em) {
  .unice-sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
}

/* Marquee effect for USP Bar */
.unice-marquee {
  background-color: #f7f7f7;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-bottom: 1px solid #eee;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  margin-right: 50px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #111;
}

.marquee-item i {
  margin-right: 8px;
  color: var(--unice-primary);
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

/* Sections Spacing */
.home-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-title {
  margin-bottom: 30px;
  text-align: center;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title .divider {
  height: 3px;
  width: 60px;
  background-color: var(--unice-primary);
  margin: 0 auto;
}
.nav > li > a {
  font-size: 14px;
}

.categories-home .box-text-inner{
	font-size: 24px;
}
.top-swiper {
  font-size: 13px;
  line-height: 20px;
}
.top-swiper p {
  margin-bottom: 0;
}
/* Responsive adjustments */
@media only screen and (max-width: 48em) {
  .home-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-title h2 {
    font-size: 22px;
  }
}

/* ==========================================================================
   Unistore Custom Carousel (ux_carousel)
   ========================================================================== */
.unistore-carousel {
  position: relative;
}

.unistore-carousel.has-stage-padding,
.unistore-carousel.slider-nav-outside {
  overflow: visible !important;
}

.unistore-carousel.has-stage-padding > .flickity-viewport,
.unistore-carousel.slider-nav-outside > .flickity-viewport {
  overflow: visible !important;
  /* Allow shadow and nav to bleed out to the sides */
  clip-path: inset(-50px -100vw -50px -100vw);
}

body .unistore-carousel .flickity-slider > * {
  width: calc(100% / var(--col-lg)) !important;
  padding: 0 calc(var(--gap) / 2);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  backface-visibility: hidden;
}

/*
 * Stage padding: each cell is slightly narrower than 100%/N so the viewport
 * shows N full slides plus a peek of slide (N+1). --unistore-stage-peek is a
 * unitless fraction (e.g. 0.22 ≈ 22% of one cell width as visible “hint”).
 */
body .unistore-carousel.has-stage-padding .flickity-slider > * {
  width: calc(100% / (var(--col-lg) + var(--unistore-stage-peek, 0.22))) !important;
}

/* Responsive columns (match body … specificity so breakpoints override base) */
@media (max-width: 849px) {
  body .unistore-carousel .flickity-slider > * {
    width: calc(100% / var(--col-md)) !important;
  }

  body .unistore-carousel.has-stage-padding .flickity-slider > * {
    width: calc(100% / (var(--col-md) + var(--unistore-stage-peek, 0.22))) !important;
  }
}

@media (max-width: 549px) {
  body .unistore-carousel .flickity-slider > * {
    width: calc(100% / var(--col-sm)) !important;
  }

  body .unistore-carousel.has-stage-padding .flickity-slider > * {
    width: calc(100% / (var(--col-sm) + var(--unistore-stage-peek, 0.22))) !important;
  }
}

/* Center Mode Effects */
.is-center-mode .flickity-slider > * {
  opacity: 0.5;
  transform: scale(0.9);
}

.is-center-mode .flickity-slider > *.is-selected {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}

/* Fix for Flatsome UX Builder Preview */
.ux-builder .unistore-carousel .flickity-slider > * {
  display: inline-block;
  vertical-align: top;
}


/* === PRODUCT BOX CUSTOM STYLES === */

/* Product title max lines */
.product-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.product-tags + .product-title,
.product-tags ~ .title-wrapper .product-title {
  -webkit-line-clamp: 1;
}

/* Product tags style */
.product-tags {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}
.product-tags a {
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 12px;
  margin-right: 5px;
  display: inline-block;
  text-decoration: none;
  color: #666;
}
.product-tags a:hover {
  background: #FF5CE5;
  color: white;
}

/* Add to cart button right alignment */
.add-to-cart-wrapper {
  text-align: right;
  margin-top: 10px;
}
.add-to-cart-wrapper .add_to_cart_button,
.add-to-cart-wrapper .button {
  float: none;
  display: inline-flex;
}
/* === PRODUCT BOX CUSTOM STYLES === */
.product-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.product-tags + .product-title,
.product-tags ~ .title-wrapper .product-title {
  -webkit-line-clamp: 1;
}
.product-tags {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}
.product-tags a {
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 12px;
  margin-right: 5px;
  display: inline-block;
  text-decoration: none;
  color: #666;
  font-size: 11px;
}
.product-tags a:hover {
  background: #FF5CE5;
  color: white;
}
.add-to-cart-wrapper {
  text-align: right;
  margin-top: 10px;
}
.add-to-cart-wrapper .add_to_cart_button {
  float: none;
  display: inline-flex;
}
/* ============================================
   SECTION #5: TRENDING NOW - CSS OVERRIDES
   Target: 95% match with Unice.com
   ============================================ */

/* ----------------------------------------
   1. PRODUCT CARD CONTAINER
   ---------------------------------------- */
.product-small.box {
  border: 0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* ----------------------------------------
   2. PRODUCT IMAGE
   ---------------------------------------- */
.product-small .box-image {
  aspect-ratio: 3/4 !important;
  border-radius: 8px 8px 0 0 !important;
  overflow: hidden !important;
}

.product-small .box-image img {
  object-fit: cover !important;
  height: 100% !important;
  width: 100% !important;
  transition: transform 0.5s ease !important;
}

.product-small:hover .box-image img {
  transform: scale(1.05) !important;
}

/* ----------------------------------------
   3. CARD BOTTOM / INFO SECTION
   ---------------------------------------- */
.product-small .box-text {
  border: 1px solid #fbefe5 !important;
  border-top: 0 !important;
  border-radius: 0 0 8px 8px !important;
  margin-top: -6px !important;
  padding: 22px 12px 16px !important;
  position: relative !important;
  z-index: 2 !important;
}

.product-small .box-text-content {
  display: flex !important;
  flex-direction: column !important;
}

/* ----------------------------------------
   4. PRODUCT TAGS
   ---------------------------------------- */
.product-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin-bottom: 8px !important;
	min-height: 55px;
}

.product-tags a {
  background: #fff7f1 !important;
  border: 0.5px solid #f5c8a2 !important;
  border-radius: 4px !important;
  color: #412316 !important;
  height: 22px !important;
  padding: 0 6px !important;
  font-size: 13px !important;
  line-height: 22px !important;
  text-decoration: none !important;
  display: inline-block !important;
}

.product-tags a:hover {
  background: #ff5ce5 !important;
  border-color: #ff5ce5 !important;
  color: white !important;
}

/* ----------------------------------------
   5. PRODUCT TITLE
   ---------------------------------------- */
.product-small .product-title {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #0b0b13 !important;
  line-height: 1.4 !important;
  margin: 0!important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

body .product-small .product-title a {
  color: #0b0b13 !important;
  text-decoration: none !important;
line-height: 22px;
-webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: wrap;
}

.product-small .product-title a:hover {
  color: #ff5ce5 !important;
}

/* Title clamp - 1 line if has tags */
.product-tags + .box-text-content .product-title,
.product-tags ~ .product-title {
  -webkit-line-clamp: 1 !important;
}
body .product-small .line1 .product-title a {
    white-space: nowrap;
}
/* ----------------------------------------
   6. PRODUCT PRICE
   ---------------------------------------- */
.product-small .price-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.product-small .price {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 14px !important;
}

/* Regular price */
.product-small .price .amount {
  color: #0b0b13 !important;
  font-weight: 400 !important;
}

/* Sale price */
.product-small .price ins .amount {
  color: #ff5ce5 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

/* Old price (crossed) */
.product-small .price del {
  opacity: 0.6 !important;
}

.product-small .price del .amount {
  color: #0b0b13 !important;
  text-decoration: line-through !important;
  font-weight: 400 !important;
}

a.quick-view svg {
    width: 30px;
    height: 30px;
}
.cart-btn-wrapper a.quick-view{
	background: #ffe5fb;
    border-radius: 16px;
    box-sizing: border-box;
    height: 40px;
    margin-left: auto;
    padding: 5px;
    width: 40px;
}
/* ----------------------------------------
   7. DISCOUNT BADGE
   ---------------------------------------- */
.product-small .onsale{
  background: #ff5ce5 !important;
  color: white !important;
  border-radius: 8px !important;
  position: absolute !important;
  top: 6px !important;
  left: 6px !important;
  padding: 0 6px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 24px !important;
  min-height: 24px !important;
  z-index: 10 !important;
}

/* ----------------------------------------
   8. QUICK VIEW BUTTON
   ---------------------------------------- */
.quick-view-wrapper {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  z-index: 10 !important;
}

.product-small:hover .quick-view-wrapper {
  opacity: 1 !important;
}

.quick-view-wrapper .quick-view {
  background: white !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.quick-view-wrapper .quick-view:hover {
  background: #ff5ce5 !important;
  border-color: #ff5ce5 !important;
  color: white !important;
}

.quick-view-wrapper .quick-view i {
  font-size: 18px !important;
}

/* ----------------------------------------
   9. GRID LAYOUT
   ---------------------------------------- */
.products .row {
  justify-content: flex-start !important;
}

.products .product-small {
  margin-bottom: 32px !important;
}

/* 4 columns layout */
.products .col {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

/* Gap adjustment */
.products .row > .col:nth-child(4n) {
  margin-right: 0 !important;
}

/* ----------------------------------------
   10. SECTION TITLE
   ---------------------------------------- */
.section-title {
  text-align: center !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #0b0b13 !important;
  margin-bottom: 40px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.section-title span {
  color: #0b0b13 !important;
}

/* ----------------------------------------
   11. NAVIGATION ARROWS (SLIDER)
   ---------------------------------------- */
.flickity-prev-next-button {
  color: #412316 !important;
  font-size: 36px !important;
  width: 40px !important;
  height: 40px !important;
  background: transparent !important;
  border: none !important;
}

.flickity-prev-next-button:hover {
  color: #ff5ce5 !important;
  background: transparent !important;
}

.flickity-prev-next-button.previous {
  left: -60px !important;
}

.flickity-prev-next-button.next {
  right: -60px !important;
}

.flickity-prev-next-button .flickity-button-icon {
  fill: #412316 !important;
}

.flickity-prev-next-button:hover .flickity-button-icon {
  fill: #ff5ce5 !important;
}

/* ----------------------------------------
   12. PAGINATION DOTS
   ---------------------------------------- */
.flickity-page-dots .dot {
  background: #261e17 !important;
  opacity: 0.2 !important;
  width: 4px !important;
  height: 4px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1 !important;
  width: 30px !important;
  border-radius: 4px !important;
  background: #412316 !important;
}

/* ----------------------------------------
   13. RESPONSIVE ADJUSTMENTS
   ---------------------------------------- */
@media (max-width: 991px) {
  .products .col {
    width: 33.33% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

@media (max-width: 767px) {
  .products .col {
    width: 50% !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  
  .product-small .box-text {
    padding: 18px 10px 14px !important;
  }
  
  .product-small .product-title {
    font-size: 14px !important;
  }
  
  .section-title {
    font-size: 22px !important;
  }
}

@media (max-width: 480px) {
  .products .col {
    width: 50% !important;
  }
}

/* === CART BUTTON BOTTOM RIGHT === */

.cart-icon-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: white !important;
  border: 1px solid #e0e0e0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  min-height: 36px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
  transition: all 0.3s ease !important;
}

.cart-icon-btn:hover {
  background: #ff5ce5 !important;
  border-color: #ff5ce5 !important;
  color: white !important;
  transform: scale(1.1) !important;
}

.cart-icon-btn i {
  font-size: 16px !important;
  margin: 0 !important;
}

/* Box text position relative để absolute positioning work */
.product-small .box-text {
  position: relative !important;
	padding-bottom: 10px !important;
}

/* Price wrapper margin để không bị che */
.price-wrapper {
  margin-bottom: 8px !important;
}

/* ============================================
   QUICK VIEW BUTTON & PRICE - FINAL POLISH
   ============================================ */

/* Quick View Button - Bottom Right */
.quick-view-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: white !important;
  border: 1px solid #e0e0e0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  padding: 0 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
  transition: all 0.3s ease !important;
}

.quick-view-btn:hover {
  background: #ff5ce5 !important;
  border-color: #ff5ce5 !important;
  transform: scale(1.1) !important;
}

.quick-view-btn svg {
  width: 18px !important;
  height: 18px !important;
  color: #0b0b13 !important;
  transition: color 0.3s ease !important;
}

.quick-view-btn:hover svg {
  color: white !important;
}

/* Price styling - Unice style */
.product-small .price-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-direction: column;
}

.product-small .price {
  font-size: 18px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.product-small .price .amount {
  color: #0b0b13 !important;
  font-weight: 400 !important;
}

.product-small .price ins .amount {
color: #0b0b13 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.product-small .price del .amount {
  color: #acacac !important;
  text-decoration: line-through !important;
	opacity: 1 !important;
}
/* ========================================
   GOKU - SECTIONS #6-#9 CSS
   ======================================== */

/* ========================================
   SECTION #6: FLASH SALE
   ======================================== */

/* Flash Sale Section */
.flash-sale-section {
  background: #0B0B13 !important;
  padding: 60px 0 !important;
}

.flash-sale-section .section-title {
  color: white !important;
  font-size: 28px !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

/* Countdown Timer */
.ux-countdown {
  display: flex !important;
  justify-content: center !important;
  gap: 20px !important;
  margin: 30px 0 !important;
}

.countdown-item {
  text-align: center !important;
  color: #FF5CE5 !important;
}

.countdown-item span {
  font-size: 48px !important;
  font-weight: bold !important;
  display: block !important;
}

.countdown-item label {
  font-size: 14px !important;
  text-transform: uppercase !important;
  color: white !important;
}

/* View More Button */
.flash-sale-section .button {
  border-color: white !important;
  color: white !important;
}

.flash-sale-section .button:hover {
  background: #FF5CE5 !important;
  border-color: #FF5CE5 !important;
}

/* ========================================
   SECTION #7: RECOMMENDED FOR YOU
   ======================================== */

/* Recommended Section */
.recommended-section {
  background: #FFFDF7 !important;
  padding: 60px 0 !important;
}

.recommended-section .section-title {
  font-size: 28px !important;
  text-transform: uppercase !important;
  position: relative !important;
  display: inline-block !important;
}

/* Title decoration lines */
.recommended-section .section-title::before,
.recommended-section .section-title::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  width: 60px !important;
  height: 1px !important;
  background: #412316 !important;
}

.recommended-section .section-title::before {
  left: -80px !important;
}

.recommended-section .section-title::after {
  right: -80px !important;
}

/* 4 column grid */
.recommended-section .products .col {
  width: 25% !important;
}

@media (max-width: 991px) {
  .recommended-section .products .col {
    width: 33.33% !important;
  }
}

@media (max-width: 767px) {
  .recommended-section .products .col {
    width: 50% !important;
  }
}

/* ========================================
   SECTION #8: SHOP THE LOOK
   ======================================== */

/* Shop The Look Section */
.shop-the-look-section {
  background: white !important;
  padding: 60px 0 !important;
}

/* Video carousel */
.shop-the-look-section .ux-slider {
  overflow: visible !important;
}

.shop-the-look-section .ux-banner {
  position: relative !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}

/* Play button */
.shop-the-look-section .video-play-btn {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.9) !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.shop-the-look-section .video-play-btn:hover {
  background: #FF5CE5 !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
}

.shop-the-look-section .video-play-btn i {
  font-size: 20px !important;
  color: #0B0B13 !important;
}

.shop-the-look-section .video-play-btn:hover i {
  color: white !important;
}

/* ========================================
   SECTION #9: BACKED BY MEDIA
   ======================================== */

/* Backed By Media Section */
.backed-by-media-section {
  background: #FFFDF7 !important;
  padding: 60px 0 !important;
}

/* Logo grid */
.backed-by-media-section .row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 40px !important;
}

.backed-by-media-section .col {
  flex: 0 0 auto !important;
  width: auto !important;
  padding: 20px !important;
}

/* Logo images */
.backed-by-media-section img {
  max-width: 150px !important;
  max-height: 60px !important;
  object-fit: contain !important;
  /* Grayscale filter */
  filter: grayscale(100%) !important;
  opacity: 0.6 !important;
  transition: all 0.3s ease !important;
}

.backed-by-media-section img:hover {
  filter: grayscale(0%) !important;
  opacity: 1 !important;
}

/* ========================================
   SHOP THE LOOK - VIDEO CAROUSEL (Section #8)
   ======================================== */

.video-slide {
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 10px;
}

.video-container {
  position: relative;
  aspect-ratio: 9/16;
  background: #000;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
  opacity: 1;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.play-btn:hover {
  background: #FF5CE5;
  transform: scale(1.1);
}

.play-btn i {
  font-size: 20px;
  color: #0B0B13;
  margin-left: 4px;
}

.play-btn:hover i {
  color: white;
}

.video-info {
  padding: 15px;
  text-align: center;
}

.video-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0B0B13;
}

.video-info .button.small {
  padding: 8px 20px;
  font-size: 13px;
  background: #FF5CE5;
  color: white;
  border: none;
  border-radius: 20px;
}

.video-info .button.small:hover {
  background: #e945d5;
}

body .nav-slider-low .flickity-page-dots {
    bottom: -10px;
}
body .button.primary.is-link{
	color: #0B0B13;
	font-size: 16px;
	-webkit-text-decoration: underline;
    text-decoration: underline;
	font-weight: 500;
}
body .button.primary.is-link span{
	-webkit-text-decoration: underline;
    text-decoration: underline;
}
body .slider-spacing-box .product-small.box {
	border-radius: 8px;
	padding: 10px;
	background: #fff;
}

body .slider-spacing-box .product-small .box-text{
	border: none!important;
}
.space-between{
	justify-content: space-between;
}
.detail-estimeBox{
    background: #fff5ec;
    border-radius: 8px;
    margin-bottom: 16px;
    margin-top: 24px;
    padding: 16px;
    font-size: 12px;
}
.detail-service {
    align-items: center
}

.detail-service.openPackageInsurance .detail-service-item>i {
	font-style: normal;
}

.detail-service-item {
    align-items: center;
    display: flex;
    line-height: 23px
}

.detail-service-item>i {
    color: #626262;
    font-weight: 400;
    text-align: center;
    text-decoration-line: underline;
	font-style: normal;
}

@media screen and (max-width: 1500px) {
    .detail-service-item>i {
        font-size:12px
    }
}

.detail-service-item .icon-verification {
    color: #15cf74;
    display: inline-block;
    font-size: 20px;
    margin-right: 4px
}

.detail-service-item--middle {
    border-left: .05px solid #ddd;
    margin-left: 16px;
    padding-left: 16px
}

.detail-service-item--middle,.detail-service-item--three {
    border-right: .05px solid #ddd;
    margin-right: 16px;
    padding-right: 16px
}

.detail-service-trigger {
    color: #261e17;
    display: inline-block;
    font-size: 18px;
    margin-left: auto
}
.package-insurance {
    align-items: center;
    color: #626262;
    display: flex;
    flex-wrap: wrap;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
    text-transform: capitalize
}

@media screen and (max-width: 1500px) {
    .package-insurance {
        font-size:12px
    }
}

.package-insurance .reg {
    font-size: 22px
}

.package-insurance>svg{
    margin-left: 4px
}
body .product-short-description ol li{
  line-height: 170%;
  margin-left: 0;
}
.product-short-description ol li::before{
  content: "";
  display: inline-block;
  width: 15px;
  height: 26px;
  /* check icon*/
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='100' height='100' viewBox='0 0 30 30'%3E%3Cpath d='M 26.980469 5.9902344 A 1.0001 1.0001 0 0 0 26.292969 6.2929688 L 11 21.585938 L 4.7070312 15.292969 A 1.0001 1.0001 0 1 0 3.2929688 16.707031 L 10.292969 23.707031 A 1.0001 1.0001 0 0 0 11.707031 23.707031 L 27.707031 7.7070312 A 1.0001 1.0001 0 0 0 26.980469 5.9902344 z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 8px;
}
@media screen and (min-width: 850px) {
    body .slider-pad .gallery-columns-4 .gallery-item, body .slider-pad .large-columns-4 .flickity-slider>.col, body .slider-pad .large-columns-4>.col {
        flex-basis: 25%;
        max-width: 22%;
    }
    /* 5 columns*/
    body .slider-pad .gallery-columns-5 .gallery-item, body .slider-pad .large-columns-5 .flickity-slider>.col, body .slider-pad .large-columns-5>.col {
        flex-basis: 20%;
        max-width: 18%;
    }
}


.accordion-item .toggle i {
    display: none
}

.accordion-item .toggle {
    background-image: url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0icy1pY29uIGZsZXggaXRlbXMtY2VudGVyIG1kLTIwIHBvaW50ZXIgYWNjb3JkaW9uX19pY29uIGZsZXggaXRlbXMtY2VudGVyIG1kLTIwIHBvaW50ZXIgYWNjb3JkaW9uX19pY29uIiB3aWR0aD0iMWVtIiBoZWlnaHQ9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgYXJpYS1oaWRkZW49InRydWUiIHJvbGU9ImltZyIgdmlld0JveD0iMCAwIDI0IDI0IiBkYXRhLWljb249Im1kaXxhZGQiIHN0eWxlPSJmb250LXNpemU6IGNhbGModmFyKC0tcDEtZm9udC1zaXplKSAqIHZhcigtLXAxLWxpbmUtaGVpZ2h0KSk7Ij48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0xOSAxM2gtNnY2aC0ydi02SDV2LTJoNlY1aDJ2Nmg2djJ6Ij48L3BhdGg+PC9zdmc+);
    background-repeat: no-repeat;
    background-position: center;
    width: 22px;
    height: 22px!important;
    display: inline-block;
    background-size: cover;
    max-height: 16px;
    overflow: hidden;
    padding: 0;
    min-height: 22px;
    opacity: 1;
    box-shadow: none!important
}

.accordion-item .accordion-title.active .toggle {
    background-image: url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0icy1pY29uIGZsZXggaXRlbXMtY2VudGVyIG1kLTIwIHBvaW50ZXIgYWNjb3JkaW9uX19pY29uIGZsZXggaXRlbXMtY2VudGVyIG1kLTIwIHBvaW50ZXIgYWNjb3JkaW9uX19pY29uIiB3aWR0aD0iMWVtIiBoZWlnaHQ9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgYXJpYS1oaWRkZW49InRydWUiIHJvbGU9ImltZyIgdmlld0JveD0iMCAwIDI0IDI0IiBkYXRhLWljb249Im1kaXxyZW1vdmUiIHN0eWxlPSJmb250LXNpemU6IGNhbGModmFyKC0tcDEtZm9udC1zaXplKSAqIHZhcigtLXAxLWxpbmUtaGVpZ2h0KSk7Ij48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0xOSAxM0g1di0yaDE0djJ6Ij48L3BhdGg+PC9zdmc+);
    background-repeat: no-repeat;
    background-position: center
}


.accordion-item .toggle {
    left: auto;
    right: 0;
    top: 1.3em
}

.accordion-item .accordion-inner {
    padding-left: 0;
    padding-right: 0;
    padding-top: 16px;
	font-size: 14px;
}

.accordion-item .accordion-title.active {
    background: transparent!important;
    color: #031a1c!important;
    padding-bottom: 0px!important
}

.accordion-item:first-child .accordion-title {
    border-top: .5px solid #ddd!important
}

.accordion{
  border-bottom: .5px solid #ddd!important
}
.accordion-title {
	font-size: 18px;
	border-top: 1px solid #ddd !important;
  padding-left: 0;
  padding-top: 24px;
  padding-bottom: 16px;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 26px;
}
body .accordion-title.active {
    font-weight: 500;
}
body .accordion-title:hover {
    color: currentColor;
}

.woocommerce-product-attributes-item__label{
    display: inline-block;
    width: 154px;
	font-weight: 400;
    text-transform: none;
	font-size: 13px;
    font-weight: 400;
	line-height: 150%;
	padding: 0;
	border: none;
}
.woocommerce-product-attributes-item{
	align-items: center;
    color: #0b0b13;
    display: flex;
    font-family: Outfit;
    font-size: 13px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 8px;
}

.woocommerce-product-attributes-item__value{
	color: #66584e;
    display: inline-block;
    flex: 1;
    margin-left: 12px;
	line-height: 150%;
	padding: 0;
	border: none;
}
.woocommerce-product-attributes-item__value p{
	margin: 0!important;
	font-size: 13px;
    font-weight: 400;
	line-height: 150%;
}
body .row .detail-left{
	width: 42.7777%;
    flex-basis: 42.7777%;
    max-width: 42.7777%;
}
body .row .detail-right{
	width: 47.7777%;
    flex-basis: 47.7777%;
    max-width: 47.7777%;
}
@media screen and (min-width: 850px) {
    .vertical-thumbnails {
        width: 80px;
        flex-basis: 80px;
    }
}
.product-thumbnails img {
	border-radius: 8px;
	opacity: 1 !important;
    margin: 0 !important;
    transform: none !important;
    border: none !important;
}
.product-thumbnails a {
	border: none !important;
}
.breadcrumbs, .rank-math-breadcrumb {
    line-height: 54px;
	font-size: 14px;
	color: #0b0b13;
	height: 54px;
}

.bread-crumb li a , .rank-math-breadcrumb  li a{
    color: #7a7a7a;
}
.rank-math-breadcrumb p{
	margin: 0!important;
}
.product-title.entry-title{
    color: #0b0b13;
    font-family: Outfit;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 12px;
    text-transform: capitalize;
}
.product-gallery-slider img, .product-thumbnails img{
    width: 100%;
    border-radius: 8px;
}
.price.product-page-price {
    display: flex;
    align-items: center;
    height: 42px;
}
.price.product-page-price span.amount {
    color: #111;
    font-weight: 600;
    white-space: nowrap;
    font-size: 28px;
}
.price.product-page-price del span.amount, .price.product-page-price del {
    font-size: 24px;
    font-weight: 300;
	opacity: 1!important;
	color: #acacac;
}
.ux-quantity.quantity.buttons_added.form-flat {
    display: flex;
    width: auto;
}
.price.product-page-price del {
    margin-left: 8px;
}
.quantity .minus, .quantity .plus {
    background: transparent !important;
	width: 40px;
}

.ux-quantity.quantity .input-text.qty{
	width: 3.5em;
	max-width: 3.5em;
	height: 40px;
    line-height: 40px;
	border-left: none;
    border-right: none;
	background-color: #fff;
}
.quantity input {
    border-color: #ddaf88 !important;
}
.sg_wrapper_add_to_cart_quantity{
    gap: 12px;
    justify-content: space-between;
    padding: 16px 0 0;
	flex: auto!important;
	flex-direction: column;
}

.sg_wrapper_add_to_cart_quantity button {
    font-weight: 500;
    height: 52px;
    line-height: 52px;
    margin: 0;
	border-radius: 12px;
    box-sizing: border-box;
	font-size: 16px;
	text-transform: none;
	border: 1px solid #0b0b13;
    color: #0b0b13;
	flex-grow: 1;
}
body .single_add_to_cart_button.button{
	background: none !important;
}
body .single_add_to_cart_button.button.custom-buy-now-btn{
    background-color: var(--fs-color-secondary) !important;
    color: #fff;
    border: none;
}

body .product-section {
  border-top: none;
}
.row.row-collapse.space-between::after{
  display: none;
}
/* Related slider header + nav: assets/css/related-header-nav.css */
.box-text {
  font-size: 14px;
  line-height: 22px;
}

.wc-tabs.nav a{
  color: #acacac;
  
  font-size: 18px;
  line-height: 26px;
  padding: 16px 0;
  position: relative;
}

.wc-tabs.nav li.active a{
  color: #0b0b13;
  font-weight: 500;
}

.wc-tabs.nav li a::before {
  top: auto;
  bottom: 0;
  height: 2px;
}
.wc-tabs.nav {
  border-bottom: 1px solid #ddd;
}

.footer h4 {
  color: #ddaf88;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  text-transform: capitalize;
}

.footer .ux-menu-link a{
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  text-transform: capitalize;
  font-style: normal;
  padding: 16px 0px;
}
.footer .ux-menu-link a:hover {
  color: #ddaf88!important;
}
.footer .row.row-full-width {
  padding: 0 32px;
}

.footer .social-icons.follow-icons a{
  font-size: 32px;;
  margin: 0 32px;
}

.woocommerce-Tabs-panel--guarantees h4{
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 16px;
  text-align: left;
}

.woocommerce-Tabs-panel--guarantees p{
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 0;
}

/* ==========================================================================
   Unistore UX: CTA strip + coupon promo (inc/promo-ux-elements.php)
   ========================================================================== */

.unistore-cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  line-height: 40px;
  background-color: #faf7f2;
  border: 1px solid #ecd7ca;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 14px;
  padding: 0 16px;
}

.unistore-cta-strip__headline {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
}

.unistore-cta-strip__link {
  flex-shrink: 0;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.unistore-cta-strip__link:hover {
  color: #000;
}

/* Coupon / discount box */
.unistore-coupon-promo {
  margin: 0;
  padding: 16px 18px;
  background-color: #fff3ff;
  border: 1px solid #ffe5fb;
  border-radius: 5px;
  box-sizing: border-box;
  color: #2b1810;
  font-size: 14px;
  line-height: 22px;
}

.unistore-coupon-promo__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #1a1a1a;
}

.unistore-coupon-promo__summary::-webkit-details-marker {
  display: none;
}

.unistore-coupon-promo__tag-icon {
  flex-shrink: 0;
  color: #d14d8c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unistore-coupon-promo__title {
  flex: 1 1 auto;
  min-width: 0;
}

.unistore-coupon-promo__chev {
  flex-shrink: 0;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  line-height: 0;
  transition: transform 0.2s ease;
}

.unistore-coupon-promo__chev svg {
  display: block;
}

/* Open = mũi tên lên (mặc định SVG); đóng = xoay xuống */
.unistore-coupon-promo:not([open]) .unistore-coupon-promo__chev {
  transform: rotate(180deg);
}

.unistore-coupon-promo__body {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid rgba(209, 77, 140, 0.2);
}

.unistore-coupon-promo__tiers {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #3d2a22;
}

.unistore-coupon-promo__code-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  font-size: 14px;
}

.unistore-coupon-promo__code-label {
  font-weight: 600;
}

.unistore-coupon-promo__code {
  font-family: ui-monospace, monospace;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.65);
  padding: 2px 8px;
  border-radius: 4px;
}

.unistore-coupon-promo__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 4px;
  border: none;
  background: transparent;
  color: #1a1a1a;
  cursor: pointer;
  border-radius: 4px;
  line-height: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.unistore-coupon-promo__copy:hover,
.unistore-coupon-promo__copy:focus-visible {
  background: rgba(209, 77, 140, 0.12);
  color: #d14d8c;
  outline: none;
}

.unistore-coupon-promo__copy--done {
  color: #1a7f4c;
}
body .cr-all-reviews-shortcode .cr-count-row, #reviews.cr-reviews-ajax-reviews .cr-count-row{
  background-color: transparent;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}
body .cr-reviews-ajax-reviews .cr-ajax-reviews-sort-div .cr-ajax-reviews-sort, body .cr-all-reviews-shortcode .cr-ajax-reviews-sort-div .cr-ajax-reviews-sort {
  font-size: 14px;
}

body .commentlist li .cr-comment-text .description{
  font-size: 14px;
  line-height: 22px;
  font-style: normal;
}
.cr-all-reviews-shortcode ol.commentlist li .cr-comment-text .meta{
  font-style: normal;
  font-size: 14px;
}

.cr-all-reviews-shortcode ol.commentlist li .cr-comment-text .meta .woocommerce-review__author, .cr-reviews-ajax-reviews .cr-reviews-ajax-comments .cr-ajax-reviews-list .cr-comment-text .meta .woocommerce-review__author{
  font-size: 14px;
}
.quantity-input-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.woocommerce-variation-add-to-cart, form.cart {
  gap: 24px;
}
.flex.sg_wrapper_add_to_cart_quantity{
  padding-top:0!important;
}

.shop_table .quantity-input-label{
  display: none;
}

.shop_table .ux-quantity.quantity .input-text.qty {
  width: 2.5em;
  max-width: 2.5em;
  height: 30px;
  line-height: 30px;
}

.shop_table .quantity .minus, .shop_table .quantity .plus {
  background: transparent !important;
  width: 30px;
  line-height: 30px;
  height: 30px;
  min-height: 30px;
}

.footer .news-letter h4 {
  font-size: 36px;
  line-height: 44px;
}
.news-letter-subtitle {
  text-transform: capitalize;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 32px;
  margin-top: 16px;
}

.tnp.tnp-subscription form {
  position: relative;
}

.tnp.tnp-subscription{
  max-width: 1100px;
}
body .tnp-field .tnp-email{
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 13px;
  font-weight: 400;
  height: 64px;
  line-height: 64px;
  padding: 0;
  width: 100%;
  position: relative;
}

.tnp-field label{
  display: none;
}

body .tnp-field.tnp-field-email{
  width: 100%;
  position: relative;
  border-bottom: .5px solid #ddd;
}
body .tnp-field.tnp-field-button {
  position: absolute;
  right: 0;
  top: 10px;
  width: 180px;
  text-align: right !important;
  display: inline-block;
  margin: 0 !important;
}

.tnp-field input[type="submit"] {
  position: relative;
  border-radius: 60px;
  width: 100%;
  background-color: #ff5ce5;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  height: 48px;
}
.footer-head{
  background: #ff90ed;
  height: 38px;
  overflow: hidden;
  padding: 0 1.2rem!important;
  width: 100%;
  white-space: nowrap;
}

.footer-head p{
  margin: 0!important;
}


.footer-head_icon, .footer-head_info {
  color: #0b0b13;
  font-size: 14px;
  font-weight: 400;
  line-height: 38px
}

.footer-head_icon {
  display: inline-block;
  margin-left: 12px;
  margin-right: 12px
}
.category-page-row{
  max-width: 100%!important;
  padding-left: 32px!important;
  padding-right: 32px!important;
}

.category-page-row .row{
  max-width: 100%!important;
}
body .product-list-filter {
  flex-shrink: 0;
  margin-right: 66px;
  width: 240px;
  max-width: 240px;
  flex-basis: 240px;
  padding: 0;
}
.product-card-list-wrapper{
  flex-grow: 1;
  overflow: hidden;
  max-width: 100%;
}

.category-page-row .products{
  gap: 32px
}
.category-page-row .products .col {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: calc(25% - 24px);
}
.shop-page-title .container{
  max-width: 100%!important;
  padding-left: 32px!important;
  padding-right: 32px!important;
  flex-direction: column;
  align-items: baseline;
  font-size: 16px;
  font-weight: 500;
}

.flex-1{
  flex: 1;
}
.woocommerce-result-count {
  display: inline-block;
  margin: 0;
}

.shop-page-title{
  color: #0b0b13;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  padding-bottom: 8px;
  padding-top: 0;
  text-transform: capitalize;
}
.divider-page-title{
  border-top: .5px solid #ecd7ca;
  height: 26px;
  margin-top: 24px;
  padding-top: 24px;
}
.page-title-inner{
  padding-top: 0;
}

#shop-sidebar{
  font-size: 14px;
}

#shop-sidebar .widget-title{
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #0b0b13;
  font-family: Outfit;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  padding: 12px 0;
}
.widget .is-divider {
  margin-top: .66em;
  display: none;
}

#shop-sidebar .widget{
  border-bottom: .5px solid #ddaf88;
  margin: 12px 0;
}
.product-loop-review {
  display: flex;
  width: 100%;
  font-size: 14px;
  gap: 4px;
  line-height: 22px;
}
.product-card-review-num{
  text-decoration: underline;
}
.product-loop-review svg {
  height: 12px;
  width: 16px;
}