@charset "UTF-8";
.woocommerce,
.woocommerce-page {
  /* ✅ IMPORTANT: remove Woo clearfix pseudo-elements (causes flex alignment issues) */
}
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  content: none !important;
  display: none !important;
}
.woocommerce #primary > .container,
.woocommerce-page #primary > .container {
  max-width: 1400px !important;
  width: 100% !important;
}
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  width: 100% !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  position: relative;
  box-sizing: border-box !important;
  flex: 0 0 calc((100% - 10px * 3) / 4) !important;
  max-width: calc((100% - 10px * 3) / 4) !important;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  /* ✅ Equal-height fix */
  display: flex !important;
  flex-direction: column !important;
  /* Woo sometimes sets height weirdly */
  height: auto !important;
}
@media (max-width: 1199.98px) {
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    flex: 0 0 calc((100% - 10px * 2) / 3) !important;
    max-width: calc((100% - 10px * 2) / 3) !important;
  }
}
@media (max-width: 991.98px) {
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    flex: 0 0 calc((100% - 10px) / 2) !important;
    max-width: calc((100% - 10px) / 2) !important;
  }
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link {
  display: block;
  text-decoration: none;
}
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  display: block;
  width: 100% !important;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 !important;
  border-radius: 0 !important;
  background: #fff;
}
@media (max-width: 991.98px) {
  .woocommerce ul.products li.product a img,
  .woocommerce-page ul.products li.product a img {
    height: 220px;
  }
}
@media (max-width: 575.98px) {
  .woocommerce ul.products li.product a img,
  .woocommerce-page ul.products li.product a img {
    height: 200px;
  }
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .price,
.woocommerce-page ul.products li.product .button {
  padding-left: 14px;
  padding-right: 14px;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  /* ✅ Title clamp (prevents one product becoming taller) */
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  padding-top: 12px;
  margin: 0 0 6px !important;
  font-size: 15px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.7em;
}
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  margin: 0 0 10px !important;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  /* ✅ Push button to bottom so all buttons align */
}
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  margin-top: auto !important;
  margin-bottom: 14px !important;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  /* (optional) make button same width feel */
  display: block;
  margin-left: 10px;
  margin-right: 10px;
  text-align: center;
}
.woocommerce ul.products li.product .star-rating,
.woocommerce-page ul.products li.product .star-rating {
  display: none !important;
}
.woocommerce span.onsale,
.woocommerce-page span.onsale {
  top: 12px !important;
  right: 12px !important;
  left: auto !important;
  border-radius: 999px !important;
  font-weight: 700;
  font-size: 12px !important;
  line-height: 1 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-product div.product .woocommerce-product-gallery {
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 12px;
  background: #fff;
}

/* Romisan Ecommerce Theme (compiled CSS)
   If you edit assets/scss/style.scss, recompile into this file.
*/
.site-header .topbar {
  background: #fff;
}

.home-hero {
  color: #fff;
  background: #111;
  background-size: cover;
  background-position: center;
  padding: 64px 0;
  position: relative;
  max-height: 70vh;
  height: 70vh;
}

.home-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.home-hero .container {
  position: relative;
  z-index: 1;
}

.hero-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 12px;
  background: #fff;
}

.woocommerce ul.products li.product a img {
  border-radius: 12px;
}

.woocommerce span.onsale {
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
}

.single-product div.product .woocommerce-product-gallery {
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 12px;
  background: #fff;
}

.site-footer .widget-title {
  margin-bottom: 12px;
}

/* =========================
   Professional Navbar Style
========================= */
.re-navbar .navbar-brand img {
  max-height: 44px;
  width: auto;
  display: block;
}

.re-navbar .navbar-brand {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.re-navbar .navbar-nav .nav-link {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-weight: 600;
  color: #5b2a86;
}

.re-navbar .navbar-nav .nav-link:hover,
.re-navbar .navbar-nav .nav-link:focus {
  background: rgba(122, 0, 223, 0.08);
  color: #3a0a66;
}

.re-navbar .navbar-nav .current-menu-item > .nav-link,
.re-navbar .navbar-nav .current_page_item > .nav-link {
  background: rgba(122, 0, 223, 0.12);
  color: #3a0a66;
}

.re-navbar .dropdown-menu {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  padding: 10px;
}

.re-navbar .dropdown-item {
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 600;
}

.re-navbar .dropdown-item:hover {
  background: rgba(122, 0, 223, 0.08);
}

/* Search sizing */
.re-nav-search input {
  min-width: 220px;
}

/* ✅ Fix toggler and make it modern */
.re-navbar-toggler {
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 12px !important;
  padding: 8px 10px !important;
  box-shadow: none !important;
}

.re-navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(122, 0, 223, 0.18) !important;
}

/* IMPORTANT: ensure icon is visible even if theme overrides it */
.re-navbar .navbar-toggler-icon {
  width: 1.6em;
  height: 1.6em;
  background-image: none !important;
  position: relative;
  display: inline-block;
}

.re-navbar .navbar-toggler-icon::before,
.re-navbar .navbar-toggler-icon::after,
.re-navbar .navbar-toggler-icon span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

.re-navbar .navbar-toggler-icon::before {
  top: 5px;
}

.re-navbar .navbar-toggler-icon span {
  top: 50%;
  transform: translateY(-50%);
}

.re-navbar .navbar-toggler-icon::after {
  bottom: 5px;
}

.re-navbar .navbar-toggler-icon > span {
  display: block;
}

/* =========================
   Mobile Navbar Fix (Clean)
========================= */
@media (max-width: 991.98px) {
  /* Make brand + toggler align nicely */
  .re-navbar .navbar-brand,
  .re-navbar .navbar-brand a {
    font-size: 20px;
    line-height: 1.2;
  }
  .re-navbar .container {
    gap: 10px;
  }
  /* Mobile: center brand correctly */
  .re-navbar .re-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .re-navbar .re-brand img {
    max-height: 34px;
  }
  /* Mobile icon buttons (right side) */
  .re-mobile-icons .re-icon-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #fff;
    padding: 0;
  }
  /* Cart badge position fix on small screens */
  .re-cart-count {
    top: -6px !important;
    left: auto !important;
    right: -11px !important;
    transform: none !important;
  }
}
/* =========================
   Offcanvas Title / Logo
========================= */
.re-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 14px 16px;
}

.re-offcanvas .re-offcanvas-brand {
  color: #111;
  font-size: 18px;
  max-width: calc(100% - 44px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.re-offcanvas .re-site-title {
  font-size: 18px;
  color: #111;
  letter-spacing: 0.2px;
}

/* If logo exists */
.re-offcanvas .custom-logo {
  max-height: 34px;
  width: auto;
  display: block;
}

.re-offcanvas .custom-logo-link {
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
}

/* ✅ VERY IMPORTANT: prevent your centered navbar brand rules affecting offcanvas */
.re-offcanvas .navbar-brand,
.re-offcanvas .custom-logo-link,
.re-offcanvas .custom-logo {
  position: static !important;
  transform: none !important;
  left: auto !important;
  top: auto !important;
}

/* Offcanvas menu links */
.re-mobile-nav {
  gap: 6px;
}

.re-mobile-nav .nav-link {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  color: #5b2a86;
}

.re-mobile-nav .nav-link:hover,
.re-mobile-nav .nav-link:focus {
  background: rgba(122, 0, 223, 0.08);
  color: #3a0a66;
}

/* Mobile icon buttons (right side) */
.re-open-search {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
  padding: 0;
}

/* Product search modal */
.re-modal-content {
  border-radius: 18px;
  overflow: hidden;
}

.re-product-search-input {
  padding: 14px 14px;
  border-radius: 14px;
  font-size: 16px;
}

.re-search-status {
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.75;
}

.re-search-results {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.re-search-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
}

.re-search-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.re-search-thumb {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  flex: 0 0 auto;
}

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

.re-thumb-placeholder {
  width: 100%;
  height: 100%;
}

.re-search-title {
  font-weight: 700;
  line-height: 1.2;
}

.re-search-sub {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
  font-size: 14px;
  opacity: 0.85;
}

.re-oos {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.re-search-footer {
  margin-top: 14px;
}

/* Desktop modal size */
.re-modal-dialog {
  max-width: 640px;
}

/* ✅ Mobile fullscreen modal */
@media (max-width: 991.98px) {
  .re-product-search-modal .modal-dialog {
    margin: 0;
    max-width: none;
    height: 100%;
  }
  .re-product-search-modal .modal-content {
    height: 100%;
    border-radius: 0;
  }
  .re-product-search-modal .modal-body {
    overflow: auto;
  }
}
.re-search-title {
  font-weight: 800;
  font-size: 16px;
  color: #111;
}

.re-search-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
  font-size: 14px;
  opacity: 0.95;
}

.re-price-now {
  font-weight: 800;
}

.re-price-was {
  opacity: 0.6;
  text-decoration: line-through;
}

.re-search-item {
  background: #fff;
}

.re-search-thumb img {
  border-radius: 14px;
}

/* =========================
   Modern Single Post Style
========================= */
.re-single-hero {
  padding: 40px 0 20px;
  background: linear-gradient(180deg, rgba(122, 0, 223, 0.08), transparent);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.re-single-breadcrumb {
  font-size: 13px;
  opacity: 0.75;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.re-single-breadcrumb a {
  text-decoration: none;
  color: #111;
}

.re-single-breadcrumb a:hover {
  text-decoration: underline;
}

.re-single-header {
  margin-top: 18px;
}

.re-single-title {
  font-size: 40px;
  font-weight: 950;
  line-height: 1.15;
  margin: 0;
  color: #111;
}

.re-single-meta {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.75;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.re-dot {
  opacity: 0.55;
}

.re-single-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
}

.re-single-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.re-single-content {
  padding: 22px;
  font-size: 16px;
  line-height: 1.85;
  color: #1a1a1a;
}

.re-single-content p {
  margin-bottom: 16px;
}

.re-single-content h2,
.re-single-content h3 {
  margin-top: 26px;
  font-weight: 900;
  line-height: 1.25;
}

.re-single-content a {
  color: #5b2a86;
  font-weight: 700;
  text-decoration: underline;
}

.re-single-footer {
  padding: 0 22px 22px;
}

.re-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  opacity: 0.85;
}

.re-tags a {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #111;
  background: rgba(0, 0, 0, 0.02);
}

.re-tags a:hover {
  background: rgba(122, 0, 223, 0.08);
}

/* Post navigation */
.re-single-nav {
  margin-top: 18px;
}

.re-single-nav .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.re-single-nav a {
  display: block;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  text-decoration: none;
  color: #111;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
}

.re-single-nav a:hover {
  background: rgba(0, 0, 0, 0.02);
}

.re-nav-label {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 6px;
}

.re-nav-title {
  display: block;
  font-weight: 900;
  line-height: 1.2;
}

/* =========================
   Modern Comments
========================= */
.re-comments {
  margin-top: 22px;
}

.comments-title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 14px;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.comment-body {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.comment-author img {
  border-radius: 999px;
}

.comment-author .fn {
  font-weight: 900;
  text-decoration: none;
  color: #111;
}

.comment-metadata a {
  font-size: 13px;
  opacity: 0.7;
  text-decoration: none;
}

.comment-content {
  line-height: 1.7;
}

.reply a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  color: #5b2a86;
}

.reply a:hover {
  text-decoration: underline;
}

/* Comment form */
.comment-respond {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
}

.comment-respond .comment-reply-title {
  font-weight: 900;
  margin-bottom: 12px;
}

.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
.comment-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 12px 14px;
}

.comment-form textarea {
  min-height: 160px;
}

.comment-form .submit {
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 14px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 800;
}

/* Mobile */
@media (max-width: 991.98px) {
  .re-single-title {
    font-size: 28px;
  }
  .re-single-content {
    padding: 16px;
  }
  .re-single-footer {
    padding: 0 16px 16px;
  }
  .re-single-nav .nav-links {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Modern Sidebar (Consistent)
========================= */
.re-sidebar {
  position: relative;
}

.re-sidebar-inner {
  display: grid;
  gap: 18px;
}

/* ✅ Card styling for BOTH classic + block widgets */
.re-sidebar .widget,
.re-sidebar .widget_block {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  margin: 0; /* IMPORTANT: avoid page-to-page differences */
}

.re-sidebar .widget:hover,
.re-sidebar .widget_block:hover {
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

/* ✅ Widget Titles (classic + block widgets) */
.re-sidebar .widget-title,
.re-sidebar .wp-block-heading,
.re-sidebar .widget_block h1,
.re-sidebar .widget_block h2,
.re-sidebar .widget_block h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 14px;
  position: relative;
  padding-bottom: 10px;
  color: #111;
}

.re-sidebar .widget-title::after,
.re-sidebar .wp-block-heading::after,
.re-sidebar .widget_block h1::after,
.re-sidebar .widget_block h2::after,
.re-sidebar .widget_block h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  border-radius: 10px;
  background: #5b2a86;
}

/* ✅ Lists (classic widgets) */
.re-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.re-sidebar ul li {
  margin: 0;
  padding: 0;
}

/* ✅ Links */
.re-sidebar a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
  transition: all 0.2s ease;
}

.re-sidebar a:hover {
  color: #5b2a86;
}

/* ✅ Make list links feel modern */
.re-sidebar ul li a {
  display: inline-block;
  padding: 4px 0;
}

.re-sidebar ul li a:hover {
  transform: translateX(4px);
}

/* ✅ Block widget lists (WP default blocks) */
.re-sidebar .wp-block-latest-posts,
.re-sidebar .wp-block-archives-list,
.re-sidebar .wp-block-categories-list,
.re-sidebar .wp-block-latest-comments {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.re-sidebar .wp-block-latest-posts li,
.re-sidebar .wp-block-archives-list li,
.re-sidebar .wp-block-categories-list li,
.re-sidebar .wp-block-latest-comments li {
  margin: 0;
}

/* ✅ Search widget (classic + block) */
.re-sidebar .wp-block-search__inside-wrapper {
  display: grid;
  gap: 10px;
}

.re-sidebar input[type=search],
.re-sidebar .wp-block-search__input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  outline: none;
}

.re-sidebar input[type=search]:focus,
.re-sidebar .wp-block-search__input:focus {
  border-color: rgba(122, 0, 223, 0.35);
  box-shadow: 0 0 0 3px rgba(122, 0, 223, 0.12);
}

.re-sidebar button[type=submit],
.re-sidebar .wp-block-search__button {
  padding: 10px 14px;
  border-radius: 14px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.re-sidebar button[type=submit]:hover,
.re-sidebar .wp-block-search__button:hover {
  background: #5b2a86;
}

/* ✅ Tag cloud (classic widget) */
.re-sidebar .tagcloud a {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
  font-size: 13px !important;
  margin: 4px 6px 0 0;
}

.re-sidebar .tagcloud a:hover {
  background: rgba(122, 0, 223, 0.1);
  border-color: rgba(122, 0, 223, 0.3);
}

/* ✅ Sticky sidebar on desktop */
@media (min-width: 992px) {
  .re-sidebar {
    position: sticky;
    top: 120px;
  }
}
/* =========================
   Modern Blog Index
========================= */
.re-blog-hero {
  padding: 46px 0 26px;
  background: linear-gradient(180deg, rgba(122, 0, 223, 0.08), transparent);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.re-blog-hero-title {
  font-size: 38px;
  font-weight: 950;
  margin: 0;
  color: #111;
  line-height: 1.15;
}

.re-blog-hero-sub {
  margin-top: 10px;
  opacity: 0.75;
  max-width: 760px;
}

.re-blog-list {
  display: grid;
  gap: 18px;
}

.re-blog-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
}

.re-blog-thumb {
  border-radius: 18px;
  overflow: hidden;
  height: 170px;
  display: block;
}

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

.re-blog-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.06);
}

.re-blog-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.re-blog-meta {
  font-size: 13px;
  opacity: 0.75;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.re-dot {
  opacity: 0.5;
}

.re-blog-title {
  margin: 0;
  font-weight: 950;
  font-size: 22px;
  line-height: 1.2;
}

.re-blog-title a {
  color: #111;
  text-decoration: none;
}

.re-blog-title a:hover {
  text-decoration: underline;
}

.re-blog-excerpt {
  opacity: 0.85;
  line-height: 1.6;
  margin: 0;
}

/* Pagination */
.re-blog-pagination .nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.re-blog-pagination .page-numbers {
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-decoration: none;
  font-weight: 800;
  color: #111;
}

.re-blog-pagination .page-numbers.current {
  background: rgba(122, 0, 223, 0.1);
  border-color: rgba(122, 0, 223, 0.3);
}

/* Mobile */
@media (max-width: 991.98px) {
  .re-blog-hero-title {
    font-size: 28px;
  }
  .re-blog-card {
    grid-template-columns: 1fr;
  }
  .re-blog-thumb {
    height: 220px;
  }
}
.read_me {
  max-width: -moz-max-content;
  max-width: max-content;
}

/* =========================
   Single Post Featured Image
========================= */
.re-single-thumb {
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
}

.re-single-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.re-single-thumb {
  aspect-ratio: 4/2;
  overflow: hidden;
}

.re-single-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========================================
   WooCommerce Cart (Blocks) - Polished UI
   Works for: .wc-block-cart (Woo Blocks)
========================================= */
body.woocommerce-cart {
  /* =========================================
     Empty Cart: hide product suggestions
     Keep only "Return to shop" button
  ========================================= */
}
body.woocommerce-cart body.woocommerce-cart {
  /* Hide "New in store" heading + product grid */
}
body.woocommerce-cart body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid,
body.woocommerce-cart body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__products,
body.woocommerce-cart body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product,
body.woocommerce-cart body.woocommerce-cart .wp-block-woocommerce-empty-cart-block h2 {
  display: none !important;
}
body.woocommerce-cart body.woocommerce-cart {
  /* Optional: also hide any “You may be interested in…” area if present */
}
body.woocommerce-cart body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid + * {
  display: none !important;
}
body.woocommerce-cart body.woocommerce-cart {
  /* Center empty-cart message + button nicely */
}
body.woocommerce-cart body.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
}
body.woocommerce-cart body.woocommerce-cart {
  /* Style the "Return to shop" button */
}
body.woocommerce-cart body.woocommerce-cart .wp-block-woocommerce-empty-cart-block a,
body.woocommerce-cart body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-element-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 16px !important;
  font-weight: 900 !important;
  padding: 12px 18px !important;
  background: #111 !important;
  color: #fff !important;
  text-decoration: none !important;
  border: 0 !important;
}
body.woocommerce-cart body.woocommerce-cart .wp-block-woocommerce-empty-cart-block a:hover,
body.woocommerce-cart body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-element-button:hover {
  opacity: 0.92 !important;
}
body.woocommerce-cart {
  /* page spacing */
}
body.woocommerce-cart .site-main,
body.woocommerce-cart #primary {
  padding: 24px 0 56px;
}
body.woocommerce-cart {
  /* constrain cart width */
}
body.woocommerce-cart .wc-block-cart {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  gap: 10px;
}
body.woocommerce-cart {
  /* make 2-column on desktop */
}
@media (min-width: 992px) {
  body.woocommerce-cart .wc-block-cart__content {
    display: grid;
    grid-template-columns: 1.65fr 0.95fr;
    gap: 28px;
    align-items: start;
  }
  body.woocommerce-cart .wc-block-cart__sidebar {
    position: sticky;
    top: 110px;
    height: -moz-fit-content;
    height: fit-content;
  }
}
body.woocommerce-cart {
  /* cards */
}
body.woocommerce-cart .wc-block-cart__main,
body.woocommerce-cart .wc-block-cart__sidebar {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  padding: 18px;
}
body.woocommerce-cart {
  /* section headings */
}
body.woocommerce-cart .wc-block-cart__main h2,
body.woocommerce-cart .wc-block-cart__sidebar h2,
body.woocommerce-cart .wc-block-components-title,
body.woocommerce-cart .wc-block-components-totals-item__label {
  font-weight: 900;
  letter-spacing: 0.2px;
}
body.woocommerce-cart {
  /* reduce extra top whitespace */
}
body.woocommerce-cart .wc-block-cart__main,
body.woocommerce-cart .wc-block-cart__sidebar {
  margin-top: 0;
}
body.woocommerce-cart {
  /* product list container */
}
body.woocommerce-cart .wc-block-cart-items {
  margin: 0;
}
body.woocommerce-cart {
  /* each item row */
}
body.woocommerce-cart .wc-block-cart-items__row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
body.woocommerce-cart .wc-block-cart-items__row:last-child {
  border-bottom: 0;
}
body.woocommerce-cart {
  /* product image */
}
body.woocommerce-cart .wc-block-cart-item__image img {
  width: 74px;
  height: 74px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}
body.woocommerce-cart {
  /* product name */
}
body.woocommerce-cart .wc-block-components-product-name {
  font-weight: 900;
  color: #111;
  text-decoration: none;
  line-height: 1.2;
}
body.woocommerce-cart .wc-block-components-product-name:hover {
  opacity: 0.85;
}
body.woocommerce-cart {
  /* price text */
}
body.woocommerce-cart .wc-block-cart-item__prices,
body.woocommerce-cart .wc-block-components-product-price,
body.woocommerce-cart .wc-block-components-product-badge,
body.woocommerce-cart .wc-block-components-totals-item__value {
  font-weight: 800;
}
body.woocommerce-cart {
  /* quantity controls */
}
body.woocommerce-cart .wc-block-components-quantity-selector {
  border-radius: 14px;
  overflow: hidden;
}
body.woocommerce-cart .wc-block-components-quantity-selector input {
  border-radius: 0;
  min-height: 42px;
  font-weight: 800;
}
body.woocommerce-cart .wc-block-components-quantity-selector button {
  min-width: 42px;
}
body.woocommerce-cart {
  /* remove link */
}
body.woocommerce-cart .wc-block-cart-item__remove-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
  color: #111;
  text-decoration: none;
}
body.woocommerce-cart .wc-block-cart-item__remove-link:hover {
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
}
body.woocommerce-cart {
  /* coupon panel spacing */
}
body.woocommerce-cart .wc-block-components-panel__button {
  padding: 10px 0;
  font-weight: 900;
}
body.woocommerce-cart .wc-block-components-panel__content {
  padding: 10px 0 0;
}
body.woocommerce-cart .wc-block-components-text-input input {
  border-radius: 14px;
  min-height: 44px;
}
body.woocommerce-cart {
  /* totals layout */
}
body.woocommerce-cart .wc-block-components-totals-wrapper {
  margin-top: 10px;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
body.woocommerce-cart {
  /* checkout button */
}
body.woocommerce-cart .wc-block-cart__submit-button,
body.woocommerce-cart .wc-block-components-button.wp-element-button {
  width: 100%;
  justify-content: center;
  border-radius: 16px !important;
  font-weight: 900 !important;
  padding: 12px 14px !important;
  border: 0 !important;
  background: #111 !important;
  color: #fff !important;
}
body.woocommerce-cart .wc-block-cart__submit-button:hover,
body.woocommerce-cart .wc-block-components-button.wp-element-button:hover {
  opacity: 0.92;
}
body.woocommerce-cart {
  /* mobile polish */
}
@media (max-width: 991.98px) {
  body.woocommerce-cart .wc-block-cart__main,
  body.woocommerce-cart .wc-block-cart__sidebar {
    padding: 16px;
    border-radius: 18px;
  }
  body.woocommerce-cart .wc-block-cart__sidebar {
    margin-top: 16px;
    position: static;
  }
}
body.woocommerce-cart {
  /* =========================================
     Empty Cart "New in store" - Equal Cards
  ========================================= */
}
body.woocommerce-cart body.woocommerce-cart {
  /* Grid container (works for block empty cart products) */
}
body.woocommerce-cart body.woocommerce-cart .wc-block-grid,
body.woocommerce-cart body.woocommerce-cart .wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}
body.woocommerce-cart body.woocommerce-cart {
  /* Responsive columns */
}
@media (max-width: 1200px) {
  body.woocommerce-cart body.woocommerce-cart .wc-block-grid,
  body.woocommerce-cart body.woocommerce-cart .wc-block-grid__products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 900px) {
  body.woocommerce-cart body.woocommerce-cart .wc-block-grid,
  body.woocommerce-cart body.woocommerce-cart .wc-block-grid__products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 520px) {
  body.woocommerce-cart body.woocommerce-cart .wc-block-grid,
  body.woocommerce-cart body.woocommerce-cart .wc-block-grid__products {
    grid-template-columns: 1fr !important;
  }
}
body.woocommerce-cart body.woocommerce-cart {
  /* Each product card equal height */
}
body.woocommerce-cart body.woocommerce-cart .wc-block-grid__product {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  padding: 14px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06) !important;
}
body.woocommerce-cart body.woocommerce-cart {
  /* Image wrapper: fixed ratio */
}
body.woocommerce-cart body.woocommerce-cart .wc-block-grid__product-image {
  width: 100% !important;
  margin: 0 0 12px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  aspect-ratio: 1/1 !important; /* square cards */
}
body.woocommerce-cart body.woocommerce-cart {
  /* Force image crop consistently */
}
body.woocommerce-cart body.woocommerce-cart .wc-block-grid__product-image img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  display: block !important;
}
body.woocommerce-cart body.woocommerce-cart {
  /* Title consistent height (max 2 lines) */
}
body.woocommerce-cart body.woocommerce-cart .wc-block-grid__product-title {
  font-weight: 900 !important;
  margin: 0 0 8px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 2.6em !important; /* keeps height consistent */
}
body.woocommerce-cart body.woocommerce-cart {
  /* Price spacing */
}
body.woocommerce-cart body.woocommerce-cart .wc-block-grid__product-price {
  margin-top: auto !important; /* pushes button to bottom consistently */
  padding-top: 8px !important;
  font-weight: 800 !important;
}
body.woocommerce-cart body.woocommerce-cart {
  /* Button pinned to bottom */
}
body.woocommerce-cart body.woocommerce-cart .wc-block-grid__product .wp-block-button,
body.woocommerce-cart body.woocommerce-cart .wc-block-grid__product .wp-block-button__link {
  margin-top: 10px !important;
}
body.woocommerce-cart body.woocommerce-cart .wc-block-grid__product .wp-block-button__link {
  width: 100% !important;
  text-align: center !important;
  border-radius: 14px !important;
  font-weight: 900 !important;
  background: #111 !important;
  color: #fff !important;
  padding: 10px 12px !important;
  border: 0 !important;
}

/* =========================
   Cart Totals Spacing Fix
========================= */
/* Add gap between sidebar elements */
.wc-block-cart__sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Space below "Cart totals" heading */
.wc-block-cart__sidebar h2,
.wc-block-components-title {
  margin-bottom: 12px;
}

/* Space between coupon panel and totals */
.wc-block-components-panel {
  margin-bottom: 8px;
}

/* Add spacing above totals wrapper */
.wc-block-components-totals-wrapper {
  margin-top: 14px;
  padding-top: 14px;
}

/* Space above checkout button */
.wc-block-cart__submit-container {
  margin-top: 16px;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
  width: 62% !important;
}
@media screen and (max-width: 767px) {
  .wc-block-components-sidebar-layout .wc-block-components-main {
    width: 100% !important;
  }
}

@media screen and (max-width: 767px) {
  .wc-block-components-sidebar {
    width: 100% !important;
  }
}

.wc-block-components-quantity-selector {
  width: 122px !important;
}/*# sourceMappingURL=style.css.map */