/*
Theme Name: MyShop
Author: Quang
Description: Custom WooCommerce theme
Version: 1.0
*/

/* Whole web */
/* footer */
.store-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-row {
  display: flex;
  align-items: flex-start;
}

.icon-col {
  width: 25px; /* cố định độ rộng để icon thẳng hàng */
  text-align: center;
  flex-shrink: 0;
  color: #0d6efd; /* màu icon, có thể đổi */
}

.text-col {
  flex: 1;
  line-height: 1.6;
}

.text-col a {
  color: #fff;
  text-decoration: none;
}

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

.list-unstyled li {
  margin-bottom: 8px;
}
.list-unstyled li a {
  color: #fff !important; /* màu chữ */
  text-decoration: none;
}

.list-unstyled li a:hover {
  color: #0078ff !important; /* màu khi hover */
}

#backToTop {
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  display: none;
  width: 45px;
  height: 45px;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  background-color: #0d6efd !important; /* Màu primary Bootstrap */
  color: #fff !important;
  border: none;
  transition: all 0.3s ease;
  z-index: 9999;
}

#backToTop:hover {
  background-color: #0b5ed7 !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* pagination */
.woocommerce-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.woocommerce-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
  padding: 6px 12px;
  border: 1px solid #dee2e6;
  color: #0d6efd;
  text-decoration: none;
}

.woocommerce-pagination .page-numbers li .current {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

/* header */
.search-form {
  width: 360px;
}

.search-form__input-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-form__input-group:focus-within {
  border-color: #1677ff;
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.2);
}

.search-form__prefix {
  display: flex;
  align-items: center;
  color: #8c8c8c;
}

.search-form__prefix svg {
  display: block;
}

.search-form__input {
  flex: 1;
  border: none;
  font-size: 0.95rem;
  background: transparent;
  padding: 0.35rem 0.2rem;
  outline: none;
  color: #1f1f1f;
}

.search-form__input::placeholder {
  color: #bfbfbf;
}

.search-form__button {
  border: none;
  background: #1677ff;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.search-form__button:hover {
  background: #0958d9;
  box-shadow: 0 4px 10px rgba(9, 88, 217, 0.3);
}

.search-form__button:active {
  background: #0747aa;
}

.mobile-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-search__toggle {
  border: none;
  background: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-search__toggle:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #f05a28;
}

.mobile-search__form {
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-width 0.3s ease, opacity 0.3s ease;
}

.mobile-search--open .mobile-search__form {
  max-width: min(260px, 60vw);
  opacity: 1;
  pointer-events: auto;
}

.mobile-search__form .search-form__input-group {
  gap: 0.35rem;
}

.mobile-search__form .search-form__input {
  padding-left: 0.3rem;
}

.mobile-search__submit {
  border: none;
  background: #1677ff;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-search__submit:hover {
  background: #0958d9;
}

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #1f1f1f;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cart-icon svg {
  display: block;
}

.cart-icon:hover {
  color: #1677ff;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ff4d4f;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(255, 77, 79, 0.4);
}

.mobile-category-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-category-item {
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 0.75rem;
}

.mobile-category-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mobile-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mobile-category-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 600;
  font-size: 1rem;
  color: #111;
  text-decoration: none;
}

.mobile-category-link:hover {
  color: #f05a28;
}

.mobile-submenu-toggle {
  border: none;
  background: #f5f5f5;
  color: #111;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-submenu-toggle:hover {
  background: #ebebeb;
}

.mobile-submenu-toggle__icon {
  position: relative;
  width: 14px;
  height: 2px;
  background: currentColor;
}

.mobile-submenu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.mobile-submenu-toggle[aria-expanded="true"] .mobile-submenu-toggle__icon::after {
  transform: rotate(0deg);
}

.mobile-submenu {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0 0 0 1rem;
  display: none;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-submenu a {
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
}

.mobile-submenu a:hover {
  color: #f05a28;
}

.mobile-submenu.show {
  display: flex;
}

/* ==== CATEGORY MEGA MENU ==== */
.product-category-nav {
  width: 100%;
}

.category-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-item {
  position: relative;
}

.category-section {
  position: relative;
}

.category-link {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  padding: 0.35rem 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.category-link:hover {
  color: #f05a28;
}

.category-item--has-children .category-link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
}

/* Thanh bar submenu kéo xuống */
.category-submenu-bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 100;
}

.category-submenu-bar.show {
  max-height: 150px;
  opacity: 1;
}

.category-submenu-bar .container {
  padding: 1rem 0;
}

.category-submenu {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-submenu.active {
  display: flex;
}

.category-submenu li {
  margin: 0;
}

.category-submenu li a {
  display: block;
  padding: 0.3rem 0.3rem;
  color: #111;
  text-decoration: none;
  font-size: 0.7rem;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.category-submenu li a:hover {
  color: #f05a28;
}

@media (max-width: 768px) {
  .category-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .category-item {
    width: 100%;
  }

  .category-submenu-bar {
    position: relative;
  }

  .category-submenu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .category-submenu li a {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #f1f1f1;
  }

  .category-submenu li:last-child a {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .search-form {
    display: none;
  }

  .search-form--mobile {
    display: block !important;
    width: 100%;
  }

  .search-form--mobile .search-form__input-group {
    width: 100%;
  }
}

/* ==== MAIN MENU STYLE ==== */
nav .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem; /* khoảng cách giữa các item */
  list-style: none;
  margin: 0;
  padding: 0;
}

nav .nav li {
  position: relative;
}

nav .nav li a {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

/* Hiệu ứng gạch chân động khi hover */
nav .nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: #f05a28; /* màu cam nổi bật */
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav .nav li a:hover::after,
nav .nav li.current-menu-item a::after {
  width: 60%;
}

nav .nav li a:hover,
nav .nav li.current-menu-item a {
  color: #f05a28;
}

/* Khi cuộn xuống có thể thêm nền trắng đổ bóng */
.sticky-nav {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  z-index: 1000;
}

/* Responsive nhỏ hơn md thì ẩn (đã có d-none d-md-block) */

/* icon chat */
.floating-social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.floating-social .social-icon {
  text-decoration: none !important;
}
.floating-social .social-icon i {
  text-decoration: none !important;
  display: inline-block;
}

.floating-social .social-icon img {
  width: 28px;
  height: 28px;
}

.floating-social .social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Hiệu ứng nhấp nháy cho Zalo */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.floating-social .zalo {
  animation: pulse 1.5s infinite;
}


/* filter */


form.d-flex select,
form.d-flex input {
  height: 38px;
  font-size: 14px;
}
form.d-flex .btn {
  height: 38px;
  padding: 0 16px;
}


/* archive-product */
.card-img-top {
  height: 220px; /* chiều cao cố định để lưới đều nhau */
  object-fit: contain; /* không méo ảnh */
}

.card:hover {
  transform: translateY(-4px);
  transition: 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* card title */
.card-title {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.card-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20px;
  background: linear-gradient(to right, transparent, white);
}

.card-title span {
  display: inline-block;
  animation: scroll-text 6s linear infinite;
}

@keyframes scroll-text {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}


/* ===== SINGLE PRODUCT ===== */

section.related.products {
    margin-top: 20px;
    text-align: center;
}
.woocommerce-single-product .product-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: .5rem;
}
.woocommerce-single-product .summary {
  background: #fff;
  padding: 2rem;
  border-radius: .5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
/* thong tin sản phẩm */
/* ==== Bố cục tổng thể ==== */
.summary.entry-summary {
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  font-family: "Inter", Arial, sans-serif;
}

/* ==== Tiêu đề ==== */
.summary.entry-summary .product_title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

/* ==== Giá ==== */
.summary.entry-summary .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

/* ==== Mô tả ngắn ==== */
.summary.entry-summary .woocommerce-product-details__short-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ==== Biến thể (chọn size, màu...) ==== */
.summary.entry-summary table.variations {
  margin-bottom: 1.5rem;
  width: 100%;
}

.summary.entry-summary table.variations td.label {
  font-weight: 500;
  padding-bottom: 0.5rem;
  color: #333;
}

.summary.entry-summary table.variations select {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.95rem;
}

/* ==== Form thêm giỏ hàng ==== */
.summary.entry-summary form.cart {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.summary.entry-summary form.cart .quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.summary.entry-summary form.cart .quantity button,
.summary.entry-summary form.cart .quantity input {
  border: none;
  background: none;
}

.summary.entry-summary form.cart .quantity button {
  width: 32px;
  height: 32px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.summary.entry-summary form.cart .qty {
  width: 50px !important;
  text-align: center;
  font-size: 1rem;
  padding: 4px 0;
}

/* ==== Nút mua hàng ==== */
.summary.entry-summary button.single_add_to_cart_button {
  flex-grow: 1;
  background: #444;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  padding: 10px 0;
  transition: background 0.3s ease;
}

.summary.entry-summary button.single_add_to_cart_button:hover {
  background: #000;
}

/* ==== Meta (mã, danh mục, tag) ==== */
.summary.entry-summary .product_meta {
  font-size: 0.875rem;
  color: #777;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.summary.entry-summary .product_meta span {
  display: block;
  margin-bottom: 0.25rem;
}

.summary.entry-summary .product_meta a {
  color: #555;
  text-decoration: none;
}

.summary.entry-summary .product_meta a:hover {
  text-decoration: underline;
}

/* ==== Responsive ==== */
.mySwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
}
@media (max-width: 768px) {
  .summary.entry-summary {
    padding: 1rem;
  }

  .summary.entry-summary .product_title {
    font-size: 1.25rem;
  }

  .summary.entry-summary .price {
    font-size: 1.2rem;
  }

  .summary.entry-summary form.cart {
    flex-direction: column;
    align-items: stretch;
  }

  .summary.entry-summary button.single_add_to_cart_button {
    width: 100%;
  }
}

/* img */

.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images {
    width: 100%;
}


.woocommerce #content div.product div.summary,.woocommerce div.product div.summary,.woocommerce-page #content div.product div.summary,.woocommerce-page div.product div.summary {
    float: none;
    width: 100%;
 
}

/* tab */

.product-tabs .wc-tabs {
  display: flex !important;
  border-bottom: 1px solid #eee !important;
  background: #f9f9f9;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 1.5rem 0 !important
}
.product-tabs .wc-tabs li {
  margin: 0 !important;
  padding: 5px !important;
}
.product-tabs .wc-tabs li a {
  display: block !important;
  padding: 10px 15px !important;
  text-decoration: none !important;
  color: black !important;
  font-weight: 500 !important;
}

.product-tabs .wc-tabs li.active a,
.product-tabs .wc-tabs li a:hover {
  background: #fff !important;
  border: 1px solid #eee !important;
  border-bottom: none !important;
  color: #000 !important;
  border-radius: 5px 5px 0 0 !important;
}
.product-tabs .wc-tab {
  border: 1px solid #eee !important;
  padding: 1.5rem !important;
  background: #fff !important;
  border-radius: 0 5px 5px 5px !important;
}

/* QR code zalo */
.product-extra {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.product-extra h6 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-extra img {
  max-width: 100%;
  height: auto;
}


.zalo-title {
  font-weight: 700;
  color: #0078ff;
  animation: blinkText 0.3s step-start infinite;
}

@keyframes blinkText {
  30% {
    opacity: 0;
  }
}

body {
      background: #f9fafb;
      font-family: 'Segoe UI', Arial, sans-serif;
    }

    .product-box {
      max-width: 300px;
      position: relative;
      overflow: hidden;
      border: 1px solid #eee;
      border-radius: 5px;
      background: #fff;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      padding-bottom: 15px;
    }

    .product-box:hover {
      transform: translateY(-8px) scale(1.035);
      box-shadow: 0 8px 25px rgba(67, 56, 202, 0.13);
      background: #fff;
    }

    .fade-in {
      animation: fadeInUp 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .nav-link {
      transition: color 0.2s;
    }

    .nav-link:hover {
      color: #fc5c7d !important;
    }

    .policy-card {
      border-radius: 1rem;
      transition: box-shadow 0.2s, transform 0.15s;
    }

    .policy-card:hover {
      box-shadow: 0 8px 24px rgba(252, 92, 125, 0.14);
      transform: translateY(-5px) scale(1.03);
    }

    .footer {
      background: #20243d;
      color: #eee;
      border-radius: 0.5rem 0.5rem 0 0;
    }

    /* Shine text effect for button */
    .shine-text {
      position: relative;
      overflow: hidden;
      display: inline-block;
      /* color: inherit; giữ màu chữ */
    }

    .shine-text::after {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0.05) 100%);
      transform: skewX(-25deg);
      animation: shine-move 1.8s infinite;
      pointer-events: none;
    }

    @keyframes shine-move {
      0% {
        left: -75%;
      }

      100% {
        left: 125%;
      }
    }


.hero-banner {
  z-index: 1;
}

@media (max-width: 767px) {
  .hero-banner h1 {
    font-size: 2rem;
  }
}

.slider-content .slider-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.7, -0.01, .21, 1.05), transform .7s cubic-bezier(.7, -0.01, .21, 1.05);
}

.slider-content.active .slider-text,
.carousel-item.active .slider-text {
  opacity: 1;
  transform: none;
}

/* Hover layer + Xem chi tiết nút cho SALE */
.product-box.position-relative {
  overflow: hidden;
}

.product-hover-layer {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s;
  z-index: 2;
}

.product-box.position-relative:hover .product-hover-layer {
  opacity: 1;
}

.product-hover-layer .btn {
  font-size: 1.12rem;
  border-radius: 2rem;
  background: linear-gradient(90deg, #fc5c7d, #6a82fb);
  color: #fff !important;
  border: none;
  box-shadow: 0 3px 12px rgba(67, 56, 202, 0.11);
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.6rem 2rem 0.6rem 2rem;
  transition: background 0.15s, box-shadow 0.15s;
}

.product-hover-layer .btn:hover {
  background: linear-gradient(90deg, #6a82fb, #fc5c7d);
  box-shadow: 0 5px 18px rgba(252, 92, 125, 0.27);
  color: #fff;
}


/* cart page */
/* Khối sản phẩm trong giỏ hàng */
.wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block {
  padding: 1rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  
}

.wc-block-components-main.wc-block-cart__main.wp-block-woocommerce-cart-items-block:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px); /* hiệu ứng nổi nhẹ */
}

/* Khối tổng tiền (sidebar) */
.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block {
  padding: 1rem;
  max-height: fit-content;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border-left: 1px solid #eee;
}

.wc-block-components-sidebar.wc-block-cart__sidebar.wp-block-woocommerce-cart-totals-block:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

a.wc-block-components-product-name {
    color: black;
    text-decoration: none;
    font-weight: bold;
}


button.wc-block-cart-item__remove-link {
  background-color: #f8d7da !important;
  color: #dc3545 !important;
  border: none !important;
  padding: 2px 8px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.25s ease-in-out !important;
  text-decoration: none !important;
}

button.wc-block-cart-item__remove-link:hover {
  background-color: #dc3545 !important;
  color: #fff !important;
  transform: scale(1.1) !important;
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.25) !important;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    background: #28a745 !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: background 0.3s ease !important;
}
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
    background: #218838 !important;
}
