/* ===== TWOTAILS CUSTOM PRODUCT PAGE ===== */
/* Matches the index.html mockup design exactly */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
.tt-product-page {
  --coral: #E85D5D;
  --coral-light: #FF7A7A;
  --coral-dark: #C94444;
  --dark: #1A1A2E;
  --text: #374151;
  --text-light: #6B7280;
  --bg: #FFFFFF;
  --bg-soft: #F9FAFB;
  --bg-warm: #FFF8F6;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --gold: #F59E0B;
  --green: #10B981;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
  --shadow: 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
  padding: 0;
}

/* Hide default Warehouse product row - we use custom grid */
.tt-product-page .row.product-info-row {
  display: none !important;
}

.tt-product-page .product-info-row {
  display: none !important;
}

.tt-product-page .col-add-qty,
.tt-product-page .col-add-btn {
  display: none !important;
}

.tt-product-page .product-quantity {
  display: none !important;
}

.tt-product-page .product-add-to-cart .qty {
  display: none !important;
}

.tt-product-page .blockreassurance_product {
  display: none !important;
}

#wrapper .tt-product-page .container {
  max-width: 100% !important;
  padding: 0 !important;
}

.tt-product-page #inner-wrapper {
  padding: 0 !important;
}

.tt-product-page .breadcrumb+.container,
.tt-product-page #content-wrapper {
  padding: 0 !important;
  max-width: 100% !important;
}

.tt-product-page .product-add-to-cart {
  padding: 0 !important;
}

.tt-product-page .product-prices {
  margin: 0 !important;
}

.tt-product-page .product-discount {
  margin-bottom: 4px !important;
}

.tt-product-page .product-price.h5 {
  margin: 0 !important;
}

.tt-product-page .has-discount .discount {
  margin-left: 8px !important;
}

.tt-product-page #col-product-info {
  padding: 0 !important;
}

/* ===== BREADCRUMB ===== */
#wrapper .breadcrumb {
  background: var(--bg-soft) !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid var(--border-light) !important;
  margin-bottom: 0 !important;
}

#wrapper .breadcrumb .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

#wrapper .breadcrumb ol {
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  list-style: none !important;
}

#wrapper .breadcrumb li {
  display: flex !important;
  align-items: center !important;
}

#wrapper .breadcrumb li::after {
  content: "/" !important;
  margin: 0 8px !important;
  color: var(--border) !important;
  font-size: 11px !important;
}

#wrapper .breadcrumb li:last-child::after {
  display: none !important;
}

#wrapper .breadcrumb a {
  color: var(--text-light) !important;
  font-size: 13px !important;
  transition: var(--transition) !important;
}

#wrapper .breadcrumb a:hover {
  color: var(--coral) !important;
  text-decoration: none !important;
}

#wrapper .breadcrumb span {
  color: var(--text) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
}

/* Availability badge styles */
.tt-availability {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 10px 16px !important;
  margin-bottom: 24px !important;
  border-radius: var(--radius) !important;
  width: fit-content !important;
  border: 1px solid transparent !important;
}

.tt-availability-ok {
  color: var(--green) !important;
  background: #ecfdf5 !important;
  border-color: rgba(16, 185, 129, 0.1) !important;
}

.tt-availability-ok svg {
  stroke: var(--green) !important;
}

.tt-availability-warn {
  color: var(--coral) !important;
  background: #FFF5F5 !important;
  border-color: rgba(232, 93, 93, 0.1) !important;
}

.tt-availability-warn svg {
  stroke: var(--coral) !important;
}

/* ===== PROMO BANNER (inside product template - hidden, using theme header instead) ===== */
#main-product-wrapper>.promo-banner {
  display: none !important;
}

/* ===== TOP BANNER (Warehouse theme promo bar) — match mockup ===== */
#top-banner,
#top-banner.moved {
  display: flex !important;
  background: #E85D5D !important;
  color: #fff !important;
  text-align: center !important;
  padding: 8px 40px 8px 16px !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px !important;
  position: relative !important;
  top: 0 !important;
  min-height: 38px !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center !important;
  justify-content: center !important;
}

#top-banner .top-banner-message {
  padding: 0 !important;
  margin: 0 !important;
}

#top-banner .top-banner-close {
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #fff !important;
  font-size: 18px !important;
  opacity: .8 !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
}

.promo-banner p {
  margin: 0 !important;
}

.promo-banner strong {
  font-weight: 700 !important;
}

.promo-close {
  position: absolute !important;
  right: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: none !important;
  border: none !important;
  color: #fff !important;
  font-size: 20px !important;
  cursor: pointer !important;
  opacity: .8 !important;
  transition: var(--transition) !important;
  line-height: 1 !important;
}

.promo-close:hover {
  opacity: 1 !important;
}

/* ===== HEADER OVERRIDES (Warehouse to Mockup) ===== */
#header {
  background: #fff !important;
  border-bottom: 1px solid var(--border-light) !important;
}

#header .header-nav {
  background: var(--bg-soft) !important;
  border-bottom: 1px solid var(--border-light) !important;
}

#desktop_logo img {
  max-width: 160px !important;
  height: auto !important;
}

#desktop-header .header-top {
  padding: 18px 0 !important;
  background: #fff !important;
}

#desktop-header .header-top .container {
  max-width: 1200px !important;
}

/* Mega menu forced to top of EVERYTHING */
#desktop-header {
  position: relative !important;
  z-index: 20000 !important;
}

#desktop-header .iqitmegamenu-wrapper {
  position: relative !important;
  z-index: 21000 !important;
}

#desktop-header .iqitmegamenu-wrapper .dropdown-menu {
  z-index: 22000 !important;
  background: #fff !important;
  opacity: 1 !important;
}

#header,
#desktop-header,
#desktop-header .header-nav,
#desktop-header .header-top,
#desktop-header .iqitmegamenu-wrapper,
#desktop-header .iqitmegamenu-wrapper .dropdown-menu {
  overflow: visible !important;
}

/* Ensure product area never overlays open mega menu */
#main-product-wrapper,
.tt-product-page,
.tt-product-grid,
.tt-gallery,
.tt-product-info {
  position: relative !important;
  z-index: 1 !important;
}

/* Nav links styling */
#desktop-header .iqitmegamenu-wrapper .nav-link,
#desktop-header .nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: var(--dark) !important;
}

#desktop-header .nav-link:hover {
  color: var(--coral) !important;
}

/* Header actions (Search, Account, Cart) */
#desktop-header .header-right-column {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
}

#desktop-header .header-btn-icon {
  color: var(--dark) !important;
  transition: var(--transition) !important;
}

#desktop-header .header-btn-icon:hover {
  color: var(--coral) !important;
}

#desktop-header #_desktop_cart .cart-preview {
  background: none !important;
  padding: 0 !important;
}

#desktop-header #_desktop_cart .cart-icon {
  font-size: 22px !important;
  color: var(--dark) !important;
}

#desktop-header #_desktop_cart .cart-products-count {
  background: var(--coral) !important;
  color: #fff !important;
  border-radius: 50% !important;
  font-size: 10px !important;
  width: 18px !important;
  height: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  top: -5px !important;
  right: -8px !important;
}

/* Adjust vertical spacing between elements */
.promo-banner+#header {
  border-top: none !important;
}

/* Global Container Width */
#wrapper .container,
#main-product-wrapper .container {
  max-width: 1200px !important;
}

/* ===== PRODUCT GRID ===== */
.tt-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== GALLERY ===== */
.tt-gallery {
  position: sticky !important;
  top: 100px !important;
  z-index: 1 !important;
}

.tt-gallery-main {
  position: relative !important;
  background: var(--bg-soft) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  aspect-ratio: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid var(--border-light) !important;
}

.tt-gallery-badge {
  position: absolute !important;
  top: 20px !important;
  left: 20px !important;
  background: var(--coral) !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  padding: 6px 12px !important;
  border-radius: 20px !important;
  letter-spacing: 1px !important;
  z-index: 5 !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 12px rgba(232, 93, 93, 0.2) !important;
}

.tt-badge-sale {
  background: #DC2626;
}

.tt-gallery-zoom {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tt-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1) !important;
  padding: 0 !important;
}

.tt-gallery-main img {
  max-width: 100%;
  max-height: 100%;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.tt-gallery-zoom:hover .tt-main-image {
  transform: scale(1.06);
}

.tt-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .9) !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow) !important;
  transition: var(--transition) !important;
  z-index: 2;
  color: var(--dark) !important;
  border: none !important;
  cursor: pointer;
}

.tt-gallery-nav:hover {
  background: #fff !important;
  box-shadow: var(--shadow-lg) !important;
}

.tt-gallery-prev {
  left: 12px;
}

.tt-gallery-next {
  right: 12px;
}

.tt-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.tt-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  border: 2px solid transparent !important;
  transition: var(--transition) !important;
  opacity: .6;
  flex-shrink: 0;
  cursor: pointer;
  background: none !important;
  padding: 0 !important;
}

.tt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tt-thumb:hover {
  border-color: var(--coral-light) !important;
  opacity: 1 !important;
  transform: translateY(-2px);
}

.tt-thumb.active {
  border-color: var(--coral) !important;
  opacity: 1 !important;
  box-shadow: var(--shadow-sm);
}

/* ===== PRODUCT INFO ===== */
.tt-product-info {
  padding-top: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

.tt-product-brand-row {
  order: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 4px !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.tt-brand-name {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--coral) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
}

.tt-product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tt-product-title {
  order: 2 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  line-height: 1.1 !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.03em !important;
}

.tt-product-subtitle {
  order: 3 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px !important;
  color: var(--text-light) !important;
  line-height: 1.6 !important;
  margin-bottom: 28px !important;
}

.tt-price-block {
  order: 4 !important;
  background: var(--bg-warm) !important;
  border-radius: var(--radius) !important;
  padding: 24px 28px !important;
  margin-bottom: 32px !important;
  border: 1px solid rgba(232, 93, 93, 0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

/* Hide Warehouse residual elements in price block (NOT the price itself) */
.tt-price-block .product-availability,
.tt-price-block .badge:not(.discount-percentage):not(.discount-amount),
.tt-price-block .tax-shipping-delivery-label,
.tt-price-block .delivery-information,
.tt-price-block .product-reference,
.tt-price-block #product-availability,
.tt-price-block .product-discounts,
.tt-price-block .product-unit-price,
.tt-price-block .product-without-taxes,
.tt-price-block .product-pack-price {
  display: none !important;
}

.tt-price-block .product-prices {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
}

.tt-price-block .product-prices .current-price-container {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
}

.tt-price-block .current-price {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  line-height: 1 !important;
}

.tt-price-block .current-price-value,
.tt-price-block .product-price {
  font-family: 'Outfit', sans-serif !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  color: var(--coral) !important;
  line-height: 1 !important;
  display: inline !important;
}

.product-actions {
  order: 5 !important;
  display: block !important;
}

.tt-availability {
  order: 6 !important;
  margin-top: 16px !important;
}

.tt-trust-badges {
  order: 7 !important;
  margin-top: 32px !important;
}

.tt-price-block .regular-price {
  font-size: 18px !important;
  color: var(--text-light) !important;
  text-decoration: line-through !important;
}

.tt-price-block .discount-percentage,
.tt-price-block .discount-amount {
  background: var(--coral) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  display: inline-block;
}

/* Variants */
.tt-variants-wrapper {
  margin-bottom: 24px !important;
}

.tt-variants-wrapper .product-variants-item {
  margin-bottom: 20px !important;
}

.tt-variants-wrapper .product-variants-item label {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  margin-bottom: 10px !important;
  display: block !important;
}

.tt-variants-wrapper .color {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: 3px solid transparent !important;
  transition: var(--transition) !important;
  position: relative;
}

.tt-variants-wrapper .color:hover {
  transform: scale(1.1);
}

.tt-variants-wrapper .color.selected {
  border-color: var(--dark) !important;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--dark) !important;
}

/* Hide the actual radio input, style the container as a button */
.tt-variants-wrapper .input-radio {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

.tt-variants-wrapper .product-variants-item ul {
  display: flex !important;
  gap: 8px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-wrap: wrap !important;
}

.tt-variants-wrapper .input-container {
  position: relative !important;
  float: none !important;
}

.tt-variants-wrapper .input-container .radio-label {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 60px !important;
  height: 44px !important;
  padding: 8px 16px !important;
  border: 2px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  background: #fff !important;
  margin-right: 4px !important;
  margin-bottom: 4px !important;
}

.tt-variants-wrapper .input-container .radio-label:hover {
  border-color: var(--coral) !important;
  color: var(--coral) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm) !important;
}

.tt-variants-wrapper .input-container .input-radio:checked+.radio-label {
  background: var(--coral) !important;
  border-color: var(--coral) !important;
  color: #fff !important;
}

/* Also handle the 'selected' class on the input */
.tt-variants-wrapper .input-container .input-radio.selected+.radio-label {
  background: var(--coral) !important;
  border-color: var(--coral) !important;
  color: #fff !important;
}

/* Style the variant label */
.tt-variants-wrapper .form-control-label {
  display: block !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  margin-bottom: 10px !important;
  display: block !important;
}

/* Handle out-of-stock variants */
.tt-variants-wrapper .attribute-not-in-stock .radio-label {
  opacity: 0.5 !important;
  text-decoration: line-through !important;
}

/* Purchase Row */
.tt-purchase-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  align-items: stretch;
}

.tt-quantity-selector {
  display: flex;
  align-items: center;
  border: 2px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  background: #fff;
}

.tt-qty-btn {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  border: none !important;
  cursor: pointer;
  color: var(--text) !important;
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition) !important;
}

.tt-qty-btn:hover {
  background: var(--bg-soft) !important;
  color: var(--coral) !important;
}

.tt-qty-input {
  width: 48px !important;
  height: 48px !important;
  text-align: center !important;
  border: none !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  color: var(--dark) !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.tt-qty-input::-webkit-outer-spin-button,
.tt-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Kill Warehouse bootstrap-touchspin injected on our qty input */
.tt-quantity-selector .bootstrap-touchspin,
.tt-quantity-selector .input-group.bootstrap-touchspin,
.tt-quantity-selector .input-group {
  display: contents !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  width: auto !important;
}

.tt-quantity-selector .bootstrap-touchspin .input-group-btn-vertical,
.tt-quantity-selector .input-group-btn-vertical {
  display: none !important;
}

.tt-quantity-selector .bootstrap-touchspin-prefix,
.tt-quantity-selector .bootstrap-touchspin-postfix,
.tt-quantity-selector .input-group-addon {
  display: none !important;
}

.tt-quantity-selector .input-group-add-cart,
.tt-product-page .input-group-add-cart {
  display: none !important;
}

.tt-quantity-selector input[name="qty"],
.tt-quantity-selector input.form-control,
.tt-quantity-selector input.tt-qty-input {
  width: 48px !important;
  height: 48px !important;
  text-align: center !important;
  border: none !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  color: var(--dark) !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
  border-radius: 0 !important;
  min-width: 0 !important;
  max-width: 48px !important;
  flex: none !important;
  outline: none !important;
}

.tt-btn-add-cart {
  flex: 1;
  background: var(--coral) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: var(--radius-sm) !important;
  border: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition) !important;
  padding: 14px 24px;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

/* Hide Warehouse injected icons in add-to-cart */
.tt-btn-add-cart i:not(.spinner-icon),
.tt-btn-add-cart .material-icons {
  display: none !important;
}

.tt-btn-add-cart:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow) !important;
}

.tt-btn-add-cart:active {
  transform: translateY(0);
}

.tt-btn-add-cart:disabled {
  background: #d1d5db !important;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.tt-btn-add-cart.added {
  background: var(--green) !important;
}

.tt-btn-add-cart svg {
  margin-right: 8px !important;
  width: 20px !important;
  height: 20px !important;
  stroke: currentColor !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.tt-btn-add-cart .spinner-icon {
  display: none;
  margin-right: 8px !important;
}

.tt-btn-add-cart.is-loading .spinner-icon {
  display: inline-block;
}

.tt-btn-add-cart.is-loading .tt-cart-label {
  display: none;
}

.tt-btn-add-cart.is-loading svg:first-child {
  display: none;
}

.tt-minimal-qty {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

/* Availability */
.tt-availability {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
}

.tt-availability-ok {
  color: var(--green) !important;
  background: #ecfdf5;
}

.tt-availability-ok svg {
  stroke: var(--green);
}

.tt-availability-warn {
  color: var(--gold) !important;
  background: #fffbeb;
}

.tt-availability-warn svg {
  stroke: var(--gold);
}

/* Trust Badges */
.tt-trust-badges {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px !important;
  /* Larger gaps like the screenshot */
  padding: 32px 0 0 !important;
  border-top: 1px solid var(--border-light) !important;
  margin-top: 32px !important;
}

.tt-trust-badge {
  display: flex !important;
  align-items: center !important;
  /* Vertically center icon with text */
  gap: 16px !important;
  /* Larger gap between icon and text */
  padding: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.tt-trust-badge svg {
  flex-shrink: 0 !important;
  width: 20px !important;
  height: 20px !important;
  color: #E85D5D !important;
  stroke: #E85D5D !important;
}

.tt-trust-badge strong {
  display: block !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #1A1A2E !important;
  line-height: 1.2 !important;
  margin-bottom: 2px !important;
}

.tt-trust-badge span {
  display: block !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 12px !important;
  color: #6B7280 !important;
  line-height: 1.4 !important;
}

/* ===== TABS SECTION ===== */
.tt-tabs-section {
  background: var(--bg-soft) !important;
  padding: 80px 0 !important;
  margin-top: 40px !important;
  border-top: 1px solid var(--border-light) !important;
}

.tt-tabs-section .tabs.product-tabs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tt-tabs-section .nav-tabs {
  border-bottom: 2px solid var(--border-light) !important;
  margin-bottom: 40px !important;
  display: flex !important;
  gap: 8px !important;
}

.tt-tabs-section .nav-tabs .nav-link {
  padding: 16px 32px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--text-light) !important;
  border: none !important;
  margin-bottom: -2px !important;
  transition: var(--transition) !important;
  background: none !important;
  position: relative !important;
}

.tt-tabs-section .nav-tabs .nav-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: var(--coral) !important;
  transform: scaleX(0) !important;
  transition: var(--transition) !important;
}

.tt-tabs-section .nav-tabs .nav-link:hover {
  color: var(--text) !important;
}

.tt-tabs-section .nav-tabs .nav-link.active {
  color: var(--coral) !important;
  background: none !important;
}

.tt-tabs-section .nav-tabs .nav-link.active::after {
  transform: scaleX(1) !important;
}

.tt-tabs-section .tab-content {
  padding: 40px 0 0 !important;
}

.tt-tabs-section .product-description {
  max-width: 100% !important;
  line-height: 1.8 !important;
  color: var(--text) !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 16px !important;
}

/* Support for mockup-style grid in description if HTML matches */
.tt-tabs-section .rte-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 40px !important;
}

.tt-tabs-section .rte-content>p {
  max-width: 800px !important;
}

.tt-tabs-section .rte-content img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: var(--radius-lg) !important;
}

/* Tab Description Grid matching mockup */
.tt-tabs-section .tab-description-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 60px !important;
  align-items: center !important;
}

.tt-tabs-section .tab-text h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin-bottom: 20px !important;
}

.tt-tabs-section .feature-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 30px 0 0 0 !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
}

.tt-tabs-section .feature-list li {
  display: flex !important;
  gap: 12px !important;
  align-items: flex-start !important;
}

.tt-tabs-section .feature-icon {
  width: 20px !important;
  height: 20px !important;
  background: var(--bg-warm) !important;
  color: var(--coral) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  flex-shrink: 0 !important;
}

.tt-tabs-section .feature-list li strong {
  display: block !important;
  font-size: 14px !important;
  color: var(--dark) !important;
  margin-bottom: 4px !important;
}

.tt-tabs-section .feature-list li p {
  font-size: 13px !important;
  color: var(--text-light) !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.tt-tabs-section .tab-image img {
  width: 100% !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow) !important;
}

@media (max-width: 991px) {
  .tt-tabs-section .tab-description-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .tt-tabs-section .feature-list {
    grid-template-columns: 1fr !important;
  }
}

/* Data sheet / Features table */
.tt-tabs-section .product-features {
  max-width: 800px !important;
  margin: 0 auto !important;
}

.tt-tabs-section .data-sheet {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-top: 20px !important;
  border-top: 1px solid var(--border-light) !important;
}

.tt-tabs-section .data-sheet dt.name,
.tt-tabs-section .data-sheet dt {
  flex: 0 0 50% !important;
  font-weight: 500 !important;
  color: var(--text-light) !important;
  font-size: 14px !important;
  padding: 16px 0 !important;
  border-bottom: 1px solid var(--border-light) !important;
  margin: 0 !important;
}

.tt-tabs-section .data-sheet dd.value,
.tt-tabs-section .data-sheet dd {
  flex: 0 0 50% !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 16px 0 !important;
  border-bottom: 1px solid var(--border-light) !important;
  text-align: right !important;
  margin: 0 !important;
}

@media (max-width: 768px) {

  .tt-tabs-section .data-sheet dt,
  .tt-tabs-section .data-sheet dd {
    flex: 0 0 100% !important;
    text-align: left !important;
    padding: 10px 0 !important;
  }

  .tt-tabs-section .data-sheet dt {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }
}

.tt-variants-wrapper .color {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 2px solid #fff !important;
  box-shadow: 0 0 0 1px var(--border) !important;
  transition: var(--transition) !important;
  position: relative !important;
  cursor: pointer !important;
}

.tt-variants-wrapper .color:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 0 0 1px var(--coral) !important;
}

.tt-variants-wrapper .input-container .input-color:checked+.color,
.tt-variants-wrapper .input-container .input-color.selected+.color {
  box-shadow: 0 0 0 2px var(--coral) !important;
}

.tt-tabs-section .product-details {
  padding: 0 !important;
}

.tt-tabs-section .product-manufacturer {
  margin-bottom: 30px !important;
  padding: 20px !important;
  background: #fff !important;
  border-radius: var(--radius) !important;
  border: 1px solid var(--border-light) !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

.tt-tabs-section .manufacturer-logo {
  max-height: 60px !important;
  width: auto !important;
}

.tt-tabs-section .product-description img {
  border-radius: var(--radius) !important;
  margin: 16px 0;
}

/* Shipping Grid in Tabs */
.tt-tabs-section .shipping-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 20px !important;
  margin-top: 20px !important;
}

.tt-tabs-section .shipping-card {
  background: #fff !important;
  padding: 24px !important;
  border-radius: var(--radius) !important;
  border: 1px solid var(--border-light) !important;
  text-align: center !important;
  transition: var(--transition) !important;
}

.tt-tabs-section .shipping-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow) !important;
  border-color: var(--coral-light) !important;
}

.tt-tabs-section .shipping-icon {
  margin-bottom: 16px !important;
  color: var(--coral) !important;
  display: flex !important;
  justify-content: center !important;
}

.tt-tabs-section .shipping-card h4 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin-bottom: 8px !important;
}

.tt-tabs-section .shipping-card p {
  font-size: 14px !important;
  color: var(--text-light) !important;
  margin-bottom: 12px !important;
}

.tt-tabs-section .shipping-price {
  font-weight: 700 !important;
  color: var(--coral) !important;
  font-size: 14px !important;
}

/* Reviews styling matching mockup */
.tt-tabs-section #product-infos-tabs-content #reviews,
.tt-tabs-section #product-infos-tabs-content .product-comments-list,
.tt-tabs-section #extra-0,
#iqit-reviews {
  padding: 0 !important;
  margin-top: 0 !important;
}

#iqit-reviews-top {
  margin-bottom: 30px !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid var(--border-light) !important;
}

#iqitreviews-snippet {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  color: var(--dark) !important;
}

#iqit-reviews .btn-primary {
  background: var(--coral) !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  font-family: 'Outfit', sans-serif !important;
  transition: var(--transition) !important;
}

#iqit-reviews .btn-primary:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-sm) !important;
}

.tt-tabs-section .reviews-summary {
  display: flex !important;
  gap: 60px !important;
  padding: 40px !important;
  background: #fff !important;
  border-radius: var(--radius-lg) !important;
  margin-bottom: 48px !important;
  border: 1px solid var(--border-light) !important;
  align-items: center !important;
}

.tt-tabs-section .reviews-score {
  text-align: center !important;
  min-width: 150px !important;
}

.tt-tabs-section .score-big {
  font-family: 'Outfit', sans-serif !important;
  font-size: 64px !important;
  font-weight: 800 !important;
  color: var(--dark) !important;
  line-height: 1 !important;
  margin-bottom: 10px !important;
  display: block !important;
}

.tt-tabs-section .score-stars {
  color: var(--gold) !important;
  font-size: 20px !important;
  margin-bottom: 8px !important;
}

.tt-tabs-section .score-count {
  display: block !important;
  font-size: 14px !important;
  color: var(--text-light) !important;
}

.tt-tabs-section .reviews-bars {
  flex-grow: 1 !important;
  max-width: 400px !important;
}

.tt-tabs-section .bar-row {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 10px !important;
  font-size: 13px !important;
  color: var(--text-light) !important;
}

.tt-tabs-section .bar-row:last-child {
  margin-bottom: 0 !important;
}

.tt-tabs-section .bar {
  flex-grow: 1 !important;
  height: 8px !important;
  background: var(--bg-soft) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.tt-tabs-section .bar-fill {
  height: 100% !important;
  background: var(--gold) !important;
  border-radius: 10px !important;
}

.tt-tabs-section .bar-row span:last-child {
  min-width: 25px !important;
  text-align: right !important;
}

/* Review Cards */
.tt-tabs-section .review-card {
  background: #fff !important;
  padding: 24px !important;
  border-radius: var(--radius) !important;
  border: 1px solid var(--border-light) !important;
  margin-bottom: 20px !important;
}

.tt-tabs-section .review-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
}

.tt-tabs-section .review-header img {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  margin: 0 !important;
}

.tt-tabs-section .review-header strong {
  font-weight: 700 !important;
  color: var(--dark) !important;
  display: block !important;
}

.tt-tabs-section .review-date {
  font-size: 12px !important;
  color: var(--text-light) !important;
}

.tt-tabs-section .review-stars {
  margin-left: auto !important;
  color: var(--gold) !important;
}

.tt-tabs-section .review-text {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--text) !important;
  font-style: italic !important;
}

.tt-tabs-section .review-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--green) !important;
  background: #ecfdf5 !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  margin-top: 12px !important;
}

/* ===== RELATED / ACCESSORIES ===== */
.tt-related-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  border-top: 1px solid var(--border-light);
}

.tt-section-header {
  margin-bottom: 40px;
  text-align: left;
}

.tt-section-header h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin-bottom: 8px !important;
}

.tt-section-header p {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px !important;
  color: var(--text-light) !important;
  margin: 0 !important;
}

.tt-related-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

.tt-related-grid .product-miniature {
  background: #fff !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  border: 1px solid var(--border-light) !important;
  transition: var(--transition) !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 0 !important;
  position: relative !important;
}

.tt-related-grid .product-miniature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg) !important;
  border-color: transparent !important;
}

/* Hide Warehouse miniature extras */
.tt-related-grid .product-miniature .product-flags,
.tt-related-grid .product-miniature .highlighted-informations,
.tt-related-grid .product-miniature .iqit-product-buttons,
.tt-related-grid .product-miniature .variant-links {
  display: none !important;
}

.tt-related-grid .thumbnail-container {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-soft);
  overflow: hidden;
  margin-bottom: 0 !important;
}

.tt-related-grid .product-thumbnail {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.tt-related-grid .product-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 20px !important;
  transition: transform .5s ease !important;
}

.tt-related-grid .product-description {
  padding: 16px !important;
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.tt-related-grid .product-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--dark) !important;
  margin-bottom: 8px !important;
  line-height: 1.4 !important;
  height: 2.8em !important;
  overflow: hidden !important;
  text-decoration: none !important;
}

.tt-related-grid .product-price-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: auto !important;
}

.tt-related-grid .price {
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--coral) !important;
}

.tt-related-grid .product-rating {
  font-size: 11px !important;
  color: var(--gold) !important;
}

.tt-related-grid .regular-price {
  font-size: 14px !important;
  color: var(--text-light) !important;
  text-decoration: line-through !important;
  margin-right: 4px !important;
}

.tt-related-grid .discount-percentage {
  background: var(--coral) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 2px 8px !important;
  border-radius: 12px !important;
}

/* responsive grid */
@media (max-width: 991px) {
  .tt-related-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 575px) {
  .tt-related-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== OVERRIDE WAREHOUSE DEFAULTS ===== */

/* Hide Warehouse injected elements we don't need */
.tt-product-page>.row,
.tt-product-page>.block.block-section,
.tt-product-page>.category-products,
.tt-product-page .category-products,
.tt-product-page #product-comments-list,
.tt-product-page #product-comments-list-footer,
#main-product-wrapper>.row,
#main-product-wrapper>.block.block-section:not(.tt-tabs-section),
#main-product-wrapper .category-products {
  display: none !important;
}

/* Keep our custom sections visible */
.tt-product-grid,
.tt-tabs-section,
.tt-related-section {
  display: grid !important;
}

.tt-tabs-section {
  display: block !important;
}

.tt-related-section {
  display: block !important;
}

/* Hide default Warehouse product cover if it appears */
.tt-product-page .product-cover:not(.tt-gallery-main .product-cover) {
  display: none !important;
}

/* Product flags in gallery */
.tt-gallery-main .product-flags {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tt-gallery-main .product-flag {
  background: var(--coral) !important;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

.tt-gallery-main .product-flag.on-sale,
.tt-gallery-main .product-flag.discount {
  background: #DC2626 !important;
}

/* PS form elements within our layout */
.tt-product-page .product-variants {
  margin-bottom: 16px !important;
}

/* Hide compare button and clean up additional info */
.tt-product-page .col-add-compare,
.tt-product-page .btn-iqitcompare-add,
.tt-product-page .js-iqitcompare-add {
  display: none !important;
}

/* Style the loyalty/reward block */
.tt-product-page .product-additional-info .loyalty-program,
.tt-product-page .product-additional-info .alert,
.tt-product-page .product-additional-info .reward_alert_message,
.tt-product-page .product-actions .alert,
.tt-product-page .reward_alert_message {
  background: var(--bg-warm) !important;
  border: 1px solid rgba(232, 93, 93, 0.1) !important;
  border-radius: var(--radius) !important;
  padding: 20px 24px !important;
  font-size: 14px !important;
  color: var(--text) !important;
  line-height: 1.55 !important;
  margin: 24px 0 !important;
  display: block !important;
  box-shadow: var(--shadow-sm);
}

.tt-product-page .reward_alert_message::before {
  content: '🎁' !important;
  font-size: 26px !important;
  margin-right: 12px !important;
  vertical-align: middle !important;
}

.tt-product-page .reward_alert_message b,
.tt-product-page .reward_alert_message strong {
  font-weight: 800 !important;
  color: #1f2937 !important;
}

.tt-product-page .reward_alert_message #loyalty_credits,
.tt-product-page .reward_alert_message #total_loyalty_credits {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #1f2937 !important;
}

.tt-product-page .reward_alert_message {
  white-space: normal !important;
}

/* Style the availability message below purchase row */
.tt-product-page .product-additional-info .product-availability {
  font-size: 13px !important;
  color: var(--text-light) !important;
}

.tt-product-page .product-discounts {
  margin-bottom: 12px !important;
}

.tt-product-page .product-additional-info {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-light);
}

.tt-product-page .product-additional-info .social-sharing {
  display: none !important;
}

/* Hide the delivery/pickup info lines from Warehouse */
.tt-product-page .product-additional-info .product-delivery,
.tt-product-page .product-additional-info .product-ship {
  font-size: 13px !important;
  color: var(--text-light) !important;
  margin: 4px 0 !important;
}

/* Style the Détails button */
.tt-product-page .product-additional-info .btn {
  font-size: 12px !important;
  padding: 2px 8px !important;
  border-radius: 4px !important;
  border: 1px solid var(--border) !important;
  background: transparent !important;
  color: var(--text) !important;
}

/* Availability badge with background */
.tt-availability {
  display: none !important;
}

.tt-availability-ok {
  display: none !important;
}

.tt-availability-ok svg {
  display: none !important;
}

.tt-availability-warn {
  display: none !important;
}

.tt-availability-warn svg {
  display: none !important;
}

/* Scroll animation classes */
.tt-animate {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}

.tt-animate.tt-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FOOTER ===== */
.twotails-footer {
  background: var(--dark) !important;
  color: rgba(255, 255, 255, .7) !important;
  padding: 60px 0 0 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.twotails-footer .footer-main {
  padding-bottom: 40px !important;
}

.twotails-footer .footer-logo {
  display: inline-block !important;
  margin-bottom: 20px !important;
  text-decoration: none !important;
}

.twotails-footer .logo-text {
  font-family: 'Outfit', sans-serif !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -0.5px !important;
}

.twotails-footer .footer-tagline {
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.twotails-footer .footer-social {
  display: flex !important;
  gap: 12px !important;
}

.twotails-footer .footer-social a {
  width: 36px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  transition: var(--transition) !important;
  text-decoration: none !important;
}

.twotails-footer .footer-social a:hover {
  background: var(--coral) !important;
  transform: translateY(-3px) !important;
}

.twotails-footer .footer-title {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.twotails-footer .footer-links ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.twotails-footer .footer-links li {
  margin-bottom: 12px !important;
}

.twotails-footer .footer-links a {
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  transition: var(--transition) !important;
}

.twotails-footer .footer-links a:hover {
  color: var(--coral) !important;
  padding-left: 4px !important;
}

.twotails-footer .footer-newsletter p {
  font-size: 14px !important;
  margin-bottom: 20px !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.twotails-footer .newsletter-form .ps-emailsubscription-block {
  margin-top: 15px !important;
}

.twotails-footer .newsletter-input-group {
  display: flex !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: var(--radius-sm) !important;
  padding: 4px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.twotails-footer .input-subscription {
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  padding: 10px 15px !important;
  font-size: 14px !important;
  width: 100% !important;
  height: auto !important;
  box-shadow: none !important;
}

.twotails-footer .input-subscription::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

.twotails-footer .btn-subscribe {
  background: var(--coral) !important;
  border: none !important;
  color: #fff !important;
  padding: 0 20px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 18px !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 40px !important;
  min-width: 50px !important;
}

.twotails-footer .btn-subscribe:hover {
  background: var(--coral-dark) !important;
  transform: scale(1.05) !important;
}

.twotails-footer .footer-payment {
  background: rgba(0, 0, 0, 0.2) !important;
  padding: 30px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.twotails-footer .payment-icons {
  display: flex !important;
  justify-content: center !important;
  gap: 30px !important;
  opacity: 0.5 !important;
  flex-wrap: wrap !important;
}

.twotails-footer .payment-icons img {
  height: 22px !important;
  filter: brightness(0) invert(1) !important;
  transition: opacity 0.3s ease !important;
}

.twotails-footer .payment-icons img:hover {
  opacity: 1 !important;
}

.twotails-footer .footer-bottom {
  padding: 20px 0 !important;
  background: rgba(0, 0, 0, 0.3) !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.3) !important;
}

.twotails-footer .footer-bottom-content {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
}

.twotails-footer .footer-legal {
  display: flex !important;
  gap: 25px !important;
}

.twotails-footer .footer-legal a {
  color: rgba(255, 255, 255, 0.3) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.twotails-footer .footer-legal a:hover {
  color: #fff !important;
}

/* responsive footer */
@media (max-width: 768px) {
  .twotails-footer {
    padding-top: 40px !important;
    text-align: center !important;
  }

  .twotails-footer .footer-brand,
  .twotails-footer .footer-links,
  .twotails-footer .footer-newsletter {
    margin-bottom: 40px !important;
  }

  .twotails-footer .footer-social {
    justify-content: center !important;
  }

  .twotails-footer .footer-title {
    justify-content: center !important;
  }

  .twotails-footer .footer-bottom-content {
    flex-direction: column !important;
    text-align: center !important;
  }

  .twotails-footer .footer-legal {
    justify-content: center !important;
    width: 100% !important;
  }
}

/* ===== PRODUCT CARDS (Miniatures) ===== */
.tt-product-card__image {
  position: relative !important;
  background: var(--bg-soft) !important;
  aspect-ratio: 1 !important;
  overflow: hidden !important;
}

.tt-product-card__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 20px !important;
  transition: transform 0.5s ease !important;
}

.product-miniature:hover .tt-product-card__img {
  transform: scale(1.05) !important;
}

.tt-product-card__badges {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  z-index: 2 !important;
}

.tt-product-card__badge {
  background: var(--coral) !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  text-transform: uppercase !important;
}

.tt-product-card__badge--discount {
  background: #DC2626 !important;
}

.tt-product-card__content {
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.tt-product-card__brand {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: var(--coral) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 6px !important;
}

.tt-product-card__title {
  margin: 0 0 12px 0 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  height: 2.8em !important;
  overflow: hidden !important;
}

.tt-product-card__title a {
  color: var(--dark) !important;
  text-decoration: none !important;
}

.tt-product-card__price-row {
  margin-top: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 12px !important;
  gap: 8px !important;
}

.tt-product-card__price {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 0 !important;
}

.tt-product-card__rating {
  font-size: 12px !important;
  color: var(--gold) !important;
}

.tt-product-card__rating .star-content {
  color: var(--gold) !important;
}

.tt-product-card__rating .star {
  margin: 0 1px !important;
}

.tt-product-card__price-current {
  font-family: 'Outfit', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--coral) !important;
}

.tt-product-card__price-old {
  font-size: 13px !important;
  color: var(--text-light) !important;
  text-decoration: line-through !important;
}

.tt-product-card__btn {
  background: var(--coral) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 14px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-family: 'Outfit', sans-serif !important;
}

.tt-product-card__btn:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-sm) !important;
}

.tt-product-card__btn:disabled {
  background: #d1d5db !important;
  cursor: not-allowed !important;
}

/* ===== TOAST ===== */
.tt-toast {
  position: fixed !important;
  bottom: 32px !important;
  right: 32px !important;
  background: var(--green) !important;
  color: #fff !important;
  padding: 16px 28px !important;
  border-radius: var(--radius) !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(100px) !important;
  opacity: 0 !important;
  transition: var(--transition) !important;
  z-index: 9999 !important;
  pointer-events: none !important;
}

.tt-toast.show {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.tt-toast::before {
  content: '✓' !important;
  font-size: 18px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  width: 24px !important;
  height: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tt-product-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .tt-gallery {
    position: static !important;
  }
}

@media (max-width: 768px) {
  .tt-product-grid {
    padding: 20px 16px 32px !important;
  }

  .tt-product-title {
    font-size: 24px !important;
  }

  .tt-price-block .current-price-value,
  .tt-price-block .product-price {
    font-size: 26px !important;
  }

  .tt-trust-badges {
    grid-template-columns: 1fr !important;
  }

  .tt-gallery-thumbs {
    gap: 8px !important;
  }

  .tt-thumb {
    width: 64px !important;
    height: 64px !important;
  }

  .tt-tabs-section {
    padding: 40px 0 !important;
  }

  .tt-related-section {
    padding: 40px 16px !important;
  }

  .tt-tabs-section .nav-tabs {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 4px !important;
    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none !important;
    /* IE/Edge */
  }

  .tt-tabs-section .nav-tabs::-webkit-scrollbar {
    display: none !important;
    /* Chrome/Safari */
  }

  .tt-tabs-section .nav-tabs .nav-link {
    white-space: nowrap !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .tt-purchase-row {
    flex-direction: column !important;
  }

  .tt-btn-add-cart {
    width: 100% !important;
    padding: 16px !important;
    font-size: 15px !important;
  }

  .tt-quantity-selector {
    width: 100% !important;
    justify-content: space-between !important;
  }

  .tt-qty-btn {
    width: 60px !important;
  }

  .tt-qty-input {
    flex-grow: 1 !important;
    max-width: none !important;
  }
}

/* Crisp Chat Widget Offset */
.crisp-client,
#crisp-chat-box {
  bottom: 24px !important;
}

@media (max-width: 768px) {

  .crisp-client,
  #crisp-chat-box {
    bottom: 90px !important;
  }
}

/* ===== HIDE ELEMENTOR ELEMENTS IN PRODUCT MINIATURES ===== */
/* Creative Elements (Elementor for PrestaShop) pollutes related products section */
.tt-related-section .elementor,
.tt-related-section .elementor-element,
.tt-related-section [data-elementor-type],
.tt-related-section .elementor-widget,
.tt-related-section .elementor-section-wrap,
.tt-related-section .ce-product-name,
.tt-related-section .ce-product-image,
.tt-related-section .ce-product-prices {
  display: none !important;
}

/* Force our custom miniatures to show */
.tt-related-section .tt-product-card {
  display: flex !important;
}

/* ===== HIDE OCS STOCK INFO MODULE ===== */
/* One Click Stock Info module - not in our design */
.product_stock_info,
#ocs_btn_open_modal,
.ocs_btn_open_modal,
#product_stock_info_popup,
.ocs_stock_info_available,
.ocs_stock_info_not_available,
[class*="ocs_stock"],
[id*="ocs_"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Hide any residual Warehouse elements in product info */
.tt-product-info .product-reference,
.tt-product-info .product-categories,
.tt-product-info .product-manufacturer,
.tt-product-info .tax-label,
.tt-product-info .product-price-tax,
.tt-product-info .product-ean,
.tt-product-info .product-isbn,
.tt-product-info .product-upc,
.tt-product-info .product-mpn {
  display: none !important;
}

/* ===== HIDE DEFAULT PRODUCT DISCOUNTS SECTION ===== */
.product-discounts.js-product-discounts,
.product-discounts.mb-3 {
  display: none !important;
}

/* ===== FIX: Price block padding specificity ===== */
#main .tt-product-page .tt-price-block,
.tt-product-page .tt-product-info .tt-price-block,
.js-product-container .tt-price-block,
section#main .tt-price-block.js-product-prices,
.tt-product-info>.tt-price-block {
  padding: 24px 28px !important;
  background: #FFF8F6 !important;
  border-radius: 12px !important;
  border: 1px solid rgba(232, 93, 93, 0.08) !important;
  margin-bottom: 32px !important;
}

/* ===== FIX: Color dropdown (select) styling ===== */
.tt-product-info .tt-variants-wrapper .custom-select2 select,
.tt-product-info .tt-variants-wrapper select.form-control.form-control-select,
.tt-product-info .product-variants-item select#group_3,
.tt-product-page .product-variants select.form-control-select,
.tt-product-page select.form-control.form-control-select {
  width: 100% !important;
  max-width: 220px !important;
  height: 44px !important;
  padding: 8px 16px !important;
  border: 2px solid #E5E7EB !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #374151 !important;
  background-color: #fff !important;
  cursor: pointer !important;
  transition: .25s cubic-bezier(.4, 0, .2, 1) !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 36px !important;
  box-shadow: none !important;
  outline: none !important;
}

.tt-product-page select.form-control-select:hover,
.tt-product-page select.form-control-select:focus {
  border-color: #E85D5D !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(232, 93, 93, 0.1) !important;
}

.tt-product-info .tt-variants-wrapper .custom-select2 {
  position: relative !important;
  display: inline-block !important;
}

.tt-product-info .tt-variants-wrapper .custom-select2::after {
  display: none !important;
}

/* ===== HIDE ELEMENTOR ELEMENTS ONLY ON PRODUCT PAGE ===== */
/* Scoped to .tt-product-page to avoid breaking other pages */
.tt-product-page .category-products .elementor,
.tt-product-page .category-products [data-elementor-type],
.tt-product-page .category-products [data-elementor-id] {
  display: none !important;
}

/* ===== RELATED PRODUCTS (MATCH index.html) ===== */
.tt-product-page .tt-related-section {
  padding: 60px 0 !important;
}

.tt-product-page .tt-related-section .tt-related-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

.tt-product-page .tt-related-section .product-miniature {
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid var(--border-light) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: var(--transition) !important;
  height: 100% !important;
}

.tt-product-page .tt-related-section .product-miniature:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-lg) !important;
  border-color: transparent !important;
}

.tt-product-page .tt-related-section .tt-product-card__image {
  aspect-ratio: 1 !important;
  background: var(--bg-soft) !important;
}

.tt-product-page .tt-related-section .tt-product-card__img {
  object-fit: cover !important;
  padding: 0 !important;
}

.tt-product-page .tt-related-section .tt-product-card__content {
  padding: 16px !important;
}

.tt-product-page .tt-related-section .tt-product-card__brand {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--coral) !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
}

.tt-product-page .tt-related-section .tt-product-card__title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--dark) !important;
  height: auto !important;
  margin: 6px 0 12px 0 !important;
}

.tt-product-page .tt-related-section .tt-product-card__price-row {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  justify-content: space-between !important;
}

.tt-product-page .tt-related-section .tt-product-card__price-current {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--coral) !important;
}

.tt-product-page .tt-related-section .tt-product-card__price-old {
  font-size: 13px !important;
  color: var(--text-light) !important;
  text-decoration: line-through !important;
}

.tt-product-page .tt-related-section .tt-product-card__rating {
  font-size: 12px !important;
  color: var(--gold) !important;
}

/* Mockup related cards do not show an add-to-cart button */
.tt-product-page .tt-related-section .tt-product-card__form,
.tt-product-page .tt-related-section .tt-product-card__btn {
  display: none !important;
}

@media (max-width: 1024px) {
  .tt-product-page .tt-related-section .tt-related-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .tt-product-page .tt-related-section .tt-related-grid {
    grid-template-columns: 1fr !important;
  }
}