@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

:root {
  --primary-color: #007bff;
  --text-color: #333;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #666;
  --border-radius: 8px;
  --yellow: #e9bb4f;
}

.ab-container {
  padding: 40px;
}

.ab-product-details-cont {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  padding: 15px;
}

.ab-breadcrumb {
  display: flex;
  align-items: center;
  font-size: 0.95em;
  color: var(--dark-gray);
  margin-bottom: 25px;
  padding: 10px 0;
}

.ab-breadcrumb a {
  color: var(--dark-gray);
  text-decoration: none;
  padding: 0 5px;
  transition: color 0.2s ease-in-out;
}

.ab-breadcrumb a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.ab-breadcrumb span:last-child {
  color: var(--primary-color);
  font-weight: 500;
  padding: 0 5px;
}

.ab-breadcrumb-separator {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--dark-gray);
  border-radius: 50%;
  margin: 0 10px;
  opacity: 0.7;
}

.ab-product-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
}

.ab-product-image-section,
.ab-product-details-section {
  flex: 1;
  min-width: 300px;
}

.ab-product-image-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  padding-right: 40px;
  background-color: #ffffff;
}

.ab-product-image-section::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #e0e0e0;
  height: 100%;
  z-index: 1;
}

.ab-main-image-container {
  width: 100%;
  max-width: 400px;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ab-main-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  display: block;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.ab-thumbnail-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 450px;
  padding: 15PX;
}

.ab-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.ab-thumbnail:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 123, 255, 0.5);
}

.ab-thumbnail.active {
  border-color: var(--primary-color) !important;
  border-width: 3px !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
  z-index: 1;
  position: relative;
}

.ab-product-details-section {
  padding-left: 40px;
}

.ab-product-brand {
  font-size: 1.1em;
  color: var(--dark-gray);
  margin-bottom: 5px;
}

.ab-product-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  color: #222;
}

.ab-product-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.ab-product-actions .update-wishlist {
  font-size: 1.5em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: var(--dark-gray);
}

.ab-product-actions .update-wishlist:hover {
  transform: scale(1.15);
  color: #ef4444 !important;
}

.ab-product-actions .update-wishlist.ab-wishlist-active {
  color: #ef4444 !important;
  animation: heartPulse 0.6s ease;
}

.ab-product-actions .update-wishlist.ab-wishlist-clicked {
  animation: heartBeat 0.5s ease;
}

/* Share Icon Wrapper for Product Detail Page */
.ab-product-actions .ab-share-wrapper {
  position: relative;
  display: inline-block;
}

.ab-product-actions .ab-share-icon {
  font-size: 1.5em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: var(--dark-gray);
  position: relative;
}

.ab-product-actions .ab-share-icon:hover {
  color: #3b82f6 !important;
  transform: scale(1.15);
}

.ab-product-actions .ab-share-icon.ab-share-active {
  color: #3b82f6 !important;
  animation: sharePulse 0.4s ease;
}

@keyframes sharePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2) rotate(5deg);
  }
  100% {
    transform: scale(1);
  }
}

/* Share Dropdown for Product Detail Page */
.ab-product-actions .ab-share-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 8px;
  min-width: 180px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.ab-product-actions .ab-share-wrapper.active .ab-share-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.ab-product-actions .ab-share-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

.ab-product-actions .ab-share-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.ab-product-actions .ab-share-option:hover {
  background-color: #f3f4f6;
  transform: translateX(4px);
}

.ab-product-actions .ab-share-option i {
  font-size: 20px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-product-actions .ab-share-option[data-share="whatsapp"] i {
  color: #25D366;
}

.ab-product-actions .ab-share-option[data-share="facebook"] i {
  color: #1877F2;
}

.ab-product-actions .ab-share-option[data-share="twitter"] i {
  color: #1DA1F2;
}

.ab-product-actions .ab-share-option[data-share="copy"] i {
  color: #6B7280;
}

.ab-product-actions .ab-share-option span {
  flex: 1;
  white-space: nowrap;
}

/* Responsive adjustments for share dropdown on product detail page */
@media (max-width: 992px) {
  .ab-product-actions {
    overflow: visible !important;
  }
  
  .ab-product-actions .ab-share-wrapper {
    position: relative;
    overflow: visible !important;
  }
  
  .ab-product-actions .ab-share-wrapper .ab-share-dropdown {
    right: 0 !important;
    left: auto !important;
    transform: translateY(-10px) scale(0.95) !important;
    min-width: 160px;
    max-width: calc(100vw - 30px);
    transform-origin: top right;
  }
  
  .ab-product-actions .ab-share-wrapper.active .ab-share-dropdown {
    transform: translateY(0) scale(1) !important;
  }
  
  .ab-product-actions .ab-share-wrapper .ab-share-dropdown::before {
    right: 20px !important;
    left: auto !important;
  }
  
  .ab-product-actions .ab-share-option {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .ab-product-actions .ab-share-option i {
    font-size: 18px;
    width: 20px;
  }
}

@media (max-width: 768px) {
  .ab-product-actions .ab-share-wrapper .ab-share-dropdown {
    right: 0 !important;
    transform: translateY(-10px) scale(0.95) !important;
    min-width: 150px;
    max-width: calc(100vw - 30px);
  }
  
  .ab-product-actions .ab-share-wrapper.active .ab-share-dropdown {
    transform: translateY(0) scale(1) !important;
  }
}

@media (max-width: 480px) {
  .ab-product-actions .ab-share-wrapper .ab-share-dropdown {
    right: 0 !important;
    transform: translateY(-10px) scale(0.95) !important;
    min-width: 140px;
    max-width: calc(100vw - 20px);
  }
  
  .ab-product-actions .ab-share-wrapper.active .ab-share-dropdown {
    transform: translateY(0) scale(1) !important;
  }
  
  .ab-product-actions .ab-share-wrapper .ab-share-dropdown::before {
    right: 15px !important;
  }
}

@keyframes heartPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1.1);
  }
}

.ab-action-icon {
  font-size: 1.5em;
  color: var(--dark-gray);
  cursor: pointer;
  transition: color 0.3s ease;
}

.ab-action-icon:hover {
  color: var(--primary-color);
}

.ab-price-sold {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ab-price-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ab-original-price {
  font-size: 1rem;
  color: var(--dark-gray);
  text-decoration: line-through;
}

.ab-current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

.ab-sold-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  font-size: 1em;
  color: var(--dark-gray);
}

.ab-star-rating {
  color: var(--yellow);
  font-size: 1.2em;
}

.ab-description-section {
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ab-description-section:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.ab-description-section h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #222;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ab-description-section h3::before {
  content: '📝';
  font-size: 1.2em;
}

.ab-description-text {
  font-size: 1.05em;
  color: var(--text-color);
  line-height: 1.8;
  text-align: justify;
  position: relative;
}

.ab-description-short,
.ab-description-full {
  display: inline;
  transition: all 0.3s ease;
}

.ab-description-full {
  display: none;
}

.ab-see-more {
  color: var(--primary-color);
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 6px;
  background-color: rgba(0, 123, 255, 0.1);
}

.ab-see-more:hover {
  color: #fff;
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
  text-decoration: none;
}

.ab-see-more::after {
  content: '↓';
  transition: transform 0.3s ease;
  display: inline-block;
}

.ab-see-more.expanded::after {
  transform: rotate(180deg);
  content: '↑';
}

.ab-color-selection,
.ab-variant-selection {
  margin-top: 25px;
}

.ab-selection-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.ab-color-options {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
  padding: 10px;
}

.ab-color-circle {
  width: 55px;
  height: 35px;
  border-radius: var(--border-radius);
  border: 2px solid var(--medium-gray);
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.2s ease;
  padding: 2px;
  background-clip: content-box;
  box-sizing: border-box;
}

.ab-color-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ab-color-circle.active {
  border-color: var(--primary-color) !important;
  border-width: 3px !important;
  transform: scale(1.15);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
  z-index: 1;
  position: relative;
}

.ab-variant-options {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.ab-variant-button {
  padding: 10px 25px;
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
  background-color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
  background-clip: content-box;
  box-sizing: border-box;
}

.ab-variant-button:hover,
.ab-variant-button.active {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.ab-action-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.ab-action-buttons .ab-button {
  padding: 10px 30px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1em;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.ab-add-to-cart {
  background-color: var(--yellow);
  color: #fff;
}

.ab-add-to-cart:hover {
  background-color: #e6b840;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(240, 193, 75, 0.3);
}

.ab-buy-now {
  background-color: #fff;
  color: #111;
  padding: 8px 28px !important;
  border: 1px solid rgba(0, 0, 0, 0.5) !important;
}

.ab-buy-now:hover {
  background-color: rgb(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.ab-advance-book {
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  color: #fff;
  padding: 8px 28px !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.ab-advance-book:hover {
  background: linear-gradient(135deg, #4338ca, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
}

@media (max-width: 1024px) {
  .ab-product-container {
    flex-direction: column;
  }

  .ab-main-image-container {
    max-width: 100%;
  }

  .ab-product-details-section {
    padding-left: 0;
  }

  .ab-product-image-section {
    padding-right: 0;
  }

  .ab-product-image-section::after {
    display: none;
  }

  .ab-product-title {
    font-size: 1.7rem;
  }

  .ab-current-price {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .ab-container {
    padding: 20px;
  }
  .ab-product-details-cont .ab-breadcrumb {
    margin-bottom: 0px !important;
  }
  .ab-product-details-cont .ab-product-container {
    margin-top: 20px !important;
    gap: 20px !important;
  }
  .ab-main-image-container {
    max-width: 100%;
  }
  .ab-product-details-section {
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
    margin-top: 20px;
  }
  .ab-product-details .ab-product-container {
    gap: 10px;
  }
  .ab-product-title {
    font-size: 1.8em;
  }
  .ab-product-details .ab-price-sold {
    flex-direction: column;
    align-items: start;
  }
  .ab-current-price {
    font-size: 1.8em;
  }
  .ab-price-sold {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
  }
  .ab-price-info {
    justify-content: start;
    margin-left: 0;
  }

  .ab-sold-info {
    margin-left: 0;
    width: 100%;
  }

  .ab-action-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .ab-action-buttons .ab-button {
    width: 100%;
  }

  .ab-thumbnail-gallery {
    justify-content: center;
  }

  .ab-color-options,
  .ab-variant-options {
    justify-content: start;
  }
}

@media (max-width: 480px) {
  .ab-product-title {
    font-size: 1.5em;
  }

  .ab-current-price {
    font-size: 1.5em;
  }

  .ab-thumbnail {
    width: 50px;
    height: 50px;
  }

  .ab-color-circle {
    width: 30px;
    height: 30px;
  }

  .ab-variant-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

.ab-product-tabs-section {
  margin: 40px auto;
  max-width: 1200px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 0;
}

.ab-tab-buttons {
  display: flex;
  border-bottom: 2px solid #f0f0f0;
  background: linear-gradient(to bottom, #fafafa, #ffffff);
  padding: 0;
  margin: 0;
  position: relative;
}

.ab-tab-button {
  padding: 18px 35px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 5px;
  position: relative;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px 12px 0 0;
}

.ab-tab-button::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--yellow));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-tab-button:hover {
  color: var(--primary-color);
  background-color: rgba(0, 123, 255, 0.05);
}

.ab-tab-button:hover::before {
  transform: scaleX(0.5);
}

.ab-tab-button.active {
  color: var(--primary-color);
  background-color: rgba(0, 123, 255, 0.08);
  font-weight: 600;
}

.ab-tab-button.active::before {
  transform: scaleX(1);
}

.ab-tab-button i {
  font-size: 1.1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ab-tab-button.active i {
  opacity: 1;
  transform: scale(1.1);
}

.ab-tab-content {
  padding: 40px;
  min-height: 200px;
  position: relative;
}

.ab-tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  animation: fadeInUp 0.4s ease forwards;
}

.ab-tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ab-tab-pane h4 {
  font-size: 1.5em;
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ab-tab-pane h4::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--primary-color), var(--yellow));
  border-radius: 2px;
}

.ab-tab-pane p {
  font-size: 1.05em;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 20px;
  text-align: justify;
}

.ab-specifications-wrapper {
  margin-top: 20px;
}

.ab-specifications-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}

.ab-specifications-table th,
.ab-specifications-table td {
  padding: 18px 24px;
  text-align: left;
  font-size: 1em;
  color: var(--text-color);
  border: none;
  transition: all 0.2s ease;
}

.ab-specifications-table th {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  font-weight: 700;
  width: 35%;
  white-space: nowrap;
  color: #2c3e50;
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.ab-specifications-table th::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
}

.ab-specifications-table td {
  background-color: #ffffff;
  font-weight: 500;
  color: #495057;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.ab-specifications-table tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.ab-specifications-table tr:hover {
  background-color: #f8f9fa;
  transform: translateX(5px);
  box-shadow: -4px 0 8px rgba(0, 123, 255, 0.1);
}

.ab-specifications-table tr:hover td {
  border-left-color: var(--primary-color);
  color: #212529;
}

.ab-specifications-table tr:last-child {
  border-bottom: none;
}

.ab-specifications-table tr:nth-child(even) {
  background-color: #fafbfc;
}

.ab-specifications-table tr:nth-child(even):hover {
  background-color: #f1f3f5;
}

@media (max-width: 768px) {
  .ab-product-tabs-section {
    margin-top: 0px !important;
  }
  .ab-tab-button {
    margin-right: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1em;
  }
  .ab-specifications-table th,
  .ab-specifications-table td {
    padding: 8px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .ab-tab-button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
    border-radius: 8px;
  }
  .ab-tab-button::before {
    display: none;
  }
  .ab-tab-content {
    padding: 20px 15px;
  }
  .ab-description-content h4,
  .ab-specifications-wrapper h4 {
    font-size: 1.2em;
  }
  .ab-description-rich-text {
    font-size: 1em;
    text-align: left;
  }
  .ab-specifications-table {
    border-radius: 8px;
  }
  .ab-specifications-table th,
  .ab-specifications-table td {
    padding: 12px;
    font-size: 0.85em;
  }
  .ab-specifications-table th {
    width: 45%;
    font-size: 0.8em;
  }
  .ab-specifications-table tr:hover {
    transform: translateX(0);
  }
}

/* Additional Interactive Enhancements */
.ab-tab-pane table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.ab-tab-pane table tr {
  transition: all 0.3s ease;
}

.ab-tab-pane table tr:hover {
  background-color: #f8f9fa !important;
}

/* Smooth transitions for all interactive elements */
.ab-product-tabs-section * {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced scrollbar for specifications */
.ab-specifications-wrapper .table-responsive::-webkit-scrollbar {
  height: 8px;
}

.ab-specifications-wrapper .table-responsive::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.ab-specifications-wrapper .table-responsive::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--primary-color), var(--yellow));
  border-radius: 10px;
}

.ab-specifications-wrapper .table-responsive::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #0056b3, #d4a017);
}

.ab-container .ab-title h2 {
  font-size: 500;
}
.ab-container .ab-title h2 {
  font-size: 500;
}
