/* Stop blinking animation on discount badge */
.product__badge-list,
.product__badge-list *,
.tpproduct__thumb-topsall {
    animation: none !important;
    -webkit-animation: none !important;
    transition: none !important;
    opacity: 1 !important;
}




/* =====================================================
   GLOBAL SECTION PADDING (20px)
   ===================================================== */

section,
[class*="-area"],
[class*="_area"] {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

/* Disable Ninico padding utility classes */
[class^="pt-"],
[class*=" pt-"] {
    padding-top: 20px !important;
}

[class^="pb-"],
[class*=" pb-"] {
    padding-bottom: 20px !important;
}


/* ===== Floating Support Container ===== */
.floating-support {
    position: fixed;
    bottom: 100px; /* above bottom nav */
    right: 25px;
    z-index: 9999;
}

/* ===== Toggle Button (Brown Theme) ===== */
.support-toggle {
    width: 58px;
    height: 58px;
    background: #6f4e37;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

.support-toggle:hover {
    background: #5a3d2b;
    transform: scale(1.05);
}

/* ===== Options Container (OPEN UPWARDS) ===== */
.support-options {
    position: absolute;
    bottom: 75px; /* space above main button */
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Show when active */
.floating-support.active .support-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== Option Buttons ===== */
.support-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #111;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.support-item:hover {
    background: #6f4e37;
}

.support-toggle i {
    transition: transform 0.3s ease;
}

.floating-support.active .support-toggle i {
    transform: rotate(45deg);
}
/* Smooth stagger animation */
.support-options {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
}

.support-item {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* When active */
.floating-support.active .support-options {
    opacity: 1;
    visibility: visible;
}

/* Stagger effect */
.floating-support.active .support-item:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.floating-support.active .support-item:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}




/* ===== Video Call Button ===== */
.video-call-btn {
    display: block;
    width: 85%;
    margin: 0 auto;
    background: linear-gradient(135deg, #d4af37, #c19a6b);
    color: #fff;
    padding: 14px 0;
    border-radius: 40px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(193, 154, 107, 0.4);
}

.video-call-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(193, 154, 107, 0.6);
}

/* ===== Social Icons Section ===== */
.tpsideinfo__social {
    margin-top: 30px;
    padding-bottom: 20px;
}

.tpsideinfo__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 6px;
    border-radius: 50%;
    background: #111;
    color: #c19a6b;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(193, 154, 107, 0.3);
}

.tpsideinfo__social a:hover {
    background: #c19a6b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(193, 154, 107, 0.5);
}

/* WhatsApp special green hover */
.tpsideinfo__social a .fa-whatsapp:hover {
    color: #25D366;
}


.scroll-top {
    display: none !important;
}





/* Make product content position relative */
.tpproduct__content {
    position: relative;
}



/* Hide Quick View and Wishlist on mobile */
@media (max-width: 768px) {
    .tpproduct__thumb-action .quickview,
    .tpproduct__thumb-action .add-to-wishlist {
        display: none !important;
    }
}


/* Hide product tags section */
.tpproduct-details__tags {
    display: none !important;
}

/* Hide SKU on product page */
.meta-sku {
    display: none !important;
}


body {
    padding-left: 18px;
    padding-right: 18px;
    box-sizing: border-box;
}


/* ===============================
   FORCE REMOVE HUGE GAPS (NINICO)
   =============================== */

/* Fix inner content spacing */
.feature-area .tpabout_inner-title-area {
    margin-bottom: 16px !important;
}

/* Kill utility margin */
.feature-area .mb-70 {
    margin-bottom: 16px !important;
}

/* Fix parent section padding */
.feature-area {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

/* Mobile specific tightening */
@media (max-width: 767px) {
    .feature-area {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .feature-area .tpabout_inner-title-area {
        margin-bottom: 12px !important;
        margin-left: 12px !important;
        margin-right: 12px !important;
    }
}

/* ================================
   REMOVE CATEGORY COUNT BADGE
   ================================ */

.category-area .tpcategory__icon span {
    display: none !important;
}


/* ================================
   FORCE PERFECT ROUND CATEGORY ICONS
   (NINICO OVERRIDE – FINAL FIX)
   ================================ */

/* Reset wrapper completely */
.category-area .tpcategory__icon {
    width: 160px !important;
    height: 160px !important;
    min-width: 160px !important;
    min-height: 160px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
}

/* Kill theme pseudo elements causing oval */
.category-area .tpcategory__icon::before,
.category-area .tpcategory__icon::after {
    display: none !important;
    content: none !important;
}

/* FORCE image to be square + cropped */
.category-area .tpcategory__icon img {
    width: 160px !important;
    height: 160px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 50% !important;
    display: block !important;
}

/* Badge number fix */
.category-area .tpcategory__icon span {
    position: absolute;
    top: 8px !important;
    right: 8px !important;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    font-size: 13px;
    z-index: 5;
}

/* Title spacing */
.category-area .tpcategory__title a {
    font-size: 16px;
    margin-top: 12px;
    display: inline-block;
}

/* Reduce section padding */
.category-area.pt-70 { padding-top: 35px !important; }
.category-area.pb-70 { padding-bottom: 35px !important; }

/* ================================
   HORIZONTAL SCROLL CATEGORY CAROUSEL
   (Mobile + Desktop – CSS Only)
   ================================ */

/* Make category row horizontal */
.category-area .custom-row.category-border {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 24px;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

/* Enable swipe scrolling */
.category-area .custom-row.category-border {
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar (Chrome, Edge, Safari) */
.category-area .custom-row.category-border::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar (Firefox) */
.category-area .custom-row.category-border {
    scrollbar-width: none;
}

/* Prevent shrinking of category items */
.category-area .tpcategory {
    flex: 0 0 auto !important;
    text-align: center;
}

/* Desktop sizing */
@media (min-width: 1200px) {
    .category-area .tpcategory {
        width: 180px;
    }
}

/* Mobile sizing */
@media (max-width: 1199px) {
    .category-area .tpcategory {
        width: 140px;
    }
}

/* =========================================
   FIX NEW ARRIVALS SECTION SPACING (NINICO)
   ========================================= */

/* Reduce top & bottom padding of the whole section */
.white-product-area.pt-65 {
    padding-top: 20px !important;
}

.white-product-area.pb-70 {
    padding-bottom: 20px !important;
}

/* Remove extra space below section heading */
.white-product-area .tpsection {
    margin-bottom: 10px !important;
}

/* Tighten spacing between title and arrows */
.white-product-area .row {
    margin-bottom: 10px !important;
}

/* Reduce spacing above product cards */
.white-product-area .swiper-container {
    margin-top: 5px !important;
}

/* OPTIONAL: slightly reduce product card internal gap */
.white-product-area .whiteproduct {
    margin-bottom: 0 !important;
}

/* =========================================
   FIX TOP CATEGORIES SECTION SPACING
   ========================================= */

/* Reduce section top & bottom padding */
.category-area.pt-70 {
    padding-top: 20px !important;
}

.category-area.pb-70 {
    padding-bottom: 20px !important;
}

/* Reduce space below "Top Categories" title */
.category-area .tpsection {
    margin-bottom: 16px !important;
}

/* Reduce bottom spacing of category row */
.category-area .custom-row.pb-45 {
    padding-bottom: 16px !important;
}

/* Reduce individual category card margin */
.category-area .tpcategory.mb-40 {
    margin-bottom: 16px !important;
}

/* Mobile fine-tuning */
@media (max-width: 767px) {
    .category-area.pt-70 {
        padding-top: 16px !important;
    }

    .category-area.pb-70 {
        padding-bottom: 16px !important;
    }

    .category-area .tpsection {
        margin-bottom: 12px !important;
    }
}



/* =====================================================
   EXCLUDE SLIDER FROM GLOBAL PADDING
   ===================================================== */

.slider-area,
.slider-area section,
.slider-area .tp-slider-area {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
}


/* Change "On sale" tab text to "Combo" */
#product-type-tab .nav-link[data-type="on-sale"] {
    font-size: 0; /* hide original text */
    position: relative;
}

#product-type-tab .nav-link[data-type="on-sale"]::after {
    content: "Combo";
    font-size: 16px; /* match other tabs */
    font-weight: 500;
    color: inherit;
}

/* ===============================
   ADORA VIDEO SLIDER – FINAL
   =============================== */

.adora-video-section {
  padding: 40px 0;
  background: #ffffff;
}

.adora-video-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Wrapper */
.adora-slider-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Slider */
.adora-slider {
  display: flex !important;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

/* Slide (Desktop: 4 visible) */
.adora-slide {
  flex: 0 0 300px !important;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Clickable link */
.adora-video-link {
  display: block;
  width: 100%;
  height: 100%;
}

/* Video FIX (NO BLACK STRIP) */
.adora-slide video {
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

/* Mute Button */
.adora-mute-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 5;
}

.adora-mute-btn:hover {
  background: #000;
}

/* Hide scrollbar */
.adora-slider::-webkit-scrollbar {
  display: none;
}
.adora-slider {
  scrollbar-width: none;
}

/* Tablet */
@media (max-width: 992px) {
  .adora-slide {
    flex: 0 0 260px !important;
    height: 440px;
  }
}

/* Mobile – BIG VIDEO, NO GAP */
@media (max-width: 576px) {
  .adora-video-section {
    padding: 20px 0 !important;
  }

  .adora-video-title {
    font-size: 20px;
    margin-bottom: 15px !important;
  }

  .adora-slider-wrapper {
    padding: 0 10px !important;
  }

  .adora-slider {
    gap: 12px !important;
  }

  .adora-slide {
    flex: 0 0 90% !important;
    max-width: 90% !important;
    height: 480px !important;
    border-radius: 18px;
  }

  .adora-mute-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}



/* ================================
   FORCE CENTER PRODUCT FILTER TABS
   (NINICO – FINAL WORKING FIX)
   ================================ */

/* 1. Make navbar full width */
.tpnavbar {
    width: 100% !important;
}

/* 2. Force nav container to center */
.tpnavbar nav {
    display: flex !important;
    justify-content: center !important;
}

/* 3. Force tabs row to center */
#product-type-tab {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    width: auto !important;
}

/* 4. Remove right-push utilities */
.tpnavbar,
.tpnavbar * {
    justify-content: center !important;
    text-align: center !important;
}

/* 5. Clean tab buttons */
#product-type-tab .nav-link {
    margin: 0 12px !important;
    padding: 6px 0 !important;
    border: none !important;
    background: transparent !important;
    font-weight: 500;
}

/* 6. Active tab underline */
#product-type-tab .nav-link.active {
    color: #000 !important;
    border-bottom: 2px solid #000 !important;
}

/* =================================================
   GLOBAL KILL: COMPARE (NINICO / BOTBLE)
   ================================================= */

/* Header compare */
.header-meta_social a.header-cart i.fa-exchange,
.header-meta_social .tp-product-compare-count {
    display: none !important;
}

/* Any compare buttons/links */
.add-to-compare,
.compare-btn,
.btn-compare,
.product-action .compare,
.action-btn.compare,
a[href*="/compare"] {
    display: none !important;
}

/* Compare icons anywhere */
.fa-exchange,
.fal.fa-exchange {
    display: none !important;
}

/* Hide Track Order / Order Tracking link */
.tpsideinfo__wishlist-link {
    display: none !important;
}
/* =====================================
   FINAL MOBILE FIX – NO TOUCHING
   ===================================== */

@media (max-width: 576px) {

  /* =========================
     FORCE CENTER + STACK
     ========================= */

  .tpproduct_content .bb-product-price,
  .tpproduct_content .tpproduct__priceinfo-list {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-top: 4px !important;
    clear: both !important;
  }

  /* FORCE SALE PRICE TO BLOCK */
  .tpproduct_content span.product-price-sale {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin: 4px auto 4px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
  }

  /* OLD PRICE CENTERED BELOW */
  .tpproduct_content .bb-product-price-text-old,
  .tpproduct_content .bb-product-price-text-old del {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-top: 2px !important;
    font-size: 13px !important;
    opacity: 0.55;
  }

  /* =========================
     EXTRA SPACE BELOW REVIEWS
     ========================= */
  .tpproduct_content > .mb-2 {
    margin-bottom: 14px !important;
  }
}

/* =====================================
   FINAL MOBILE FIX – NO TOUCHING
   ===================================== */

@media (max-width: 576px) {

  /* PRODUCT CONTENT SAFETY */
  .tpproduct_content {
    overflow: hidden;
  }

  /* ===== RATING ROW ===== */
  .tpproduct_content > .mb-2 {
    display: block !important;
    width: 100% !important;
    margin: -4px 0 3px !important;
    padding: 0 !important;
    line-height: 1 !important;
    clear: both !important;
  }

  /* Stars */
  .product-rating-wrapper {
    display: inline-block;
    vertical-align: middle;
    margin-top: -10px;
    transform: translateY(-1px);
  }

  /* (0) review count */
  .tpproduct-details__reviewers {
    display: none;
    margin-left: 6px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    vertical-align: middle;
    position: relative;
    top: -1px;
  }

  /* ===== PRICE ROW ===== */
  .bb-product-price {
    display: block !important;
    width: 100% !important;
    margin-top: 12px !important;
    clear: both !important;
  }

  .bb-product-price span {
    display: block !important;
    line-height: 1.2;
  }

  /* Sale price */
  .product-price-sale {
    font-size: 15px;
    font-weight: 600;
  }

  /* Old price */
  .bb-product-price-text-old del {
    font-size: 12px;
    opacity: 0.6;
  }
}