/*
================================================================
  Click Bhrosa - Pixel-Accurate Frontend Stylesheet
  Theme: Blusho / Blusho Child Recreation
  Font: League Spartan
  Technologies: HTML5, CSS3, Bootstrap 5, Vanilla JS
================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  --rt-primary-color: #000000;
  --rt-secondary-color: #97cbf8;
  --rt-body-color: #4b4b4b;
  --rt-body-bg-color: #ffffff;
  --rt-border-color: #ebebeb;
  --rt-heading-color: #111111;
  --rt-meta-color: #75766e;
  --rt-meta-color2: #b2b2b2;
  --rt-button-color: #ffffff;
  --rt-button-text-color: #111111;
  --rt-button-bg-color: #97cbf8;
  --rt-white-bg-color: #ffffff;
  --rt-gray-color: #f2f3f0;
  --rt-black-bg-color: #111111;
  --rt-font-family: 'League Spartan', sans-serif;
  --rt-container-width: 1314px;
}

/* -------------------------------------------------------------
   1. BASE RESETS & TYPOGRAPHY
------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--rt-font-family);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--rt-body-color);
  background-color: var(--rt-body-bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--rt-font-family);
  color: var(--rt-heading-color);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--rt-heading-color);
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
}

.custom-container {
  width: 100%;
  max-width: var(--rt-container-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  
}

/* -------------------------------------------------------------
   2. TOP ANNOUNCEMENT MARQUEE BAR
------------------------------------------------------------- */
.top-announcement-bar {
  background-color: var(--rt-secondary-color);
  color: #ffffff;
  padding: 3px 0;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.top-announcement-bar:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  text-transform: capitalize;
}

.marquee-item svg,
.marquee-item i {
  color: #ffffff;
  font-size: 9px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* -------------------------------------------------------------
   3. SITE HEADER & NAVIGATION
------------------------------------------------------------- */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 990;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--rt-border-color);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.site-logo img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-navigation ul li a {
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  color: var(--rt-heading-color);
  position: relative;
  padding: 6px 0;
  display: inline-block;
}

.main-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--rt-heading-color);
  transition: width 0.3s ease;
}

.main-navigation ul li a:hover::after,
.main-navigation ul li.active a::after {
  width: 100%;
}

.main-navigation ul li.active a {
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}

.header-action-btn {
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--rt-heading-color);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.header-action-btn {
    transition: transform 0.3s ease;
}

.header-action-btn:hover {
    transform: scale(1.2);
}
.cart-count-badge,
.wishlist-count-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: var(--rt-black-bg-color);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--rt-heading-color);
  cursor: pointer;
}

/* -------------------------------------------------------------
   4. OFFCANVAS MOBILE DRAWER & SEARCH MODAL
------------------------------------------------------------- */
.offcanvas-backdrop-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.offcanvas-backdrop-custom.show {
  opacity: 1;
  visibility: visible;
}

.blusho-offcanvas-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 30px 25px;
}

.blusho-offcanvas-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rt-border-color);
  margin-bottom: 25px;
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #111;
  line-height: 1;
}

.drawer-nav-menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.drawer-nav-menu ul li a {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #f4f4f4;
}

.drawer-about-box {
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--rt-border-color);
}

.drawer-about-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.drawer-about-box p {
  font-size: 15px;
  line-height: 22px;
  color: var(--rt-meta-color);
  margin-bottom: 20px;
}

.drawer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--rt-heading-color);
  margin-bottom: 12px;
}

.drawer-contact-item i {
  color: var(--rt-meta-color);
  font-size: 16px;
  width: 20px;
}

.drawer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.drawer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--rt-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 14px;
}

.drawer-social-links a:hover {
  background-color: var(--rt-secondary-color);
  border-color: var(--rt-secondary-color);
}

/* Search Modal Overlay */
.search-overlay-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1060;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 80px 20px 40px;
  overflow-y: auto;
}

.search-overlay-modal.open {
  opacity: 1;
  visibility: visible;
}

.search-overlay-box {
  width: 100%;
  max-width: 760px;
  position: relative;
  animation: searchSlideDown 0.35s ease-out;
}

@keyframes searchSlideDown {
  from {
    transform: translateY(-20px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.search-close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-close-btn:hover {
  background: #ffffff;
  color: #111827;
  transform: rotate(90deg);
}

.search-input-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 8px 16px 8px 20px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.search-input-group:focus-within {
  border-color: var(--brand-primary, #0d9488);
  box-shadow: 0 20px 40px -15px rgba(13, 148, 136, 0.4);
}

.search-input-icon {
  font-size: 22px;
  color: #94a3b8;
  margin-right: 12px;
}

/* Inline Header Search Bar */
.header-search-bar-wrap {
  position: relative;
  width: 280px;
  margin: 0 10px;
  transition: width 0.3s ease;
}

@media (min-width: 1200px) {
  .header-search-bar-wrap {
    width: 320px;
  }
}

@media (min-width: 1400px) {
  .header-search-bar-wrap {
    width: 360px;
  }
}

.header-inline-search-form {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 9999px;
  padding: 4px 6px 4px 14px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-inline-search-form:focus-within {
  background: #ffffff;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15), 0 4px 16px rgba(0, 0, 0, 0.05);
}

.header-search-icon {
  font-size: 15px;
  color: #64748b;
  margin-right: 8px;
  pointer-events: none;
  transition: color 0.2s;
}

.header-inline-search-form:focus-within .header-search-icon {
  color: #0d9488;
}

.header-inline-search-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  padding: 4px 0;
  font-family: inherit;
}

.header-inline-search-input::placeholder {
  color: #94a3b8;
  font-size: 13.5px;
  font-weight: 400;
}

.header-search-clear-btn {
  background: #e2e8f0;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #64748b;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 4px;
  flex-shrink: 0;
  transition: all 0.2s;
}

.header-search-clear-btn:hover {
  background: #cbd5e1;
  color: #0f172a;
}

.header-search-submit-btn {
  background: #0d9488;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.header-search-submit-btn:hover {
  background: #0f766e;
  transform: scale(1.05);
}

/* Header Live Search Dropdown Panel */
.header-search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 380px;
  max-width: 90vw;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15), 0 0 1px 1px rgba(0, 0, 0, 0.04);
  z-index: 1060;
  overflow: hidden;
  animation: searchDropdownFade 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes searchDropdownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Search Dropdown */
.mobile-search-dropdown {
  position: relative;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  z-index: 10;
  overflow: hidden;
}

.header-search-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: #1e293b;
  background: transparent;
  padding: 8px 0;
}

.header-search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
  font-size: 16px;
}

.search-input-clear-btn {
  background: #f1f5f9;
  border: none;
  color: #64748b;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  margin-right: 8px;
  transition: all 0.2s;
}

.search-input-clear-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.search-input-submit-btn {
  background: var(--brand-primary, #0d9488);
  border: none;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.search-input-submit-btn:hover {
  background: var(--brand-primary-hover, #0f766e);
  transform: translateX(2px);
}

/* Quick Search Tags */
.search-quick-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 4px;
}

.search-tag-chip {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.search-tag-chip:hover {
  background: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
}

/* Live Search Suggestions Panel */
.search-suggestions-panel {
  background: #ffffff;
  margin-top: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  max-height: 460px;
  display: flex;
  flex-direction: column;
}

.search-results-list {
  overflow-y: auto;
  max-height: 380px;
}

.search-suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s ease;
}

.search-suggestion-item:last-child {
  border-bottom: none;
}

.search-suggestion-item:hover,
.search-suggestion-item.active {
  background-color: #f0fdfa;
  color: inherit;
}

.search-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.search-item-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
  background: #f8fafc;
}

.search-item-info {
  min-width: 0;
}

.search-item-title {
  font-weight: 600;
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

@media (min-width: 768px) {
  .search-item-title {
    max-width: 240px;
  }
}

.search-item-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #64748b;
}

.search-item-category {
  background: #f1f5f9;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
  color: #475569;
}

.search-item-price {
  text-align: right;
  flex-shrink: 0;
  padding-left: 10px;
}

.search-price-main {
  font-weight: 700;
  color: #0d9488;
  font-size: 14px;
}

.search-price-old {
  font-size: 11.5px;
  text-decoration: line-through;
  color: #94a3b8;
  display: block;
}

.search-results-footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 10px 16px;
  text-align: center;
}

.btn-view-all-search {
  color: var(--brand-primary, #0d9488);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}

.btn-view-all-search:hover {
  color: var(--brand-primary-hover, #0f766e);
  text-decoration: underline;
}

/* -------------------------------------------------------------
   5. CART SLIDE-OUT DRAWER (MINI-CART)
------------------------------------------------------------- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: #ffffff;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-drawer.open {
  transform: translateX(0);
}

.mini-cart-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--rt-border-color);
}

.mini-cart-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-cart-title .title {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
}

.mini-cart-title .cart-count {
  background-color: #5c6c49;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.rtsb-clear-cart {
  background: none;
  border: none;
  font-size: 14px;
  color: #777777;
  text-decoration: underline;
  margin-left: 10px;
  cursor: pointer;
  padding: 0;
}

.rtsb-clear-cart:hover {
  color: #dc3545;
}

.woocommerce-mini-cart-list-wrapper {
  flex: 1;
  overflow-y: auto;
}

.woocommerce-mini-cart {
  list-style: none;
  padding: 20px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.woocommerce-mini-cart-item {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 20px;
}

.woocommerce-mini-cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.single-product-wrapper {
  display: flex;
  gap: 16px;
  position: relative;
}

.single-product-wrapper .thumb-wrapper {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
}

.single-product-wrapper .thumb-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.single-product-wrapper .details-wrapper {
  flex: 1;
  min-width: 0;
}

.single-product-wrapper .product-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  padding-right: 32px;
}

.single-product-wrapper .product-title a {
  color: #111111;
  text-decoration: none;
  transition: color 0.2s;
}

.single-product-wrapper .product-title a:hover {
  color: var(--rt-secondary-color);
}

.single-product-wrapper .variation {
  display: flex;
  gap: 6px;
  font-size: 13.5px;
  color: #666666;
  margin: 0 0 12px;
}

.single-product-wrapper .variation dt {
  font-weight: 700;
  color: #222222;
}

.single-product-wrapper .variation dd {
  margin: 0;
}

.single-product-wrapper .variation dd p {
  margin: 0;
}

.rtsb-minicart-quantity-subtotal-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rtsb-product-quantity-wrap {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background: #ffffff;
}

.rtsb-product-quantity-wrap button {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.rtsb-product-quantity-wrap .quantity input {
  width: 34px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  outline: none;
  background: transparent;
  padding: 0;
}

.single-product-wrapper .product-subtotal {
  font-size: 17px;
  font-weight: 700;
  color: #111111;
}

.single-product-wrapper .remove_from_cart_button {
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  border-radius: 4px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.single-product-wrapper .remove_from_cart_button:hover {
  border-color: #ff4d4f;
  background-color: #fff1f0;
}

.mini-cart-bottom {
  border-top: 1px solid var(--rt-border-color);
  padding: 20px 24px;
  background: #ffffff;
}

.rtsb-apply-coupon-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #333333;
  margin-bottom: 16px;
  cursor: pointer;
}

.rtsb-mini-coupon-form-main {
  margin-bottom: 16px;
}

#rtsb-mini-coupon-form {
  display: flex;
  gap: 8px;
}

#rtsb-mini-coupon-form input {
  flex: 1;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  padding: 9px 12px;
  font-size: 14px;
  outline: none;
}

#rtsb-mini-coupon-form button {
  background-color: #111111;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 9px 18px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: background-color 0.2s;
}

#rtsb-mini-coupon-form button:hover {
  background-color: #333333;
}

.cart_totals table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}

.cart_totals th {
  font-size: 15.5px;
  font-weight: 600;
  color: #111111;
  padding: 6px 0;
  border: none;
}

.cart_totals td {
  font-size: 15.5px;
  color: #111111;
  padding: 6px 0;
  border: none;
}

.cart_totals .order-total strong {
  font-size: 18px;
  font-weight: 700;
}

.includes_tax {
  font-size: 13px;
  color: #777777;
  margin-top: 3px;
}

.woocommerce-mini-cart__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
}

.woocommerce-mini-cart__buttons .button.wc-forward {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border: 1px solid #d0d0d0;
  background-color: #ffffff;
  color: #111111;
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.woocommerce-mini-cart__buttons .button.wc-forward:hover {
  border-color: #111111;
  background-color: #f7f7f7;
}

.woocommerce-mini-cart__buttons .button.checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  background-color: #65734e;
  color: #ffffff;
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
}

.woocommerce-mini-cart__buttons .button.checkout:hover {
  background-color: #515c3e;
}

.empty-cart-msg {
  text-align: center;
  padding: 60px 20px;
  color: var(--rt-meta-color);
}

.empty-cart-msg i {
  font-size: 48px;
  color: var(--rt-meta-color2);
  margin-bottom: 15px;
  display: block;
}

/* -------------------------------------------------------------
   6. HERO BANNER SLIDER
------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  background-color: #8bb1cb;
}

.hero-slide-item {
  min-height: 640px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-slide-bg-1 {
  background-image: url('../images/banners/4-short.jpg');
}

.hero-slide-bg-2 {
  background-image: url('../images/banners/image-13.jpg');
}

.hero-slide-content {
  max-width: 540px;
  z-index: 5;
  padding: 40px 0;
}

.hero-subtitle {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #111111;
  margin-bottom: 18px;
  display: block;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.14;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.btn-shop-now-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  background-color: #000000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-shop-now-black:hover {
  background-color: #2b2b2b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.hero-carousel-nav-group {
  position: absolute;
  bottom: 100px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 30;
}

.hero-nav-btn-box {
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.hero-nav-btn-box:hover {
  background-color: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* -------------------------------------------------------------
   7. CATEGORIES SECTION ("Shop by Categories")
------------------------------------------------------------- */
.categories-inline-section {
  padding: 60px 0 50px;
  background-color: #ffffff;
}

.categories-inline-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 25px;
}

.category-inline-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.25s ease;
  text-decoration: none;
}

.category-inline-item:hover {
  transform: translateY(-3px);
}

.category-inline-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--rt-gray-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-inline-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-inline-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #111111;
  transition: color 0.2s ease;
}

.category-inline-item:hover .category-inline-name {
  color: #666;
}

.category-star-sep {
  display: inline-flex;
  align-items: center;
  color: #111111;
  font-size: 10px;
}

@media (max-width: 768px) {
  .categories-inline-list {
    gap: 16px 20px;
  }
  .category-inline-name {
    font-size: 14px;
  }
  .category-inline-thumb {
    width: 38px;
    height: 38px;
  }
}

/* -------------------------------------------------------------
   8. PRODUCT CARDS & GRID
------------------------------------------------------------- */
.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 35px;
}

.see-all-link {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 2px solid #111;
}

.see-all-link:hover {
  color: var(--rt-button-bg-color);
  border-color: var(--rt-button-bg-color);
}

.product-card {
  background: #ffffff;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.product-thumb-container {
  position: relative;
  background-color: #d3e8fc;
  border-radius: 6px;
  overflow: hidden;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  margin-bottom: 16px;
}

.product-thumb-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
  transition: transform 0.4s ease;
}

.product-card:hover .product-thumb-container img {
  transform: scale(1.05);
}

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
}

.badge-sale {
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

.product-floating-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 6;
}

.product-card:hover .product-floating-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-icon-btn {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 14px;
  color: #111;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.action-icon-btn:hover {
  background-color: var(--rt-secondary-color);
  color: #111;
}

.product-card-body {
  padding: 0 5px;
}

.product-category-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--rt-meta-color);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.product-title {
  font-size: 17px;
  font-weight: 100;
  line-height: 24px;
  color: var(--rt-heading-color);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-title a:hover {
  color: #666;
}

.star-rating-wrap {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #fcb900;
  font-size: 13px;
  margin-bottom: 8px;
}

.product-price-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--rt-heading-color);
  margin-bottom: 12px;
}

.product-price-box .old-price {
  font-size: 15px;
  font-weight: 400;
  color: var(--rt-meta-color2);
  text-decoration: line-through;
}

.btn-card-add-to-cart {
  width: 100%;
  padding: 10px;
  background-color: transparent;
  border: 1px solid var(--rt-border-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--rt-heading-color);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-card-add-to-cart:hover {
  background-color: #111111;
  border-color: #111111;
  color: #ffffff;
}

/* -------------------------------------------------------------
   9. HURRY UP! COUNTDOWN DEAL SECTION (100% Matched to Reference)
------------------------------------------------------------- */
.hurry-up-deal-section {
  width: 100%;
  position: relative;
  background: linear-gradient(to right, #6d93a8 0%, #6d93a8 58%, #f0f1ee 58%, #f0f1ee 100%);
  padding: 60px 0 70px;
  overflow: hidden;
}

.hurry-up-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.hurry-up-bottle-col {
  flex: 0 0 465px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hurry-up-bottle-col img{
  height: 480px;
  margin-left: -300px;
  
  object-fit: contain;
}


.hurry-up-main-col {
  flex: 1;
  min-width: 0;
}

.hurry-up-top-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 0 10px;
  flex-wrap: wrap;
  gap: 15px;
}

.hurry-up-outlined-title {
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 2px;
  color: transparent;
  -webkit-text-stroke: 1.5px #444444;
  text-transform: uppercase;
  margin-left: 70px;
  font-family: var(--font-family);
}

.hurry-up-countdown-group {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  top: -20px;
  left: -40px;
}

.hurry-up-count-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 45px;
}

.hurry-up-count-num {
  font-size: 32px;
  font-weight: 800;
  color: #111111;
  line-height: 1;
}

.hurry-up-count-label {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.hurry-up-count-colon {
  font-size: 24px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 12px;
}

.hurry-up-products-card {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 40px 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  width: 900px;
  height: 420px;
  position: relative;
  left: -120px;
  display: flex;
  align-items: center;
}

.hurry-up-products-card .row {
  width: 100%;
  height: 100%;
  align-content: center;
  row-gap: 30px;
}

.hurry-product-item {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hurry-product-thumb-box {
  width: 105px;
  height: 105px;
  background-color: #eff6fc;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.hurry-product-thumb-box:hover {
  transform: translateY(-2px);
}

.hurry-product-thumb-box img {
  max-height: 85px;
  max-width: 85px;
  object-fit: contain;
}

.hurry-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.hurry-product-cat {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: #75766e;
  letter-spacing: 0.6px;
}

.hurry-product-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
}

.hurry-product-name a {
  color: #111111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hurry-product-name a:hover {
  color: var(--rt-secondary-color);
}

.hurry-product-price {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin-top: 3px;
}

@media (max-width: 991px) {
  .hurry-up-deal-section {
    background: #f0f1ee;
    padding: 40px 0;
  }
  .hurry-up-bottle-col {
    display: none;
  }
  .hurry-up-products-card {
    padding: 25px;
  }
  .hurry-up-outlined-title {
    font-size: 40px;
  }
}

/* -------------------------------------------------------------
   10. MARQUEE TEXT TICKER WITH THUMBNAILS
------------------------------------------------------------- */
.marquee-ticker-section {
  background-color: #ffffff;
  padding: 80px 0;
  border-top: 1px solid var(--rt-border-color);
  border-bottom: 1px solid var(--rt-border-color);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-ticker-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
}

.marquee-ticker-section:hover .marquee-ticker-track {
  animation-play-state: paused;
}

.marquee-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  margin-right: 40px;
  font-size: 28px;
  font-weight: 600;
  color: var(--rt-heading-color);
  text-transform: uppercase;
}
.marquee-ticker-item img{
  width: 50px;
  height: 50px;
  border-radius: 10%;
  object-fit: cover;
}

.marquee-thumb {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
}

/* -------------------------------------------------------------
   11. "MASTERING THE ART OF PREMIUM QUALITY" SHOWCASE
------------------------------------------------------------- */
.mastering-quality-section {
  background-color: #97cbf8;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.quality-deco-leaf {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 280px;
  pointer-events: none;
  z-index: 1;
}

.quality-deco-leaf img {
  width: 100%;
  height: auto;
  display: block;
}

.quality-deco-tube {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 250px;
  pointer-events: none;
  z-index: 1;
}

.quality-deco-tube img {
  width: 100%;
  height: auto;
  display: block;
}

/* Interactive Before / After Image Comparison */
.beer-slider-card {
  position: relative;
  width: 100%;
  max-width: 580px;
  border-radius: 20px;
  border: 2.5px solid #ffffff;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  user-select: none;
  line-height: 0;
  cursor: ew-resize;
}

.beer-img-before {
  width: 100%;
  height: auto;
  display: block;
}

.beer-reveal-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.beer-img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 580px;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.beer-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #ffffff;
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.beer-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #111111;
  letter-spacing: 2px;
}

.quality-content-col {
  padding-left: 20px;
}

.quality-title {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 22px;
  font-family: var(--font-family);
}

.quality-desc {
  font-size: 16.5px;
  line-height: 27px;
  color: #ffffff;
  margin-bottom: 32px;
  max-width: 480px;
  font-weight: 500;
}

.btn-quality-shop-now {
  background-color: #ffffff;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.btn-quality-shop-now:hover {
  background-color: #111111;
  color: #ffffff;
}

/* -------------------------------------------------------------
   12. TABBED PRODUCTS ("Hot Selling" / "Trending Now") & PROMO BANNER
------------------------------------------------------------- */
.tabbed-showcase-section {
  padding: 70px 0 90px;
  background-color: #ffffff;
}

.tabbed-showcase-section .custom-container {
  padding-left: 40px;
  padding-right: 40px;
}

.tab-showcase-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.tab-showcase-btn {
  background: transparent;
  border: none;
  font-size: 28px;
  font-weight: 800;
  color: #111111;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
  font-family: var(--font-family);
}

.tab-showcase-btn.active {
  color: #97cbf8;
}

.tab-showcase-btn:hover {
  color: #97cbf8;
}

.tab-product-item {
  display: flex;
  flex-direction: column;
}

.tab-product-thumb-link {
  text-decoration: none;
  display: block;
}

.tab-product-thumb-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #eff6fc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin-bottom: 10px;
  transition: transform 0.25s ease;
}

.tab-product-thumb-container:hover {
  transform: translateY(-3px);
}

.tab-product-thumb-container img {
  max-height: 75%;
  max-width: 75%;
  object-fit: contain;
}

.tab-product-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tab-product-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #75766e;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.tab-product-title {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 3px 0;
  line-height: 1.25;
}

.tab-product-title a {
  color: #111111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tab-product-title a:hover {
  color: var(--rt-secondary-color);
}

.tab-product-price {
  font-size: 15px;
  font-weight: 800;
  color: #111111;
}

/* Right Promo Card */
.promo-night-mask-card {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 45px 30px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.promo-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo-card-title-box {
  display: inline-block;
  background: transparent;
  padding: 0;
}

.promo-card-title {
  font-size: 32px;
  font-weight: 800;
  color: #111111;
  line-height: 1.2;
  margin: 0;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2.5px;
}

.promo-sale-badge {
  background-color: #97cbf8;
  color: #111111;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 7px 22px;
  border-radius: 4px;
  margin-top: 16px;
  display: inline-block;
}

.promo-card-bottom {
  margin-top: auto;
  padding-top: 180px;
}

.btn-promo-shop-now {
  background-color: #97cbf8;
  color: #111111;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 36px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.btn-promo-shop-now:hover {
  background-color: #111111;
  color: #ffffff;
}

@media (max-width: 991px) {
  .promo-night-mask-card {
    min-height: 400px;
    margin-top: 30px;
  }
}

/* -------------------------------------------------------------
   13. 4-COLUMN FEATURE INFO BAR
------------------------------------------------------------- */
.feature-info-bar {
  background-color: #97CBF8;
  padding: 50px 0;
  border-top: 1px solid var(--rt-border-color);
  border-bottom: 1px solid var(--rt-border-color);
  
}

.feature-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.feature-info-icon {
  font-size: 32px;
  color: #fff;
  flex-shrink: 0;
}

.feature-info-text h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.7px;

}

.feature-info-text p {
  font-size: 17px;
 color: #fff;
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

/* -------------------------------------------------------------
   14. FOOTER & NEWSLETTER
------------------------------------------------------------- */
.site-footer {
  background-color: #ffffff;
  padding-top: 60px;
  border-top: 1px solid var(--rt-border-color);
}

.newsletter-subscribe-box {
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 40px 50px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.newsletter-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.newsletter-title h2 span {
  color: #111;
  text-decoration: underline;
  text-decoration-color: var(--rt-secondary-color);
}

.newsletter-form-wrap {
  display: flex;
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.newsletter-form-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 20px;
  font-size: 15px;
  background: transparent;
}

.newsletter-form-wrap button {
  background-color: var(--rt-secondary-color);
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  cursor: pointer;
  transition: all 0.25s ease;
}

.newsletter-form-wrap button:hover {
  background-color: #111;
  color: #fff;
}

.footer-main-row {
  padding-bottom: 50px;
}

.footer-col-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.footer-about-text {
  font-size: 16px;
  line-height: 26px;
  color: var(--rt-body-color);
  margin-top: 15px;
  margin-bottom: 20px;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list li a {
  font-size: 16px;
  color: var(--rt-body-color);
  transition: all 0.2s ease;
}

.footer-links-list li a:hover {
  color: #000;
  padding-left: 4px;
}

.footer-address-item {
  display: flex;
  gap: 12px;
  font-size: 16px;
  color: var(--rt-body-color);
  margin-bottom: 15px;
}

.footer-address-item i {
  color: #111;
  font-size: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-payment-img {
  max-width: 280px;
  margin-top: 15px;
}

.footer-bottom-bar {
  border-top: 1px solid var(--rt-border-color);
  padding: 22px 0;
  font-size: 15px;
  color: var(--rt-meta-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-bar a {
  font-weight: 600;
  color: #111;
}

/* -------------------------------------------------------------
   15. BREADCRUMBS BANNER (For Subpages)
------------------------------------------------------------- */
.breadcrumb-banner-section {
  position: relative;
  

  background-position: center right;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 85px 0 90px;
  display: flex;
  align-items: center;
}

.breadcrumb-banner-section::before {
    content: "";
    position: absolute;
    inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.breadcrumb-banner-section > * {
    position: relative;
    z-index: 1;
}
.breadcrumb-banner-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.breadcrumb-nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.breadcrumb-nav-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-nav-list a:hover {
  color: #ffffff;
}

.breadcrumb-nav-list span.separator {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
}

.breadcrumb-nav-list span:last-child {
  color: #ffffff;
}

/* -------------------------------------------------------------
   16. SHOP PAGE (Filters, Grid, Sorting)
------------------------------------------------------------- */
.shop-sidebar-widget {
  background: #ffffff;
  border: 1px solid var(--rt-border-color);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--rt-heading-color);
}

.filter-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-category-list li {
  margin-bottom: 10px;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14.5px;
  color: #333333;
  transition: color 0.2s ease;
}

.filter-checkbox-label:hover {
  color: #111111;
}

.filter-checkbox-label input {
  margin-right: 10px;
  accent-color: #111;
  cursor: pointer;
}

.filter-count-badge {
  font-size: 12.5px;
  color: #888888;
}

/* Color Swatches */
.color-swatch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-swatch-item {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #dcdcdc;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-swatch-item:hover,
.color-swatch-item.active {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px #111111;
}

/* Price Range Slider */
.price-range-slider {
  accent-color: #111111;
  cursor: pointer;
}

.price-range-text {
  font-size: 14.5px;
  color: #333333;
}

/* Reset Filter Button */
.btn-reset-filters {
  background-color: #f5f5f5;
  color: #111111;
  border: 1px solid var(--rt-border-color);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-reset-filters:hover {
  background-color: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* Shop Toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--rt-border-color);
  flex-wrap: wrap;
  gap: 15px;
}

.shop-result-count-text {
  font-size: 15px;
  color: var(--rt-meta-color);
  font-weight: 500;
}

.shop-sort-select {
  border: 1px solid var(--rt-border-color);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  background: #fff;
  cursor: pointer;
}

.shop-view-mode-toggle {
  display: flex;
  gap: 6px;
}

.view-mode-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--rt-border-color);
  background: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777777;
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-mode-btn.active,
.view-mode-btn:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* Shop List Mode Card Layout */
.shop-list-item {
  display: flex;
  gap: 25px;
  background: #ffffff;
  border: 1px solid var(--rt-border-color);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s ease;
}

.shop-list-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.shop-list-thumb {
  width: 180px;
  height: 180px;
  background-color: var(--rt-gray-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 15px;
}

.shop-list-thumb img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.shop-list-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.shop-list-desc {
  font-size: 14.5px;
  line-height: 22px;
  color: var(--rt-body-color);
  margin: 8px 0 12px;
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination-wrap .pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.pagination-wrap .page-item .page-link {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--rt-border-color, #e5e7eb);
  border-radius: 8px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  background: #fff;
  transition: all 0.2s ease;
  text-decoration: none;
}

.pagination-wrap .page-item.active .page-link {
  background-color: var(--rt-primary-color, #0d9488);
  color: #fff;
  border-color: var(--rt-primary-color, #0d9488);
}

.pagination-wrap .page-item .page-link:hover:not(.active) {
  background-color: #f3f4f6;
  color: var(--rt-primary-color, #0d9488);
  border-color: #d1d5db;
}

.pagination-wrap .page-item.disabled .page-link {
  color: #9ca3af;
  background-color: #f9fafb;
  border-color: #e5e7eb;
}

.pagination-wrap nav p.small.text-muted {
  display: none;
}

/* -------------------------------------------------------------
   17. SINGLE PRODUCT DETAILS (product.html)
------------------------------------------------------------- */
.product-detail-gallery {
  position: sticky;
  top: 110px;
}

.product-main-img-box {
  background-color: var(--rt-gray-color);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.product-main-img-box img {
  max-height: 450px;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-thumbnails-row {
  display: flex;
  gap: 12px;
}

.product-thumb-item {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  background: var(--rt-gray-color);
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  padding: 5px;
}

.product-thumb-item.active {
  border-color: #111;
}

.product-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-summary-col {
  padding-left: 20px;
}

.product-brand-tag {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--rt-meta-color);
  letter-spacing: 1px;
}

.product-detail-title {
  font-size: 36px;
  font-weight: 700;
  margin: 8px 0 12px;
}

.product-detail-price {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.product-meta-list {
  font-size: 15px;
  color: var(--rt-meta-color);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-meta-list strong {
  color: #111;
}

.product-short-desc {
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 25px;
  color: var(--rt-body-color);
}

.product-benefits-list {
  background: #fbfbfb;
  border-left: 3px solid var(--rt-secondary-color);
  padding: 15px 20px;
  margin-bottom: 25px;
  font-size: 15px;
}

.product-qty-action-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.product-qty-selector {
  display: inline-flex;
  border: 1px solid var(--rt-border-color);
  border-radius: 4px;
  overflow: hidden;
}

.product-qty-selector button {
  width: 44px;
  height: 48px;
  background: var(--rt-gray-color);
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.product-qty-selector input {
  width: 55px;
  height: 48px;
  border: none;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  outline: none;
}

.btn-detail-add-to-cart {
  flex: 1;
  min-width: 180px;
  height: 48px;
  background: var(--rt-button-bg-color);
  color: #111;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-detail-add-to-cart:hover {
  background: #111;
  color: #fff;
}

.btn-buy-now {
  width: 100%;
  height: 48px;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 25px;
  transition: all 0.25s ease;
}

.btn-buy-now:hover {
  background: #333;
}

.product-trust-badges {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--rt-meta-color);
}

.product-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.product-trust-item:last-child {
  margin-bottom: 0;
}

.product-tabs-section {
  margin-top: 60px;
  border-top: 1px solid var(--rt-border-color);
  padding-top: 50px;
}

.product-tab-nav {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--rt-border-color);
  margin-bottom: 30px;
}

.product-tab-btn {
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: var(--rt-meta-color);
  padding-bottom: 15px;
  cursor: pointer;
  position: relative;
}

.product-tab-btn.active {
  color: #111;
}

.product-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #111;
}

.tab-pane-content {
  display: none;
  font-size: 17px;
  line-height: 28px;
}

.tab-pane-content.active {
  display: block;
}

/* -------------------------------------------------------------
   18. ABOUT US & CONTACT US PAGES
------------------------------------------------------------- */
.legal-box {
  background: #f9f9f9;
  border-left: 4px solid #111;
  padding: 20px 24px;
  border-radius: 4px;
  margin-bottom: 30px;
}

.stat-counter-card {
  background: #ffffff;
  
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.stat-counter-number {
  font-size: 52px;
  font-weight: 800;
  color: #97CBF8;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-counter-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--rt-meta-color);
}

.contact-form-box {
  background: #ffffff;
  border: 1px solid var(--rt-border-color);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-top: 70px;
  margin-bottom: 70px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--rt-border-color);
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  background: #fff;
  transition: border-color 0.2s ease;
}

.form-control-custom:focus {
  border-color: #111;
}

/* -------------------------------------------------------------
   19. QUICK VIEW MODAL & TOAST NOTIFICATIONS
------------------------------------------------------------- */
.quick-view-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.quick-view-modal.open {
  display: flex;
  opacity: 1;
}

.quick-view-card {
  background: #ffffff;
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  padding: 35px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-view-modal.open .quick-view-card {
  transform: scale(1);
}

.quick-view-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1f3f5;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  color: #333;
  transition: all 0.2s ease;
  z-index: 10;
}

.quick-view-close:hover {
  background: #e9ecef;
  color: #000;
  transform: rotate(90deg);
}

.qv-thumb-btn {
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.qv-thumb-btn:hover {
  transform: translateY(-2px);
}

.qv-thumb-btn.active {
  border-color: #000 !important;
  box-shadow: 0 0 0 1px #000;
}

.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  color: #fff;
  padding: 14px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* -------------------------------------------------------------
   20. RESPONSIVE MEDIA QUERIES
------------------------------------------------------------- */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 46px;
  }
}

@media (max-width: 991px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header-wrapper {
    height: 75px;
  }
  .hero-title {
    font-size: 38px;
  }
  .hero-slide-item {
    min-height: 460px;
    padding: 40px 0;
  }
  .showcase-text-col {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .product-summary-col {
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 26px;
  }
  .section-padding {
    padding: 50px 0;
  }
  .section-title {
    font-size: 28px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-slide-item {
    min-height: auto;
  }
  .newsletter-subscribe-box {
    padding: 30px 20px;
  }
  .newsletter-title h2 {
    font-size: 26px;
  }
  .feature-info-item {
    margin-bottom: 20px;
  }
  .marquee-ticker-item {
    font-size: 22px;
  }
  .before-after-container {
    height: 260px;
  }
  .after-img-wrap img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .top-announcement-bar {
    font-size: 13px;
  }
  .hero-title {
    font-size: 26px;
  }
  .countdown-unit-box {
    min-width: 60px;
    padding: 10px 8px;
  }
  .countdown-digit {
    font-size: 24px;
  }
  .category-thumb-wrap {
    width: 110px;
    height: 110px;
  }
}


/* -------------------------------------------------------------
   PARENT COMPANY FULL-WIDTH SECTION ("About Parent Company – Bhrosa Group")
------------------------------------------------------------- */
.parent-company-fullwidth-section {
  width: 100%;
  overflow: hidden;
  background-color: #f2f3f0;
  margin: 0 0 70px;
}

.parent-company-img-col {
  position: relative;
  overflow: hidden;
  background-color: #8bb1cb;
  display: flex;
}

.parent-company-img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.parent-company-content-col {
  padding: 70px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f2f3f0;
}

.parent-company-inner-content {
  max-width: 620px;
}

.parent-company-heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.18;
  color: #97cbf8;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.parent-company-text {
  font-size: 16.5px;
  line-height: 27px;
  color: #111111;
  font-weight: 500;
  margin-bottom: 18px;
}

@media (max-width: 1200px) {
  .parent-company-content-col {
    padding: 50px 40px;
  }
}

@media (max-width: 991px) {
  .parent-company-content-col {
    padding: 40px 25px;
  }
  .parent-company-heading {
    font-size: 32px;
  }
  .parent-company-img {
    min-height: 320px;
  }
}


/* -------------------------------------------------------------
   SITE FOOTER (100% Matched to Reference)
------------------------------------------------------------- */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 70px 0 25px;
  position: relative;
  overflow: hidden;
}

.footer-top-row {
  margin-bottom: 20px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo-img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-subscribe-title {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

.footer-newsletter-pill {
  background-color: #ffffff;
  border-radius: 35px;
  padding: 4px 6px 4px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 320px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-newsletter-pill input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14.5px;
  color: #222222;
  width: 100%;
  font-weight: 500;
}

.footer-newsletter-pill input::placeholder {
  color: #75766e;
}

.footer-newsletter-pill button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #97cbf8;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-newsletter-pill button:hover {
  background-color: #7ab8ee;
  transform: scale(1.05);
}

.footer-subscribe-subtext {
  font-size: 14px;
  line-height: 21px;
  color: #ffffff;
  margin-top: 16px;
  font-weight: 500;
  max-width: 320px;
}

@media (min-width: 992px) {
  .footer-col-divider {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 35px;
  }
}

.footer-widget-title {
  font-size: 18px;
  font-weight: 700;
  color: #97cbf8;
  text-transform: uppercase;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.footer-quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-quick-links li {
  margin-bottom: 13px;
}

.footer-quick-links a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-quick-links a:hover {
  color: #97cbf8;
  padding-left: 4px;
}

.footer-address-block {
  display: flex;
  flex-direction: column;
}

.footer-contact-email {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 16px;
  display: inline-block;
  transition: color 0.2s ease;
}

.footer-contact-email:hover {
  color: #97cbf8;
}

.footer-contact-address {
  color: #ffffff;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  max-width: 340px;
  margin: 0;
}

.footer-bottom-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 45px;
  padding-top: 24px;
  text-align: center;
  
 
  gap: 15px;
}

.footer-copyright-text {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
}

.footer-payment-icons {
  max-width: 250px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 50px 0 20px;
  }
  .footer-bottom-wrap {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* -------------------------------------------------------------
   18. FAQ PAGE ACCORDION STYLES
------------------------------------------------------------- */
.faq-main-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--rt-heading-color);
  margin-bottom: 25px;
}

.faq-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 100px;
}

#faq-section-title{
  margin-bottom: 50px;
  margin-top: 50px;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1px solid var(--rt-border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
 
}

.faq-accordion-item.active {
  border-color: #97cbf8;
  box-shadow: 0 6px 20px rgba(151, 203, 248, 0.18);
}

.faq-accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-size: 16.5px;
  font-weight: 700;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-accordion-item.active .faq-accordion-header {
  background-color: #f4f9fd;
  color: #0d6efd;
}

.faq-icon {
  font-size: 15px;
  color: #777777;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-accordion-item.active .faq-icon {
  transform: rotate(180deg);
  color: #0d6efd;
}

.faq-accordion-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-body {
  padding: 8px 24px 22px;
  max-height: 500px;
}

.faq-accordion-body p {
  font-size: 15px;
  line-height: 26px;
  color: var(--rt-body-color);
  margin: 0;
}

/* -------------------------------------------------------------
   19. CONTACT PAGE STYLES (Screenshot Match)
------------------------------------------------------------- */
.contact-query-title {
  color: #97cbf8;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 26px;
  letter-spacing: -0.2px;
}

.contact-form-input {
  width: 100%;
  background-color: #f0f2f2;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 14.5px;
  color: #222222;
  outline: none;
  transition: all 0.2s ease;
}

.contact-form-input::placeholder {
  color: #444444;
  font-size: 14px;
}

.contact-form-input:focus {
  background-color: #ffffff;
  border-color: #97cbf8;
  box-shadow: 0 0 0 3px rgba(151, 203, 248, 0.2);
}

.contact-form-textarea {
  width: 100%;
  background-color: #f0f2f2;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 16px 18px;
  font-size: 14.5px;
  color: #222222;
  outline: none;
  min-height: 190px;
  resize: vertical;
  transition: all 0.2s ease;
}

.contact-form-textarea::placeholder {
  color: #444444;
  font-size: 14px;
}

.contact-form-textarea:focus {
  background-color: #ffffff;
  border-color: #97cbf8;
  box-shadow: 0 0 0 3px rgba(151, 203, 248, 0.2);
}

.btn-contact-send {
  background-color: #97cbf8;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 14px 28px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
}

.btn-contact-send:hover {
  background-color: #7ab8ee;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(151, 203, 248, 0.35);
}

/* -------------------------------------------------------------
   20. VENDOR DASHBOARD & AUTH STYLES
------------------------------------------------------------- */
.vendor-guest-box {
  background: #ffffff;
  padding: 10px 0;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}

.vendor-guest-msg {
  font-size: 15.5px;
  line-height: 28px;
  color: #333333;
  margin-bottom: 24px;
}

.btn-register-vendor {
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 14px 28px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
}

.btn-register-vendor:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

.vendor-auth-wrapper {
  margin-top: 75px;
  margin-bottom: 75px;
  padding-top: 0;
  border-top: none;
  animation: fadeIn 0.35s ease;
}

.vendor-notice-bar {
  background-color: #f4f9f7;
  border-left: 4px solid #55b3a5;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 15px;
  color: #2e5950;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.vendor-auth-title {
  font-size: 30px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 24px;
}

.vendor-form-label {
  font-size: 14.5px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 8px;
  display: block;
}

.vendor-form-input {
  width: 100%;
  background-color: #f0f2f2;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 13px 18px;
  font-size: 14.5px;
  color: #222222;
  outline: none;
  transition: all 0.2s ease;
}

.vendor-form-input:focus {
  background-color: #ffffff;
  border-color: #97cbf8;
  box-shadow: 0 0 0 3px rgba(151, 203, 248, 0.2);
}

.vendor-password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.btn-toggle-pwd {
  position: absolute;
  right: 14px;
  background: transparent;
  border: none;
  color: #555555;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.btn-vendor-submit {
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 13px 32px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-vendor-submit:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

.vendor-checkbox-label {
  font-size: 14.5px;
  color: #444444;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.vendor-checkbox-label input {
  accent-color: #111111;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.vendor-lost-pwd {
  font-size: 14px;
  color: #444444;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.vendor-lost-pwd:hover {
  color: #111111;
}

/* -------------------------------------------------------------
   21. COMING SOON PAGE STYLES (Screenshot Match)
------------------------------------------------------------- */
.coming-soon-banner-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.coming-soon-blue-tea {
  background-color: #f0f7fe;
}

.coming-soon-green-tea {
  background-color: #f2f9f0;
}

.coming-soon-perfums-section {
  background-color: #ffffff;
  padding: 70px 0;
}

.coming-soon-badge {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.coming-soon-heading {
  font-size: 46px;
  font-weight: 800;
  color: #111111;
  margin: 0;
  letter-spacing: -0.5px;
}

.coming-soon-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon-img-box img {
  max-height: 480px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.coming-soon-img-box img:hover {
  transform: scale(1.03);
}

.coming-soon-perfume-card {
  text-align: center;
  padding: 15px;
  transition: transform 0.35s ease;
}

.coming-soon-perfume-card img {
  max-height: 320px;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.coming-soon-perfume-card:hover img {
  transform: translateY(-8px) scale(1.04);
}

@media (max-width: 991px) {
  .coming-soon-heading {
    font-size: 34px;
  }
  .coming-soon-banner-section {
    padding: 40px 0;
  }
  .coming-soon-img-box img {
    max-height: 340px;
  }
}

/* -------------------------------------------------------------
   22. WISHLIST TABLE STYLES
------------------------------------------------------------- */
.rtsb-wishlist-content {
  background: #ffffff;
  overflow-x: auto;
}

.rtsb-wishlist-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.rtsb-wishlist-table th {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  border-bottom: 1px solid var(--rt-border-color);
  background-color: #fafafa;
}

.rtsb-wishlist-table td {
  padding: 20px;
  vertical-align: middle;
  border-bottom: 1px solid var(--rt-border-color);
  font-size: 15.5px;
  color: #333333;
}

.rtsb-wl-empty-text {
  text-align: center;
  padding: 60px 20px !important;
  font-size: 17px;
  color: #666666;
  font-weight: 500;
}

.rtsb-wl-product-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rtsb-wl-product-cell img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  background-color: #f7f7f7;
}

.rtsb-wl-product-title {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  transition: color 0.2s ease;
}

.rtsb-wl-product-title:hover {
  color: var(--rt-secondary-color);
}

.rtsb-wl-price {
  font-weight: 700;
  color: #111111;
  font-size: 16px;
}

.rtsb-wl-stock {
  color: #28a745;
  font-weight: 600;
  font-size: 14.5px;
}

.btn-wl-add-cart {
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-wl-add-cart:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

.btn-wl-remove {
  background: transparent;
  border: none;
  color: #888888;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 6px;
}

.btn-wl-remove:hover {
  color: #dc3545;
}

/* -------------------------------------------------------------
   23. MY ACCOUNT & DASHBOARD STYLES
.woocommerce-MyAccount-navigation {
  background-color: #ffffff;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.account-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.account-nav-item {
  width: 100%;
  margin: 0;
}

.account-nav-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background-color: #f8fafc;
  color: #334155;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.account-nav-item a i {
  font-size: 17px;
  color: #64748b;
  transition: color 0.2s ease;
}

.account-nav-item a:hover {
  background-color: #e2e8f0;
  color: #0f172a;
}

.account-nav-item a:hover i {
  color: #0f172a;
}

.account-nav-item.active a {
  background-color: #0d6efd;
  color: #ffffff !important;
  border-color: #0d6efd;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
}

.account-nav-item.active a i {
  color: #ffffff !important;
}

.account-nav-item.active a span {
  color: #ffffff !important;
}

.account-nav-item.active a .badge {
  background-color: #ffffff !important;
  color: #dc3545 !important;
}

.account-content-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  min-height: 280px;
  margin-left: 0;
}

.account-content-card p {
  font-size: 15.5px;
  line-height: 28px;
  color: #333333;
  margin-bottom: 16px;
}

.account-content-card a {
  color: #111111;
  font-weight: 600;
  text-decoration: underline;
}

.account-order-notice {
  background-color: #f7f8f8;
  border-radius: 8px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15.5px;
  color: #333333;
  margin-left: 40px;
}

.btn-browse-products {
  background-color: #65734e;
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.btn-browse-products:hover {
  background-color: #515c3e;
  transform: translateY(-1px);
}

/* Points Tab Styles */
.points-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  
}

.points-header-title {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
}

.points-log-link {
  font-size: 14.5px;
  font-weight: 600;
  color: #111111;
  text-decoration: underline;
}

.points-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-top: 25px;
  margin-bottom: 12px;
}

.points-box-card {
  border: 1px solid #ebebeb;
  border-radius: 8px;
  padding: 20px 24px;
  background-color: #ffffff;
  font-size: 15px;
  color: #444444;
  line-height: 26px;
}

.referral-copy-box {
  background-color: #f0f2f2;
  border-radius: 6px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.referral-code-text {
  font-family: monospace;
  font-size: 14.5px;
  color: #333333;
  word-break: break-all;
}

.btn-copy-code {
  background: transparent;
  border: none;
  color: #333333;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.btn-copy-code:hover {
  color: #97cbf8;
}

.social-share-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 15px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-share-fb { background-color: #1877f2; }
.btn-share-x { background-color: #000000; }
.btn-share-mail { background-color: #ea4335; }
.btn-share-wa { background-color: #25d366; }
.btn-share-pin { background-color: #e60023; }

/* -------------------------------------------------------------
   24. CART PAGE STYLES
------------------------------------------------------------- */
.cart-redemption-notice {
  background-color: #55b3a5;
  color: #ffffff;
  text-align: center;
  padding: 13px 20px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-radius: 4px;
}

.rtsb-cart-table-wrapper {
  background: #ffffff;
}

.cart_table {
  width: 100%;
  border-collapse: collapse;
}

.cart_table th {
  padding: 14px 16px;
  font-size: 15.5px;
  font-weight: 700;
  color: #111111;
  background-color: #fafafa;
  border-bottom: 1px solid var(--rt-border-color);
}

.cart_table td {
  padding: 20px 16px;
  vertical-align: middle;
  border-bottom: 1px solid var(--rt-border-color);
  font-size: 15px;
}

.cart-table-thumb {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.cart-table-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-product-title-link {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.cart-product-title-link:hover {
  color: var(--rt-secondary-color);
}

.cart-item-variations {
  font-size: 13px;
  color: #666666;
  margin: 0;
}

.cart-item-variations dt {
  display: inline;
  font-weight: 700;
  color: #333333;
}

.cart-item-variations dd {
  display: inline;
  margin: 0 10px 0 2px;
}

.cart-table-qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background: #ffffff;
}

.cart-table-qty-box button {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  color: #333333;
}

.cart-table-qty-box input {
  width: 38px;
  border: none;
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  color: #111111;
  outline: none;
  background: transparent;
}

.cart-total-cell-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-total-cell-wrap .amount {
  font-size: 16.5px;
  font-weight: 700;
  color: #111111;
}

.cart-action-link {
  font-size: 13px;
  color: #666666;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  display: inline;
}

.cart-action-link:hover {
  color: #111111;
}

.cart-action-link.remove-link:hover {
  color: #dc3545;
}

.cart-table-footer-actions {
  padding: 24px 0;
  border-bottom: 1px solid var(--rt-border-color);
}

.cart-form-input {
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  background-color: #ffffff;
  color: #222222;
}

.cart-form-input:focus {
  border-color: #000000;
}

.btn-cart-table-action {
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cart-table-action:hover {
  border-color: #111111;
  background-color: #f7f7f7;
}

/* Cart Sidebar */
.cart-sidebar-card {
  background-color: #f8f9f9;
  border-radius: 8px;
  padding: 30px 24px;
}

.cart-sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 14px;
}

.btn-sidebar-black-submit {
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-sidebar-black-submit:hover {
  background-color: #2b2b2b;
}

.cart-totals-table th {
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  padding: 10px 0;
  border-bottom: 1px solid #ebebeb;
}

.cart-totals-table td {
  font-size: 15px;
  color: #111111;
  padding: 10px 0;
  border-bottom: 1px solid #ebebeb;
}

.btn-proceed-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #65734e;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: background-color 0.2s ease;
}

.btn-proceed-checkout:hover {
  background-color: #515c3e;
}

/* -------------------------------------------------------------
   25. CHECKOUT PAGE STYLES
------------------------------------------------------------- */
.checkout-coupon-notice {
  background-color: #f8f9f9;
  border-radius: 6px;
  padding: 16px 22px;
}

.checkout-order-table th {
  font-size: 15.5px;
  font-weight: 700;
  color: #111111;
  padding: 12px 0;
  border-bottom: 1px solid #ebebeb;
}

.checkout-order-table td {
  padding: 14px 0;
  border-bottom: 1px solid #ebebeb;
  font-size: 15px;
}

.checkout-subtotal-row th,
.checkout-subtotal-row td {
  font-weight: 600;
}

.checkout-total-row th,
.checkout-total-row td {
  border-bottom: none;
}

.payment-desc-box {
  background-color: #f1f2f3;
  border-radius: 6px;
  padding: 14px 16px;
  margin-top: 8px;
}

.btn-place-order {
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-place-order:hover {
  background-color: #2b2b2b;
}

/* -------------------------------------------------------------
   26. FULL-WIDTH GALLERY CAROUSEL STYLES
------------------------------------------------------------- */
.gallery-carousel-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
}

.gallery-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-carousel-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
  transition: transform 0.5s ease;
}

.gallery-carousel-item {
  flex: 0 0 20vw;
  width: 20vw;
  min-width: 260px;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .gallery-carousel-item {
    flex: 0 0 25vw;
    width: 25vw;
  }
}

@media (max-width: 991px) {
  .gallery-carousel-item {
    flex: 0 0 33.333vw;
    width: 33.333vw;
  }
}

@media (max-width: 767px) {
  .gallery-carousel-item {
    flex: 0 0 50vw;
    width: 50vw;
    min-width: 180px;
  }
}

.gallery-carousel-item img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

@media (max-width: 767px) {
  .gallery-carousel-item img {
    height: 320px;
  }
}

.gallery-carousel-item:hover img {
  transform: scale(1.04);
}

.gallery-carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 900;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  opacity: 0.9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.gallery-carousel-nav-btn i {
  font-weight: 900 !important;
}

.gallery-carousel-nav-btn:hover {
  background: transparent;
  color: var(--rt-secondary-color, #97cbf8);
  transform: translateY(-50%) scale(1.15);
  opacity: 1;
}

.gallery-carousel-nav-btn.gallery-prev {
  left: 20px;
}

.gallery-carousel-nav-btn.gallery-next {
  right: 20px;
}

/* ============================================================
   PRODUCT COMPARE STYLES
   ============================================================ */

.compare-matrix-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.compare-matrix-table th.compare-feature-label {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #333333;
  background-color: #f9fbfb !important;
  vertical-align: middle;
  padding: 16px 20px;
  border-color: #eaeaea;
  white-space: nowrap;
}

.compare-matrix-table td.compare-product-col {
  vertical-align: middle;
  padding: 18px 20px;
  border-color: #eaeaea;
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}

.compare-matrix-table td.compare-product-col:hover {
  background-color: #fafcfc;
}

.compare-thumb-wrap {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-product-thumb {
  transition: transform 0.3s ease;
  max-width: 100%;
}

.compare-thumb-wrap:hover .compare-product-thumb {
  transform: scale(1.05);
}

.compare-remove-btn {
  transition: all 0.2s ease;
  background-color: #ffffff;
}

.compare-remove-btn:hover {
  background-color: #dc3545 !important;
  color: #ffffff !important;
  border-color: #dc3545 !important;
  transform: scale(1.1);
}

.btn-compare-toggle.active {
  background-color: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}

.btn-compare-toggle.active i {
  color: #ffffff !important;
}

.compare-count-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #111111;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
  .compare-matrix-table th.compare-feature-label {
    position: sticky;
    left: 0;
    z-index: 5;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.05);
  }
}

/* ============================================================
   PRODUCT RATING & REVIEW SYSTEM STYLES
   ============================================================ */

.interactive-star-rating {
  display: inline-flex;
  gap: 4px;
  cursor: pointer;
}

.interactive-star-rating .star-item {
  font-size: 24px;
  color: #d1d5db;
  transition: transform 0.15s ease, color 0.15s ease;
}

.interactive-star-rating .star-item:hover {
  transform: scale(1.2);
}

.interactive-star-rating .star-item.active {
  color: #ffb800;
}

.review-big-score {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #111111;
  letter-spacing: -1px;
}

.review-big-stars i {
  margin: 0 1px;
}

.rating-bar-row .progress {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

.rating-bar-row .progress-bar {
  background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%) !important;
}

.customer-review-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.customer-review-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05) !important;
}

@media (min-width: 768px) {
  .border-end-md {
    border-right: 1px solid #dee2e6 !important;
  }
}

@media (max-width: 767px) {
  .border-end-md {
    border-right: none !important;
    border-bottom: 1px solid #dee2e6 !important;
    padding-bottom: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .review-big-score {
    font-size: 2.8rem;
  }
}
