.shadows-container {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
.shadows-container:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

/* ===== HIẾU BIKE SOCIAL SHARE STYLES ===== */

.hb-social-share {
  margin-bottom: 15px;
  /* padding: 15px; */
  background: transparent;
  position: relative;
}

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

.hb-social-share-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ast-global-color-3, #333333);
  margin: 0;
  white-space: nowrap;
}

.hb-social-share-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Social Icon Buttons - Compact Round Style */
.hb-share-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--ast-global-color-0, #046bd2);
  color: white;
  text-decoration: none;
  padding: 0;
}

.hb-share-icon-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: white;
}

.hb-share-icon-btn:active {
  transform: scale(0.95);
}

.hb-share-icon-btn i {
  font-size: 14px;
}

/* Copy Link Button - Text Style */
.hb-share-copy {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--ast-global-color-6, #e2e8f0);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ast-global-color-3, #333333);
  background: var(--ast-global-color-5, #ffffff);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.hb-share-copy:hover {
  background: var(--ast-global-color-4, #f9fafb);
  border-color: var(--ast-global-color-0, #046bd2);
  color: var(--ast-global-color-0, #046bd2);
}

.hb-share-copy i {
  font-size: 12px;
}

.hb-share-text {
  font-size: 13px;
}

/* Toast Notification */
.hb-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #10b981;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 350px;
  font-size: 14px;
  font-weight: 500;
}

.hb-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.hb-toast i {
  font-size: 16px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hb-social-share-container {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 8px;
  }

  .hb-social-share-title {
    font-size: 13px;
  }

  .hb-share-icon-btn {
    width: 28px;
    height: 28px;
  }

  .hb-share-icon-btn i {
    font-size: 12px;
  }

  .hb-share-copy {
    padding: 5px 10px;
    font-size: 12px;
  }

  .hb-toast {
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }

  .hb-toast.show {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .hb-social-share {
    padding: 10px;
  }

  .hb-social-share-container {
    gap: 6px;
  }
}

/* Print styles - ẩn khi in */
@media print {
  .hb-social-share {
    display: none;
  }
}

/* ===== WOOCOMMERCE SINGLE PRODUCT TABS STYLES ===== */

.woocommerce-js div.product .woocommerce-tabs ul.tabs::before {
  display: none !important;
}

/* Main tabs container */
.woocommerce-tabs {
  /* margin-top: 30px; */
  margin-bottom: 0 !important;
  padding: 0 !important;
  background: transparent;
  border: none;
}

/* Tab navigation list */
.woocommerce-tabs .wc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--ast-global-color-5, #ffffff);
  /* border-radius: 12px; */
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-bottom: 5px solid var(--ast-global-color-0);
}

/* Individual tab items */
.woocommerce-tabs .wc-tabs li {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  /* border-radius: 8px; */
  overflow: hidden;
  /* flex: 1; */
  /* min-width: 120px; */
}

/* Tab links */
.woocommerce-tabs .wc-tabs li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px !important;
  font-size: 16px;
  font-weight: 500;
  color: var(--ast-global-color-3, #333333);
  text-decoration: none;
  /* border-radius: 8px; */
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
}

.woocommerce-tabs .wc-tabs li a:hover {
  color: var(--ast-global-color-0, #046bd2);
  background: var(--ast-global-color-4, #f8fafc);
  border-color: var(--ast-global-color-6, #e2e8f0);
  /* transform: translateY(-1px); Bỏ không dùng vì đang có vấn đề UI */
}

/* Active tab styling */
.woocommerce-tabs .wc-tabs li.active a,
.woocommerce-tabs .wc-tabs li.ui-tabs-active a,
.woocommerce-tabs .wc-tabs li.active a:hover,
.woocommerce-tabs .wc-tabs li.ui-tabs-active a:hover {
  background: var(--ast-global-color-0, #046bd2);
  color: var(--ast-global-color-5) !important;
  border-color: var(--ast-global-color-0, #046bd2);
  box-shadow: 0 4px 12px rgba(4, 107, 210, 0.3);
  font-weight: 600;
}

.woocommerce-tabs .wc-tabs li.active a:hover,
.woocommerce-tabs .wc-tabs li.ui-tabs-active a:hover {
  /* transform: translateY(-1px); */
}

/* Tab content panels */
.woocommerce-tabs .wc-tab,
.woocommerce-tabs .panel {
  padding: 24px 0;
  margin-top: 20px;
  background: transparent;
  border: none;
  border-radius: 12px;
}

.woocommerce-tabs .wc-tab h2,
.woocommerce-tabs .panel h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ast-global-color-2, #1a202c);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ast-global-color-6, #e2e8f0);
}

.woocommerce-tabs .wc-tab p,
.woocommerce-tabs .panel p {
  color: var(--ast-global-color-3, #333333);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Reviews tab specific styling */
.woocommerce-tabs #tab-reviews ol.commentlist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-tabs #tab-reviews .comment {
  background: var(--ast-global-color-5, #ffffff);
  border: 1px solid var(--ast-global-color-6, #e2e8f0);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Additional info table styling */
.woocommerce-tabs .woocommerce-product-attributes {
  border: 1px solid var(--ast-global-color-6, #e2e8f0);
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce-tabs .woocommerce-product-attributes tr {
  border-bottom: 1px solid var(--ast-global-color-6, #e2e8f0);
}

.woocommerce-tabs .woocommerce-product-attributes tr:last-child {
  border-bottom: none;
}

.woocommerce-tabs .woocommerce-product-attributes th,
.woocommerce-tabs .woocommerce-product-attributes td {
  padding: 16px 20px;
  border: none;
}

.woocommerce-tabs .woocommerce-product-attributes th {
  background: var(--ast-global-color-4, #f8fafc);
  font-weight: 600;
  color: var(--ast-global-color-2, #1a202c);
  width: 30%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .woocommerce-tabs .wc-tabs {
    /* flex-direction: column; */
    gap: 4px;
    padding: 6px;
  }

  .woocommerce-tabs .wc-tabs li {
    flex: none;
    min-width: auto;
  }

  .woocommerce-tabs .wc-tabs li a {
    padding: 10px 16px !important;
    font-size: 14px;
    justify-content: flex-start;
  }

  .woocommerce-tabs .wc-tab,
  .woocommerce-tabs .panel {
    padding: 20px 0;
    margin-top: 16px;
  }

  .woocommerce-tabs .wc-tab h2,
  .woocommerce-tabs .panel h2 {
    font-size: 18px;
  }

  .woocommerce-tabs .woocommerce-product-attributes th,
  .woocommerce-tabs .woocommerce-product-attributes td {
    padding: 12px 16px;
  }

  .woocommerce-tabs .woocommerce-product-attributes th {
    width: 40%;
  }
}

@media (max-width: 480px) {
  .woocommerce-tabs {
    margin-top: 20px;
  }

  .woocommerce-tabs .wc-tabs {
    padding: 4px;
  }

  .woocommerce-tabs .wc-tabs li a {
    padding: 6px 4px !important;
    font-size: 13px;
  }

  .woocommerce-tabs .wc-tab,
  .woocommerce-tabs .panel {
    padding: 16px 0;
    margin-top: 12px;
  }

  .woocommerce-tabs #tab-reviews .comment {
    padding: 16px;
  }

  .woocommerce-tabs .woocommerce-product-attributes th,
  .woocommerce-tabs .woocommerce-product-attributes td {
    padding: 10px 12px;
    font-size: 14px;
  }

  .woocommerce-tabs .woocommerce-product-attributes th {
    width: 45%;
  }
}

/* Animation for tab content transitions */
.woocommerce-tabs .wc-tab,
.woocommerce-tabs .panel {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.3s ease forwards;
}

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

/* Focus states for accessibility */
.woocommerce-tabs .wc-tabs li a:focus {
  outline: 2px solid var(--ast-global-color-0, #046bd2);
  outline-offset: 2px;
}

/* Print styles - hide tabs navigation when printing */
@media print {
  .woocommerce-tabs .wc-tabs {
    display: none;
  }
}

.hb-share-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hb-share-btn i {
  font-size: 18px;
  flex-shrink: 0;
}

.hb-share-text {
  font-size: 14px;
  white-space: nowrap;
}

/* Facebook Button */
.hb-share-facebook {
  background: #1877f2;
  color: white;
}

.hb-share-facebook:hover {
  background: #166fe5;
  color: white;
}

/* Messenger Button */
.hb-share-messenger {
  background: #00b2ff;
  color: white;
}

.hb-share-messenger:hover {
  background: #0099e6;
  color: white;
}

/* Zalo Button */
.hb-share-zalo {
  background: #0068ff;
  color: white;
}

.hb-share-zalo:hover {
  background: #0056d6;
  color: white;
}

.hb-share-zalo i {
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
}

/* Copy Link Button */
.hb-share-copy {
  background: #6b7280;
  color: white;
}

.hb-share-copy:hover {
  background: #4b5563;
  color: white;
}

/* Toast Notification */
.hb-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #10b981;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 350px;
  font-size: 14px;
  font-weight: 500;
}

.hb-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.hb-toast i {
  font-size: 16px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hb-social-share {
    margin: 15px 0;
    padding: 15px;
  }

  .hb-social-share-buttons {
    /* flex-direction: column; */
    gap: 10px;
  }

  .hb-share-btn {
    width: 100%;
    min-width: auto;
    padding: 14px 20px;
    justify-content: center;
  }

  .hb-share-text {
    font-size: 15px;
  }

  .hb-toast {
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }

  .hb-toast.show {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .hb-social-share-title {
    font-size: 15px;
  }

  .hb-share-btn {
    padding: 12px 16px;
  }

  .hb-share-btn i {
    font-size: 16px;
  }

  .hb-share-text {
    font-size: 14px;
  }
}

/* Animation cho hover effect */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(24, 119, 242, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(24, 119, 242, 0);
  }
}

.hb-share-facebook:focus {
  animation: pulse 1.5s infinite;
}

/* Loading state cho buttons */
.hb-share-btn.loading {
  position: relative;
  color: transparent;
}

.hb-share-btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Dark mode support */
/* @media (prefers-color-scheme: dark) {
  .hb-social-share {
    background: #1f2937;
    border-color: #374151;
  }

  .hb-social-share-title {
    color: #f9fafb;
  }
} */

/* Print styles - ẩn khi in */
@media print {
  .hb-social-share {
    display: none;
  }
}

/* add to card button */

/* Impressive shine & press effect */
.impressive-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, filter 0.2s ease, box-shadow 0.3s ease;
}

.impressive-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.impressive-btn:active {
  transform: translateY(0) scale(0.95);
  filter: brightness(0.9);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* sliding light stripe */
.impressive-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.impressive-btn:hover::before {
  left: 120%;
}

/* ripple-on-click fallback */
.impressive-btn:focus:not(:hover)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  to {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
