.cc-mini-cart {
  /* 	width:420px; */
  background: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.cc-mini-cart-header {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}

.cc-mini-cart-body {
  flex: 1;
  overflow: auto;
  padding: 25px;
}

.cc-cart-item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.cc-thumb img {
  width: 80px;
  border-radius: 8px;
}

.cc-content {
  flex: 1;
}

.cc-content h4 {
  margin: 0 0 10px;
  font-size: 16px;
}

.cc-remove a {
  color: #999;
  font-size: 13px;
}

.cc-mini-cart-footer {
  padding: 25px;
  border-top: 1px solid #eee;
}

.subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.checkout-btn {
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 50px;
  background: #f22d6d;
  color: #fff;
  margin-bottom: 15px;
}

.view-cart {
  display: block;
  text-align: center;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 50px;
}

/* Review confirm box */
.review-confirm-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.review-confirm-modal.active {
  display: flex;
}

.review-confirm-box {
  width: 90%;
  max-width: 25rem;
  background: #fff;
  border-radius: 0.625rem;
  padding: 1.5rem;
  text-align: center;
}

.review-confirm-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.review-confirm-actions button {
  flex: 1;
  height: 2.75rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.938rem;
  font-weight: 600;
}

.review-cancel {
  background: #eee;
}

.review-submit {
  background: var(--dark-blush);
  color: #fff;
}

.cc-confirm-text {
  padding-top: 0.875rem;
}
/* Empty Mini Cart Styling */
.woocommerce-mini-cart__empty-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  gap: 0.75rem;
}

.cc-empty-cart-icon {
  font-size: 3rem;
  line-height: 1;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.woocommerce-mini-cart__empty-message p {
  font-size: 1rem;
  color: #6b6b6b;
  margin: 0;
}

.cc-continue-shopping {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--navy-blue);
  border-radius: 0.375rem;
  text-decoration: none;
}

/* =============================
HEADER SEARCH BAR
============================= */

.header-search-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999999;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  /* Hidden state */
  max-height: 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;

  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.35s ease;
}

.header-search-bar.active,
.header-search-bar.is-active {
  max-height: 43.75rem;
  opacity: 1;
  transform: scaleY(1);
  pointer-events: auto;
  overflow: visible;
}

.header-search-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 20.5rem;
  margin: auto;
  margin-bottom: 1.25rem;
}
.header-search-form {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  min-width: 0;
  border: 1px solid var(--border-gray);
  border-radius: 62.438rem;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  height: 3.125rem;
  margin: 0;
}
.header-search-inner {
  display: flex;
  padding: 1.25rem;
  flex-direction: column;
}
.header-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-size: 0.813rem;
  background: transparent;
  /* 	padding: 0.625rem 2.5rem 0.625rem 0.625rem; */
}
.header-search-input::-webkit-search-cancel-button,
.header-search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.header-search-input::-ms-clear {
  display: none;
}
.live-search-results {
  margin: auto;
}
.header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 0.625rem 0 0;
  padding: 0;
  color: #555;
  flex-shrink: 0;
}
.header-search-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.25rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #f0f0f0;
  color: #666;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0.2s ease, background 0.15s ease, color 0.15s ease;
}
.header-search-clear:hover {
  background: #e6e6e6;
  color: #222;
}
.header-search-input:placeholder-shown + .header-search-clear {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.header-search-clear svg {
  width: 0.75rem;
  height: 0.75rem;
}
.header-search-btn svg,
.live-search-bottom-btn svg,
.header-search-close svg {
  width: 1rem;
  height: 1rem;
}
.header-search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border-gray);
  border-radius: 50%;
  background: #fff;
  color: #222;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.header-search-close:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

body.mdny-search-open {
  overflow: hidden;
}

/* =============================
LIVE SEARCH RESULTS
============================= */

.live-search-results {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
  max-height: 0;
  opacity: 0;
  overflow: hidden;

  transition: max-height 0.3s ease, opacity 0.25s ease;
}

.live-search-results.active {
  display: block;
  max-height: 25rem;
  opacity: 1;
  overflow-y: auto;
}

.live-search-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem 0;
}

.live-search-title {
  margin-bottom: 0.75rem;
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
}

/* =============================
LEFT COLUMN
============================= */

.live-search-left {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  padding-right: 1.5rem;
  border-right: 1px solid #eee;
}

.live-search-suggestion {
  display: block;
  padding: 0.5rem 0.625rem;
  border-radius: 0.313rem;
  font-size: 0.938rem;
  color: #222;
  text-decoration: none;
  transition: background 0.15s ease;
}

.live-search-suggestion:hover,
.live-search-suggestion.active {
  background: #f5f5f5;
  color: #000;
}

.no-suggest,
.no-product {
  font-size: 0.875rem;
  color: #999;
}

/* =============================
RIGHT COLUMN
============================= */

.live-search-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.live-product-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid #f2f2f2;
}

.live-product-item:last-child {
  border-bottom: none;
}

.live-product-item img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 0.375rem;
  flex-shrink: 0;
}

.live-product-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.live-product-title {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--navy-blue);
  text-decoration: none;
}

.live-product-title:hover {
  text-decoration: underline;
}

.live-product-info .price {
  font-size: 0.875rem;
  color: #666;
}

/* =============================
BOTTOM SEARCH LINK
============================= */

.live-search-bottom {
  padding: 0.875rem 0;
  border-top: 1px solid #eee;
}

.live-search-bottom-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.938rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
}

.live-search-bottom-btn:hover {
  color: #000;
}

.live-search-bottom-btn .arrow-icon {
  flex-shrink: 0;
}
.live-product-info .price {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.625rem;
}
.live-product-info .price ins {
  text-decoration: unset;
  color: var(--navy-blue);
}
.header-search-form {
  height: auto;
}
.live-search-results {
  width: 20.5rem;
}
/* =============================
RESPONSIVE
============================= */

@media (max-width: 768px) {
  .header-search-inner {
    padding: 1rem;
  }

  .header-search-row,
  .live-search-results {
    width: 100%;
  }

  .live-search-main {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
  }

  .live-search-left {
    padding-right: 0;
    padding-bottom: 1rem;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .live-search-bottom {
    padding: 0.875rem 1.25rem;
  }
}

@media (min-width: 992px) {
  .header-search-row,
  .live-search-results {
    width: 77.5rem;
  }
  .header-search-input {
    font-size: 1.063rem;
  }
  .live-search-main {
    flex-direction: row;
  }
  .live-search-main,
  .live-search-bottom {
    padding: 1.5rem 2.5rem;
  }
  .header-search-btn svg,
  .live-search-bottom-btn svg,
  .header-search-close svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* ===== Mini-cart coupon feature ===== */
  .cc-coupon-wrap {
    padding: 1rem 0;
    margin-top: 0.625rem;
  }

  .cc-coupon-toggle {
    font-size: 0.875rem;
    gap: 0.5rem;
  }

  .cc-coupon-form {
    margin-top: 0.75rem;
  }

  .cc-coupon-input-row {
    gap: 0.625rem;
  }

  .cc-coupon-input {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }

  .cc-coupon-apply-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .cc-coupon-message {
    font-size: 0.8125rem;
  }

  .cc-coupon-chip {
    font-size: 0.8125rem;
    padding: 0.3125rem 0.4375rem 0.3125rem 0.875rem;
  }

  .cc-discount-row {
    font-size: 0.875rem;
  }
}

/* ===== Mini-cart coupon feature ===== */
.cc-coupon-wrap {
  padding: 0.75rem 0;
  border-top: 0.0625rem solid #eee;
  margin-top: 0.5rem;
}

.cc-coupon-toggle {
  background: none;
  border: none;
  color: #1a1a2e;
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
  padding: 0.25rem 0;
}

.cc-coupon-toggle:hover {
  color: #e91e63;
}

.cc-coupon-form {
  margin-top: 0.625rem;
}

.cc-coupon-input-row {
  display: flex;
  gap: 0.5rem;
}

.cc-coupon-input {
  flex: 1;
  border: 0.0625rem solid #ddd;
  border-radius: 0.375rem;
  padding: 0.5rem 0.625rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  height: 3.125rem;
}

.cc-coupon-input:focus {
  outline: none;
  border-color: #e91e63;
}

.cc-coupon-apply-btn {
  background: var(--navy-blue);
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  padding: 1rem 1.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.cc-coupon-apply-btn:hover {
  background: #e91e63;
}

.cc-coupon-apply-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cc-coupon-message {
  font-size: 0.75rem;
  margin-top: 0.375rem;
  min-height: 0.875rem;
}

.cc-coupon-message.success {
  color: #2e7d32;
}

.cc-coupon-message.error {
  color: #c62828;
}

.cc-applied-coupons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0.625rem 0;
}

.cc-coupon-chip {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: #fdeef2;
  border: 0.0625rem solid #f5c2d3;
  color: #e91e63;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 1.25rem;
  padding: 0.25rem 0.375rem 0.25rem 0.75rem;
  transition: opacity 0.15s ease;
}

.cc-coupon-remove {
  background: none;
  border: none;
  color: #e91e63;
  cursor: pointer;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 0 0.25rem;
}

.cc-discount-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #2e7d32;
  margin-top: 0.25rem;
}

.wp-block-mdny-blocks-faq-single.is-open .read-ans-btn {
  transform: unset !important;
}

.product-full-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.5s;
}

@media (max-width: 767px) {
  .product-full-description {
    -webkit-line-clamp: 5;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .product-full-description {
    -webkit-line-clamp: 8;
  }
}

@media (min-width: 1024px) {
  .product-full-description {
    -webkit-line-clamp: 10;
  }
}

.product-full-description.is-expanded {
  display: block;
}

.product-description-read-more {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.product-description-read-more.is-visible {
  display: inline-block;
}

.product-full-description li {
  margin-left: 22px;
}

.cc-back-to-shop a {
  display: flex !important;
  align-items: center;
  gap: 0.25rem;
  background: unset !important;
  color: #1f184f !important;
  flex-wrap: nowrap;
  margin-bottom: 1.875rem !important;
  padding-left: 0 !important;
}

.cc-back-to-shop svg {
  width: 1.25rem;
  height: 1.25rem;
}
.header-search-btn svg {
  pointer-events: none;
}

.live-search-bottom {
  display: none;
}
.wc-filter-load-more {
  margin-top: 10px;
  background: transparent;
  border: 0;
  color: #000;
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
}
.wc-block-product-filter-checkbox-list__show-more-button {
  display: none;
}

/* slide animation */

/* Non-active slides â€” zoomed in, static */
.cc-slider .splide__slide .wp-block-cover__image-background {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  display: block;
  -webkit-transition: -webkit-transform 6s ease-out,
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: -moz-transform 6s ease-out,
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 6s ease-out,
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Active slide â€” settles back to normal scale */
.cc-slider .splide__slide.is-active .wp-block-cover__image-background {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 6s ease-out,
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: -moz-transform 6s ease-out,
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 6s ease-out,
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cc-slider .splide__slide.is-prev .wp-block-cover__image-background,
.cc-slider .splide__slide.is-next .wp-block-cover__image-background {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: -webkit-transform 6s ease-out,
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: -moz-transform 6s ease-out,
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 6s ease-out,
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   Free Shipping Notice - Cart Block
   ============================================ */

.cc-free-shipping-notice {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

/* Shipping Notice Only */
.cc-free-shipping-notice__notice {
  display: flex;
  align-items: center !important;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.375rem 1.25rem;
  background: #fff7f8;
  border: 1px solid #f6d8df;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  margin-bottom: 1rem;
}

.cc-free-shipping-notice__message {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #1f184f;
  margin: 0;
}

.cc-free-shipping-notice__remaining {
  color: #ff4f87;
  font-weight: 700;
}

.cc-free-shipping-notice__close {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: #ffe4eb;
  color: #1f184f;
  cursor: pointer;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Plain Text Sections */
.cc-free-shipping-notice__extra {
  margin: 0 0 0.75rem;
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 0.9375rem;
  color: #666;
}

.cc-free-shipping-notice__extra:last-child {
  margin-bottom: 0;
}

.cc-free-shipping-notice__extra a {
  color: #1f184f;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cc-free-shipping-notice__extra a::after {
  display: none;
}

@media (max-width: 767px) {
  .cc-free-shipping-notice__notice {
    padding: 0.875rem 1rem;
    align-items: flex-start;
  }

  .cc-free-shipping-notice__message {
    font-size: 0.875rem;
  }

  .cc-free-shipping-notice__close {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1rem;
  }

  .cc-free-shipping-notice__extra {
    font-size: 0.875rem;
  }
}
.product-extra-note {
  display: none;
}
.product-full-description-wrapper h3 {
  margin: 0.625rem 0;
}
.product-full-description-wrapper ul {
  margin-bottom: 0.625rem;
}
/* popup message share  */

/* ===== Share row ===== */

/* ===== Copy toast popup ===== */
.cc-copy-popup {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #fff7f7;
  color: #000000;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cc-copy-popup.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cc-copy-popup__inner p {
  margin: 0;
}

/* ===== Native-share fallback popup ===== */
.cc-share-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 9998;
  transition: opacity 0.2s ease;
}

.cc-share-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.cc-share-popup__inner {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  transform: scale(0.96);
  transition: transform 0.2s ease;
}

.cc-share-popup.is-open .cc-share-popup__inner {
  transform: scale(1);
}

.cc-share-popup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cc-share-popup__head p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.cc-share-popup__close {
  background: none;
  border: none;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #8d95a3;
  padding: 4px;
}

.cc-share-popup__close:hover {
  color: #111;
}

.cc-share-popup__body {
  display: flex;
  gap: 8px;
}

.cc-share-popup__input {
  flex: 1;
  border: 1px solid #e4e7ec;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  color: #444;
  background: #f9fafb;
}

.cc-share-popup__copy {
  border: none;
  background: #111;
  color: #fff;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.cc-share-popup__copy:hover {
  background: #333;
}

/* lock scroll when share popup open */
body.share-popup-open {
  overflow: hidden;
}

/* ===== Mobile ===== */
@media (max-width: 480px) {
  .cc-share-popup__body {
    flex-direction: column;
  }

  .cc-share-popup__copy {
    width: 100%;
  }
}

/* Mini Cart Styles shipping */
.cc-shipping-row,
.cc-total-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.cc-total-row {
  font-size: 1.125rem;
  font-weight: bold;
  border-top: 2px solid #eee;
  margin: 14px 0;
  padding-top: 12px;
  color: var(--navy-blue);
}
.cc-shipping-row.subtotal {
  font-size: 1.125rem;
}
/* Green color for the amount */
.cc-shipping-amount {
  color: #25d366;
}
/* Green color for "Free Shipping" text */
.cc-free-shipping-text {
  color: #25d366;
}

.cc-variation-warning {
  background: #fff7f7;
  border: 1px solid #f6d8df;
  color: #d63638;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
}
/* Blog Pagination */
.cc-blog-pagination {
  display: flex;
  justify-content: center;
  margin: 4rem 0 0;
}

.cc-blog-pagination ul {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cc-blog-pagination li {
  margin: 0;
  padding: 0;
}

.cc-blog-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-width: 2.75rem; */
  height: 2.75rem;
  /* padding: 0 0.75rem; */
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: #1f184f;
  transition: all 0.25s ease;
}

.cc-blog-pagination a.page-numbers:hover {
  color: #c20f4d;
}

.cc-blog-pagination .page-numbers.current {
  color: #c20f4d;
  font-weight: 700;
}

.cc-blog-pagination .page-numbers.prev,
.cc-blog-pagination .page-numbers.next {
  font-size: 1.25rem;
  font-weight: 600;
}

.cc-blog-pagination .page-numbers.prev:hover,
.cc-blog-pagination .page-numbers.next:hover {
  color: #c20f4d;
}
.cc-testimonial-slider__avatar img {
  width: 3rem;
  height: 3rem;
  border-radius: 1.5625rem;
  object-fit: cover;
}
.is-paginated .wp-block-breadcrumbs li:last-child {
  display: none;
}
/* remove the trailing separator left after "Blogs" */
.is-paginated .wp-block-breadcrumbs li:nth-last-child(2)::after {
  content: none;
}
/* Add red asterisk to all checkout field labels */
.wc-block-components-address-form label::after,
#shipping .wc-blocks-components-select__label::after {
  content: " *";
  color: #e2401c;
}
/* Remove it from optional fields  */
.wc-block-components-address-form__phone label::after {
  content: ""; /* remove if phone is optional in your setup */
}
.wc-block-components-text-input:has(input[required]) label::after,
.wc-blocks-components-select:has(select[required]) label::after {
  content: " *";
  color: #e2401c;
}

label.required::after {
  content: " *";
  color: #e2401c;
  font-weight: 700;
}

.cc-first-order-reward-label {
  color: #2e7d32;
  font-weight: 600;
  font-size: 13px;
}
