/* Ensure notices are visible */
.woocommerce-error, .woocommerce-message {
  display: block !important;
  opacity: 1 !important;
  position: relative !important;
}





.ns-single-add-btn.single_add_to_cart_button {
  background: var(--wilddragon-secondary-dark) !important;
  color: #fff !important;
  font-family: inherit;
  padding: 0.75em 1.5em;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.5px;
  border: 3px solid #000000 !important;
  border-radius: 0.5em;
  box-shadow:
    0.1em 0.1em 0 #000000,
    0 4px 12px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  background-clip: padding-box;
  outline: none;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.ns-single-add-btn.single_add_to_cart_button:hover {
  background: var(--wilddragon-secondary-hover) !important;
  color: #fff !important;
  transform: translate(-0.05em, -0.05em);
  box-shadow:
    0.15em 0.15em 0 #000000,
    0 6px 16px rgba(0, 0, 0, 0.3);
  border-color: #000000 !important;
}

.ns-single-add-btn.single_add_to_cart_button:active {
  transform: translate(0.05em, 0.05em);
  box-shadow:
    0.05em 0.05em 0 #000000,
    0 2px 6px rgba(0, 0, 0, 0.2);
}

.ns-single-add-btn.single_add_to_cart_button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left 0.5s ease;
}

.ns-single-add-btn.single_add_to_cart_button:hover::after {
  left: 125%;
}








/* ===== PART 1: BASE STYLES & PRODUCT LAYOUT ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: inherit;
  line-height: 1.6;
  color: var(--text-color);
}

/* =====  body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}  ===== */

h1, h2, h3, h4, p, ul, ol, figure {
  margin: 0;
  padding: 0;
}

a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #ff0202;
}

/* Layout Containers */
.row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flow-root;
}

.row::before,
.row::after,
.row .row::before,
.row .row::after {
  content: " ";
  display: table;
}

.row::after,
.row .row::after {
  clear: both;
}

.row .row {
  width: auto;
  margin: 0 -10px;
  max-width: none;
}

.columns {
  position: relative;
  width: 100%;
  float: left;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Product Info Section */
.product-info {
 
  background: #fff;
  /*border: 1px solid #e0e0e0;*/
  border-radius: 5px;
}

.product-info .product_title {
  font-size: 1.8em;
  font-weight: 600;
  color: #2d2a2a;
 
}

/* Price Styles */
.price {
  font-size: 1.5em;
  color: #333;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 15px;
}

.price del {
  position: relative;
  color: #d00;
  font-size: 0.9em;
}

.price del::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 2px;
  background: #d00;
  transform: translateY(-50%);
  animation: strike 0.6s ease-out forwards;
}

.price ins {
  color: #000;
  font-size: 1.3em;
  font-weight: 700;
  text-decoration: none;
  animation: pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

/* Quantity Controls */
.quantity {
  width: 65px;
  position: relative;
  margin-bottom: 15px;
  display: inline-block;

}

.quantity .input-text.qty {
  width: 60px;
  padding: 10px;
  margin: 0 5px;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

.quantity .minus,
.quantity .plus {
  width: 21px;
  height: 21px;
  position: absolute;
  right: 0;
  padding: 0;
  border: 1px solid #efefef;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.quantity .minus {
  bottom: 0;
  border-top: none;
}

.quantity .minus:hover,
.quantity .plus:hover {
  background: #efefef;
}

.quantity .minus svg,
.quantity .plus svg {
  width: 12px;
  height: 12px;
}

/* Animations */
@keyframes strike {
  to { width: 100%; }
}

@keyframes pop {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .product-info .product_title {
    font-size: 1.5em;
  }
  
  .quantity {
    width: 100%;
  }
  
  .quantity .input-text.qty {
    width: 80px;
  }
  
  body input {
    font-size: 16px;
  }
}

/* Tablet Responsiveness */
@media (min-width: 768px) and (max-width: 1024px) {
  .product-info {
    padding: 0px;
  }
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.4em;
  color: #333;
}

table th, table td {
 
  text-align: left;
 
}

table th {
  font-weight: 700;
  color: #000;
}


/* ===== PART 2: PRODUCT VARIATIONS & ADD TO CART ===== */

/* Variation Selectors */
.variations {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}

.variations .label {
  
  padding: 8px 0;
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #333;
}

.variations .value {
  display: block;
  padding: 0 0 10px;
}

.variations select {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 1em;
}

.reset_variations {
  font-size: 0.8em;
  color: #888;
  margin-top: 5px;
  display: inline-block;
}

/* Color Swatch Container */
.nasa-attr-ux_wrap {
  display: block;
  margin: 10px 0;
  width: 100%;
}

/* Clear floats */
.nasa-attr-ux_wrap:after {
  content: "";
  display: table;
  clear: both;
}




/* Colors Visible */
/* Color Swatch Container */
.nasa-attr-ux_wrap {
  display: block;
  margin: 10px 0;
  width: 100%;
}

/* Clear floats */
.nasa-attr-ux_wrap:after {
  content: "";
  display: table;
  clear: both;
}

/* Individual Color Swatch */
.nasa-attr-ux {
  display: inline-block;
  margin: 2px 10px 3px 0;
  float: left;
}

/* Color Circle Container */
.nasa-attr-bg {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  background-color: #EAEAEA;
}

/* Actual Color Display */
.nasa-attr-bg > span {
  display: block;
  width: 100%;
  height: 100%;
}

/* Selected State */
.nasa-attr-ux.selected .nasa-attr-bg,
.selected .nasa-attr-bg {
  border-color: #666;
  opacity: 1;
}

.selected .nasa-attr-bg::before {
  content: "";
  width: 6px;
  height: 9px;
  display: block;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  z-index: 1;
}

/* Hover Effects */
.nasa-attr-ux:hover .nasa-attr-bg {
  opacity: 1;
  border-color: var(--wilddragon-secondary-hover);
}

/* Color Swatches with Tooltip */
.nasa-attr-ux-color {
  position: relative;
}

.nasa-attr-ux-color .nasa-attr-text {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.nasa-attr-ux-color .nasa-attr-text:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -4px;
  border-width: 4px;
  border-style: solid;
  border-color: #333 transparent transparent;
}

.nasa-attr-ux-color:hover .nasa-attr-text {
  opacity: 1;
}
/* End Colors Visible */







/* Circular Color Swatches */
.nasa-color-round .nasa-attr-ux-color {
  padding: 3px;
  border: 1px solid transparent;
  border-radius: 50%;
}

.nasa-color-round .nasa-attr-ux-color .nasa-attr-bg {
  height: 25px;
  width: 25px;
}

.nasa-color-round .nasa-attr-ux-color .nasa-attr-bg:after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0px -2px 3px -1px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.nasa-color-round .nasa-attr-ux-color:hover {
  border-color: #888;
}

.nasa-color-round .nasa-attr-ux-color.selected {
  border-color: #666;
}

/* Label Swatches */
.nasa-attr-ux-label {
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 0.85em;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nasa-label-round .nasa-attr-ux-label .nasa-attr-bg {
  display: none;
}

.nasa-label-round .nasa-attr-ux-label .nasa-attr-text {
  font-size: 85%;
  font-weight: 800;
  color: #333;
  line-height: inherit;
}

.nasa-label-round .nasa-attr-ux-label:hover {
  border-color: var(--wilddragon-secondary-hover);
}

.nasa-label-round .nasa-attr-ux-label.selected {
  border-color: #333;
  background: #333;
}

.nasa-label-round .nasa-attr-ux-label.selected .nasa-attr-text {
  color: #fff;
}

/* 3D Add to Cart Button */
.single_add_to_cart_button {
  width: 100%;
  max-width: 300px;
  padding: 12px 20px;
  margin: 15px 0;
  background: #000;
  border: 1px solid #000;
  color: #fff;
  font-size: 1em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 8px;
  
  /* 3D effect properties */
  box-shadow: 0 4px 0 #000, 0 6px 12px rgba(0, 0, 0, 0.1);
  will-change: transform, box-shadow;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.single_add_to_cart_button:hover {
  background: #d00;
  border-color: #d00;
  box-shadow: 0 4px 0 #000000, 0 8px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.single_add_to_cart_button:active {
  box-shadow: 0 2px 0 #d00, 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(3px);
}



/* Product Meta */
.product_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 15px 0;
  padding: 15px 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  font-size: 0.9em;
}

.product_meta > span {
  display: flex;
  align-items: center;
}

.product_meta > span:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 15px;
  margin-left: 12px;
  background: #efefef;
}

.product_meta a {
  color: #888;
  margin-left: 3px;
  transition: all 0.2s ease;
}

.product_meta a:hover {
  color: #0f9d8a;
  text-decoration: underline;
}

/* Stock Status */
.stock {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 600;
  margin-top: 5px;
}

.stock.in-stock {
  color: #0a8a07;
  background: #e9ffe9;
}

.stock.out-of-stock {
  color: #a00;
  background: #ffebeb;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .single_add_to_cart_button {
    max-width: 100%;
  }
  
  .nasa-attr-ux-label {
    min-width: 40px;
    height: 40px;
  }
  
  .product_meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .product_meta > span:not(:last-child)::after {
    display: none;
  }
}


/* ===== PART 3: SOCIAL SHARING & TRUST BADGES ===== */

/* Social Sharing Container */
.nasa-single-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.nasa-share-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #333;
}

/* Social Icons */
.nasa-share {
  display: flex;
  gap: 15px;
}

.nasa-share a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f1f1f1;
  transition: all 0.2s ease;
}

.nasa-share a:hover {
  background-color: #000;
  transform: scale(1.1);
}

.nasa-share svg {
  width: 20px;
  height: 20px;
  fill: #333;
  transition: fill 0.2s ease;
}

.nasa-share a:hover svg {
  fill: #fff;
}

/* Trust Badges Section */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid #efefef;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: #0f9d8a;
}

/* Delivery Estimates */
.nasa-est-delivery {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 20px;
}

.nasa-est-delivery svg {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

.ns-est-txt {
  color: #d00;
  font-weight: 800;
}

/* Live Counter */
.nasa-promote-sales {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 20px;
}

.nasa-count {
  color: #f76b6a;
  font-weight: 600;
  min-width: 1.5em;
  text-align: center;
}

#nasa-counter-viewing svg {
  width: 20px;
  height: 22px;
  margin-right: 5px;
  vertical-align: middle;
}

/* Last Sold Indicator */
.nasa-last-sold {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 20px 0;
  font-weight: 600;
  font-size: 15px;
}

.nasa-last-sold .last-sold-img {
  animation: nasa_flash_animate 8s infinite;
}

@keyframes nasa_flash_animate {
  0%, 30%, 100% { opacity: 1; }
  5%, 25% { opacity: 0.1; }
  10%, 20% { opacity: 0.9; }
  15% { opacity: 0.1; }
}

/* Button Styles (Global) */
a.btn-add-new-review.button {
  background: var(--wilddragon-secondary-dark);
  color: #fff;
  font-weight: bold;
  padding: 0.6em 1.2em;
  font-size: 16px;
  border: 2px solid #000;
  border-radius: 0.5em;
  box-shadow:
    0.1em 0.1em 0 #000,
    0 3px 8px rgba(0, 0, 0, 0.2);
  display: inline-block;
  text-align: center;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

a.btn-add-new-review.button:hover {
  background: var(--wilddragon-secondary-hover) !important;
  color: #fff !important;
  transform: translate(-0.05em, -0.05em);
  box-shadow:
    0.15em 0.15em 0 #000,
    0 6px 12px rgba(0, 0, 0, 0.3);
  border-color: #000 !important;
}


.nasa_reviewed_images_wrap {
  display: none;
}









/* Form Elements */
textarea, 
select, 
input[type="text"], 
input[type="email"] {
  border-radius: 0;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .nasa-single-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 15px;
  }

  .nasa-est-delivery,
  .nasa-promote-sales {
    font-size: 14px;
  }
}

/* Tablet Responsiveness */
@media (min-width: 768px) and (max-width: 1024px) {
  .trust-badges {
    gap: 15px;
  }
}


/* ===== PART 4: ACCORDIONS & PRODUCT TABS ===== */

/* Accordion Container */
.nasa-accordions-content {
  margin: 30px 0;
}

/* Accordion Title */
.nasa-accordion-title {
  margin: 0 0 5px 0;
}

/* Accordion Trigger */
.nasa-accordion-title a {
  display: block;
  position: relative;
  padding: 15px 15px 15px 40px;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Plus/Minus Icons */
.nasa-accordion-title a::before,
.nasa-accordion-title a::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  top: 50%;
  left: 15px;
  background: #666;
  transition: all 0.3s ease;
}

.nasa-accordion-title a::before {
  transform: rotate(90deg);
}

/* Active State */
.nasa-accordion-title a.active {
  background: #f0f0f0;
  border-bottom-color: transparent;
  color: var(--wilddragon-secondary-dark);
}

.nasa-accordion-title a.active::before {
  transform: rotate(0deg);
}

.nasa-accordion-title a.active::after {
  background: var(--wilddragon-secondary-dark)
}

/* Accordion Content */
.nasa-panel {
  display: none;
  padding: 20px;

  border-top: none;
  background: #fff;
}


/* Review Stars */
.star-rating {
  display: inline-block;
  width: 80px;
  height: 16px;
  position: relative;
  overflow: hidden;
}

.star-rating::before {
  content: "★★★★★";
  color: #ccc;
  font-size: 16px;
  letter-spacing: 2px;
}

.star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.star-rating span::before {
  content: "★★★★★";
  color: #ff0202;
  font-size: 16px;
  letter-spacing: 2px;
}

/* Review Form Container */
#review_form_wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  max-width: 95%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 5px 30px rgba(0,0,0,0.2);
  display: none;
}

/* Close Button */
.nasa-stclose {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: #f1f1f1;
  border-radius: 50%;
}

.nasa-stclose::before,
.nasa-stclose::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #333;
}

.nasa-stclose::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nasa-stclose::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nasa-stclose:hover {
  background: #ff0202;
}

.nasa-stclose:hover::before,
.nasa-stclose:hover::after {
  background: #fff;
}

/* Small Accordion Variant */
.nasa-small-accodion .nasa-accordion-title {
  margin-top: 0;
  padding: 0;
}

.nasa-small-accodion .nasa-accordion-title a {
  text-transform: none;
  font-size: 18px;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 15px 15px 40px;
  background-color: #f9f9f9;
}

.nasa-small-accodion .nasa-accordion-title a.active {
  border-color: transparent;
  color: #0635d3
  background-color: #f0f0f0;
}

.nasa-small-accodion .nasa-panel {
  padding: 0 0 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .nasa-accordion-title a {
    padding: 12px 12px 12px 35px;
    font-size: 15px;
  }
  
  .nasa-accordion-title a::before,
  .nasa-accordion-title a::after {
    left: 12px;
  }
  

  #review_form_wrapper {
    width: 95%;
  }
}

/* ===== PART 5: POPUPS & OVERLAYS ===== */

/* Popup Overlay */
.nasa-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 999;
  display: none;
}

/* Popup Content Container */
.nasa-node-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  width: 500px;
  max-width: calc(100% - 40px);
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.3);
  z-index: 1000;
  display: none;
  overflow: hidden;
}



/* Popup Inner Content */
.ns-inct {
  max-height: calc(90vh - 50px);
  overflow-y: auto;
  padding: 25px;
}

/* Popup Close Button Variant */
.nasa-stclose.ns-form-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}



/* Review Form Specific Styles */
#review_form_wrapper .comment-reply-title {
  font-size: 110%;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000;
}

#review_form_wrapper .nasa-message {
  display: block;
  margin-bottom: 0;
  transition: all 0.2s ease;
}

#review_form_wrapper #reply-title {
  font-size: 160%;
  color: #000;
}

#review_form_wrapper .nasa_review-submitted_sucess {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
}

#review_form_wrapper .nasa_review-submitted_sucess span.ns-thank {
  font-size: 500%;
  margin: 0;
  color: #000;
}

#review_form_wrapper #review_form {
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: #fff;
  transition: all 0.2s ease;
}

/* Rating Bars */
table.nasa-rating-bars td {
  padding: 5px 0;
  border: none;
}

table.nasa-rating-bars .star-rating-wrap {
  width: 30px;
}

table.nasa-rating-bars .star-rating-wrap span {
  display: flex;
  gap: 2px;
}

table.nasa-rating-bars .star-rating-wrap span svg {
  fill: var(--wilddragon-secondary-dark);
}

table.nasa-rating-bars .nasa-rating-per-wrap {
  padding: 5px 10px;
}

table.nasa-rating-bars .nasa-ratings-number {
  width: 20px;
  color: #666;
  font-size: 90%;
}

.nasa-rating-per {
  height: 8px;
  width: 100%;
  background: #f1f1f1;
  border-radius: 10px;
  overflow: hidden;
}

.nasa-rating-per .nasa-per-content {
  height: 100%;
  background: #000;
  border-radius: 10px;
}

/* Additional Information Tables */
.nasa-content-additional_information .shop_attributes {
  margin-bottom: 0;
  border-top: 1px solid #e0e0e0;
}

.nasa-content-additional_information .shop_attributes th,
.nasa-content-additional_information .shop_attributes td {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.nasa-content-additional_information .shop_attributes th {
  padding-right: 15px;
  font-weight: 600;
  color: #000;
}

.nasa-content-additional_information .shop_attributes td {
  color: #666;
}

/* Navigation Container */
.nasa-wrap-popup-nodes {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 10px 0 20px;
  list-style: none;
  gap: 5px;
}

/* Navigation Items */
.nasa-wrap-popup-nodes > li {
  display: inline-flex;
  align-items: center;
}

/* Navigation Separators */
.nasa-wrap-popup-nodes > li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 15px;
  margin: 0 12px;
  background: #efefef;
}

/* Navigation Links */
.nasa-wrap-popup-nodes > li > a {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.nasa-wrap-popup-nodes > li > a:hover {
  color: #0635d3;
}

/* Navigation Icons */
.nasa-wrap-popup-nodes svg {
  width: 20px;
  height: 20px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #666;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .nasa-node-content {
    width: 95% !important;
  }
  
  .ns-inct {
    padding: 15px;
  }
  
  #review_form_wrapper .comment-form .comment-form-author,
  #review_form_wrapper .comment-form .comment-form-email {
    width: 100%;
    padding: 0;
  }
  
  #review_form_wrapper #review_form {
    padding: 25px;
  }
}

/* ===== PART 6: UTILITIES & GLOBAL ENHANCEMENTS ===== */

/* Global Resets & Typography */
strong {
  font-weight: 600;
  line-height: inherit;
}

svg:not(:root) {
  overflow: hidden;
}

/* Focus Styles */
:focus-visible {
  outline: 2px solid #0f9d8a;
  outline-offset: 2px;
}

/* Utility Classes */
.flex {
  display: flex;
  gap: 1rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { 
  text-align: center; 
}

.text-error { 
  color: #ff0202; 
}

.text-success { 
  color: #0a8a07; 
}

.mt-20 { 
  margin-top: 20px !important; 
}

.mb-20 { 
  margin-bottom: 20px !important; 
}

.p-15 { 
  padding: 15px !important; 
}

/* Loading Spinner */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(0,0,0,0.1);
  border-left-color: #0f9d8a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Button Hover Effects */
.button-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Print Optimizations */
@media print {
  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
  }

  .nasa-single-share,
  .nasa-promote-sales,
  .nasa-est-delivery {
    display: none !important;
  }

  a::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: more) {
  .selected .nasa-attr-bg {
    outline: 2px solid #000;
  }

  .single_add_to_cart_button {
    border-width: 2px;
  }
}

/* Visibility Utilities */
.hide-mobile { 
  display: block; 
}

.show-mobile { 
  display: none; 
}

/* Final Mobile Responsiveness */
@media (max-width: 767px) {
  .hide-mobile { 
    display: none !important; 
  }
  
  .show-mobile { 
    display: block !important; 
  }

  .mobile-padding-left-10 { 
    padding-left: 10px !important; 
  }
  
  .mobile-padding-right-10 { 
    padding-right: 10px !important; 
  }
  
  .padding-top-20 { 
    padding-top: 20px !important; 
  }
  
  .padding-bottom-20 { 
    padding-bottom: 20px !important; 
  }

  /* Force full-width elements */
  .single_add_to_cart_button,
  .quantity,
  .variations select {
    width: 100% !important;
  }

  /* Adjust typography */
  h2 { 
    font-size: 1.4em !important; 
  }
  
  h3 { 
    font-size: 1.2em !important; 
  }
}

/* Tablet Tweaks */
@media (min-width: 768px) and (max-width: 1024px) {
  .product-info { 
    padding: 5px !important; 
  }
}

/* Animation Fixes */
.html-ready .nasa-transition,
.html-ready .nasa-accordion-title a,
.html-ready .nasa-accordion-title a::before,
.html-ready .nasa-accordion-title a::after {
  transition: all 350ms ease;
}