.btn {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 250ms ease-in-out ease-in-out, color 250ms ease-in-out ease-in-out, box-shadow 250ms ease-in-out ease-in-out, transform 250ms ease-in-out ease-in-out;
  cursor: pointer;
  text-decoration: none;
  width: 44px;
  height: 44px;
  padding: 0;
}
.btn:disabled {
  cursor: not-allowed;
}
@media (min-width: 768px) {
  .btn {
    width: auto;
    height: auto;
    padding: 12px 16px;
  }
}
.btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn:active:not(:disabled) {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: 2px solid #8b0e0e;
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: #8b0e0e;
  color: #ffffff;
}
.btn-primary:hover:not(:disabled) {
  background-color: #b41414;
}
.btn-primary:active:not(:disabled) {
  background-color: #6b0a0a;
}

.btn-secondary {
  background-color: #d4af37;
  color: #222222;
}
.btn-secondary:hover:not(:disabled) {
  background-color: #e5c158;
}
.btn-secondary:active:not(:disabled) {
  background-color: #a68a1f;
}

.btn-outline {
  background-color: transparent;
  color: #8b0e0e;
  border: 2px solid #8b0e0e;
}
.btn-outline:hover:not(:disabled) {
  background-color: #8b0e0e;
  color: #ffffff;
}
.btn-outline:active:not(:disabled) {
  background-color: #6b0a0a;
  border-color: #6b0a0a;
}

.btn-ghost {
  background-color: transparent;
  color: #222222;
}
.btn-ghost:hover:not(:disabled) {
  background-color: #f8f8f8;
}

.btn-success {
  background-color: #27ae60;
  color: #ffffff;
}
.btn-success:hover:not(:disabled) {
  background-color: #1e8449;
}

.btn-danger {
  background-color: #e74c3c;
  color: #ffffff;
}
.btn-danger:hover:not(:disabled) {
  background-color: #d62c1a;
}

.btn-sm {
  padding: 8px 12px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .btn-sm {
    padding: 8px 12px;
  }
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}
@media (min-width: 768px) {
  .btn-lg {
    padding: 16px 32px;
  }
}

.btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .btn-group {
    gap: 12px;
  }
}
.btn-group .btn {
  flex: 0 1 auto;
}
.btn-group .btn.btn-block {
  flex: 1 1 100%;
}

.btn-block {
  width: 100%;
}

.btn-fab {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 100;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .btn-fab {
    bottom: 32px;
    right: 32px;
  }
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
}
.btn-icon svg {
  width: 20px;
  height: 20px;
}

.btn.loading {
  position: relative;
  color: transparent;
}
.btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 9999px;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-group {
  margin-bottom: 24px;
}
.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #222222;
  font-size: 16px;
}
.form-label .required {
  color: #e74c3c;
  margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background-color: #ffffff;
  color: #222222;
  transition: border-color 250ms ease-in-out ease-in-out, box-shadow 250ms ease-in-out ease-in-out;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #8b0e0e;
  box-shadow: 0 0 0 3px rgba(139, 14, 14, 0.1);
}
.form-input:disabled,
.form-select:disabled,
.form-textarea:disabled {
  background-color: #f8f8f8;
  color: #999999;
  cursor: not-allowed;
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}
.form-input.success,
.form-select.success,
.form-textarea.success {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}
@media (min-width: 768px) {
  .form-textarea {
    min-height: 150px;
  }
}

.form-text {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #666666;
}

.form-error {
  color: #e74c3c;
  font-weight: 600;
}

.form-success {
  color: #27ae60;
  font-weight: 600;
}

.form-checkbox,
.form-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}
.form-checkbox input,
.form-radio input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #8b0e0e;
}
@media (min-width: 768px) {
  .form-checkbox input,
  .form-radio input {
    width: 20px;
    height: 20px;
  }
}
.form-checkbox label,
.form-radio label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}
.form-checkbox:last-child,
.form-radio:last-child {
  margin-bottom: 0;
}

.form-checkbox input {
  border-radius: 4px;
}

.form-radio input {
  border-radius: 9999px;
}

.form-checkbox-group,
.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .form-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .form-row.form-row-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .form-row.form-row-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.form-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}
.form-section:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.form-section h3 {
  margin-bottom: 16px;
}

.search-form {
  position: relative;
  display: flex;
  gap: 8px;
}
@media (min-width: 768px) {
  .search-form {
    gap: 12px;
  }
}
.search-form input {
  flex: 1;
  min-width: 0;
}
.search-form button {
  flex-shrink: 0;
}

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
input[type=number][type=number] {
  -moz-appearance: textfield;
}

.form-number {
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-number input {
  flex: 1;
  text-align: center;
}
.form-number button {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f8f8f8;
  font-weight: 700;
  color: #222222;
  transition: background-color 250ms ease-in-out ease-in-out;
}
.form-number button:disabled {
  cursor: not-allowed;
}
.form-number button:hover {
  background-color: #e0e0e0;
}
.form-number button:active {
  background-color: #c4c4c4;
}

.form-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .form-actions {
    gap: 24px;
    justify-content: flex-end;
  }
}
.form-actions button,
.form-actions input[type=submit] {
  flex: 1 1 auto;
}
@media (min-width: 768px) {
  .form-actions button,
  .form-actions input[type=submit] {
    flex: 0 1 auto;
  }
}

.form-floating {
  position: relative;
}
.form-floating label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  pointer-events: none;
  transition: top 250ms ease-in-out ease-in-out, font-size 250ms ease-in-out ease-in-out, color 250ms ease-in-out ease-in-out;
}
.form-floating input:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label {
  top: -12px;
  font-size: 14px;
  color: #8b0e0e;
  font-weight: 600;
}
.form-floating input {
  padding-top: 16px;
}

.password-toggle {
  position: relative;
}
.password-toggle .toggle-btn {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px;
  cursor: pointer;
  color: #666666;
  transition: color 250ms ease-in-out ease-in-out;
}
.password-toggle .toggle-btn:disabled {
  cursor: not-allowed;
}
.password-toggle .toggle-btn:hover {
  color: #222222;
}
.password-toggle .toggle-btn svg {
  width: 20px;
  height: 20px;
}

.card, .product-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 250ms ease-in-out ease-in-out, transform 250ms ease-in-out ease-in-out;
}
.card:hover, .product-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-header,
.card-body,
.card-footer {
  padding: 16px;
}
@media (min-width: 768px) {
  .card-header,
  .card-body,
  .card-footer {
    padding: 24px;
  }
}

.card-header {
  background-color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}
.card-header h3 {
  margin: 0;
  font-size: 18px;
}
@media (min-width: 768px) {
  .card-header h3 {
    font-size: 20px;
  }
}

.card-body:last-child {
  border-radius: 0 0 12px 12px;
}

.card-footer {
  background-color: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .card-image {
    height: 250px;
  }
}
@media (min-width: 1024px) {
  .card-image {
    height: 300px;
  }
}

.card-title {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .card-title {
    font-size: 20px;
  }
}
.card-title a {
  color: #222222;
}
.card-title a:hover {
  color: #8b0e0e;
}

.card-subtitle {
  margin: 0 0 16px 0;
  font-size: 14px;
  color: #666666;
}

.card-text {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: #666666;
  line-height: 1.75;
}
.card-text:last-child {
  margin-bottom: 0;
}

.card-elevated {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card-elevated:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-outline {
  border: 2px solid #8b0e0e;
}

.card-filled {
  background-color: #f8f8f8;
}

.card-dark {
  background-color: #222222;
  color: #ffffff;
  border-color: #333333;
}
.card-dark .card-header {
  background-color: #333333;
  border-color: #666666;
}
.card-dark .card-footer {
  background-color: #333333;
  border-color: #666666;
}
.card-dark .card-title,
.card-dark .card-subtitle {
  color: #ffffff;
}
.card-dark a {
  color: #d4af37;
}
.card-dark a:hover {
  color: #e5c158;
}

.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .card-grid {
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1440px) {
  .card-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.product-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease-in-out ease-in-out;
}
.product-card-image:hover img {
  transform: scale(1.05);
}
.product-card-image .badge {
  position: absolute;
  top: 16px;
  right: 16px;
}

.product-card-content {
  padding: 16px;
}
@media (min-width: 768px) {
  .product-card-content {
    padding: 24px;
  }
}

.product-rating {
  margin-bottom: 8px;
  font-size: 14px;
  color: #666666;
}

.product-price {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #8b0e0e;
}
@media (min-width: 768px) {
  .product-price {
    font-size: 24px;
  }
}
.product-price .original-price {
  margin-right: 12px;
  text-decoration: line-through;
  color: #999999;
  font-size: 18px;
}
.product-price .discount {
  display: inline-block;
  padding: 4px 8px;
  background-color: #e74c3c;
  color: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.woocommerce-container {
  max-width: 1400px;
  margin: 0 auto;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .product-layout {
    grid-template-columns: 2fr 1fr;
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .product-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.product-gallery {
  order: -1;
}
@media (min-width: 768px) {
  .product-gallery {
    order: 0;
  }
}

.gallery-main {
  margin-bottom: 16px;
}
.gallery-main img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.gallery-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}
@media (min-width: 768px) {
  .gallery-thumbnails {
    gap: 16px;
    flex-wrap: wrap;
  }
}
.gallery-thumbnails img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 250ms ease-in-out ease-in-out, border-color 250ms ease-in-out ease-in-out;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .gallery-thumbnails img {
    width: 80px;
    height: 80px;
  }
}
.gallery-thumbnails img:hover, .gallery-thumbnails img.active {
  opacity: 0.8;
  border-color: #8b0e0e;
}

.product-info {
  display: flex;
  flex-direction: column;
}

.product-header {
  margin-bottom: 24px;
}

.product-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .product-title {
    font-size: 28px;
  }
}

.product-rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}
.product-rating .stars {
  color: #ffa500;
  font-size: 18px;
}
.product-rating .reviews-count {
  font-size: 14px;
  color: #666666;
}

.product-pricing {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
}
.product-price .current-price {
  font-size: 28px;
  font-weight: 700;
  color: #8b0e0e;
}
@media (min-width: 768px) {
  .product-price .current-price {
    font-size: 32px;
  }
}
.product-price .original-price {
  font-size: 18px;
  color: #666666;
  text-decoration: line-through;
}
.product-price .discount {
  background-color: #e74c3c;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

.product-availability {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.product-availability.in-stock {
  color: #27ae60;
}
.product-availability.out-of-stock {
  color: #e74c3c;
}

.product-description {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}
.product-description .description-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.product-description p {
  color: #666666;
  line-height: 1.75;
}

.product-variants {
  margin-bottom: 24px;
}
.product-variants .variant-group {
  margin-bottom: 16px;
}
.product-variants .variant-group:last-child {
  margin-bottom: 0;
}
.product-variants .variant-label {
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.product-variants .variant-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-variants .variant-option {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
  color: #222222;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 250ms ease-in-out ease-in-out, border-color 250ms ease-in-out ease-in-out;
}
.product-variants .variant-option:disabled {
  cursor: not-allowed;
}
.product-variants .variant-option:hover {
  border-color: #8b0e0e;
}
.product-variants .variant-option.active {
  background-color: #8b0e0e;
  border-color: #8b0e0e;
  color: #ffffff;
}
.product-variants .variant-option:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quantity-selector {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
.quantity-selector label {
  font-weight: 600;
  margin-bottom: 0;
}
.quantity-selector .quantity-input {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.quantity-selector .quantity-input button {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  color: #222222;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 250ms ease-in-out ease-in-out;
}
.quantity-selector .quantity-input button:disabled {
  cursor: not-allowed;
}
.quantity-selector .quantity-input button:hover {
  background-color: #e0e0e0;
}
.quantity-selector .quantity-input input {
  flex: 0 0 50px;
  text-align: center;
  border: none;
  font-weight: 600;
}

.product-actions {
  display: flex;
  flexwrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .product-actions {
    gap: 16px;
  }
}
.product-actions .btn {
  flex: 1;
}
@media (min-width: 768px) {
  .product-actions .btn {
    flex: 0 1 auto;
  }
}
.product-actions .add-to-cart {
  min-width: 150px;
}
.product-actions .wishlist-btn {
  width: 44px;
  height: 44px;
  padding: 0;
}

.product-tabs {
  margin-top: 32px;
  border-top: 1px solid #e0e0e0;
}

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e0e0e0;
  overflow-x: auto;
}
.tabs-nav button {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  padding: 16px 12px;
  border-bottom: 2px solid transparent;
  background-color: #f8f8f8;
  color: #666666;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: color 250ms ease-in-out ease-in-out, border-color 250ms ease-in-out ease-in-out;
}
.tabs-nav button:disabled {
  cursor: not-allowed;
}
@media (min-width: 768px) {
  .tabs-nav button {
    padding: 16px 24px;
  }
}
.tabs-nav button:hover {
  color: #222222;
}
.tabs-nav button.active {
  color: #8b0e0e;
  border-color: #8b0e0e;
  background-color: #ffffff;
}

.tabs-content {
  padding: 24px 0;
}
.tabs-content .tab-pane {
  display: none;
}
.tabs-content .tab-pane.active {
  display: block;
}

.related-products {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #e0e0e0;
}
.related-products h2 {
  margin-bottom: 32px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.upsells {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e0e0e0;
}
.upsells h2 {
  margin-bottom: 24px;
}

.woocommerce-tabs .woocommerce-Tabs-panel.active {
  display: block;
}
.woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: none;
}
.woocommerce-tabs .woocommerce-Tabs-panel table {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-tabs .woocommerce-Tabs-panel table th {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 700;
}
.woocommerce-tabs .woocommerce-Tabs-panel table td {
  padding: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.woocommerce-tabs .woocommerce-Tabs-panel table tr:last-child td {
  border-bottom: none;
}

.woocommerce-Reviews {
  margin-top: 32px;
}
.woocommerce-Reviews .woocommerce-noreviews {
  text-align: center;
  padding: 24px;
  color: #666666;
}

.woocommerce-review {
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}
.woocommerce-review:last-child {
  border-bottom: none;
}
.woocommerce-review .comment-text {
  background-color: #f8f8f8;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.woocommerce-review .reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.woocommerce-review .reviewer img {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  object-fit: cover;
}
.woocommerce-review .reviewer .comment-author {
  font-weight: 700;
}
.woocommerce-review .review-date {
  font-size: 14px;
  color: #666666;
}
.woocommerce-review .star-rating {
  margin-bottom: 12px;
}

.comment-form-rating {
  margin-bottom: 16px;
}
.comment-form-rating .form-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.comment-form-rating .form-group label {
  margin-bottom: 0;
}
.comment-form-rating .form-group select {
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.hentry .entry-summary {
  color: #666666;
  line-height: 1.75;
}
.hentry .entry-summary p {
  margin: 0 0 12px 0;
}
.hentry .entry-summary p:last-child {
  margin-bottom: 0;
}

.entry-meta {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
}
.entry-meta a {
  color: #8b0e0e;
  text-decoration: none;
}
.entry-meta a:hover {
  text-decoration: underline;
}

.woocommerce-grouped-product-list {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.woocommerce-grouped-product-list thead {
  background-color: #f8f8f8;
  border-bottom: 2px solid #e0e0e0;
}
.woocommerce-grouped-product-list th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
}
.woocommerce-grouped-product-list tbody tr {
  border-bottom: 1px solid #e0e0e0;
}
.woocommerce-grouped-product-list tbody tr:hover {
  background-color: rgba(139, 14, 14, 0.02);
}
.woocommerce-grouped-product-list tbody td {
  padding: 16px;
}
.woocommerce-grouped-product-list .woocommerce-grouped-product-list-item__label {
  font-weight: 500;
}
.woocommerce-grouped-product-list .woocommerce-grouped-product-list-item__price {
  color: #8b0e0e;
  font-weight: 700;
}
.woocommerce-grouped-product-list .woocommerce-grouped-product-list-item__quantity input {
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  width: 70px;
  text-align: center;
}

/* ── Selectare produse pachet ──────────────────────────────────── */
.produse_pachet_container {
  margin: 16px 0;
  padding: 16px 18px;
  background: #fdf7f7;
  border: 1px solid #e8d0d0;
  border-left: 3px solid #8b0e0e;
  border-radius: 4px;
}

.produse_pachet_container > b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #8b0e0e;
  margin-bottom: 12px;
}

.produse_pachet_content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: pachet-step;
}

.produse_pachet_content select {
  counter-increment: pachet-step;
  width: 100%;
  padding: 9px 36px 9px 12px;
  font-size: 13.5px;
  color: #222;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238b0e0e' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1px solid #d9b8b8;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}

.produse_pachet_content select:focus {
  outline: none;
  border-color: #8b0e0e;
  box-shadow: 0 0 0 2px rgba(139,14,14,.15);
}

.produse_pachet_content select:hover {
  border-color: #b41414;
}

/* opțiune implicită (placeholder) în gri */
.produse_pachet_content select option[value="empty"] {
  color: #999;
}

/* stilul de eroare aplicat din JS când nu s-a ales */
.produse_pachet_content select[style*="background: red"],
.produse_pachet_content select[style*="background:red"] {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 2px rgba(192,57,43,.2) !important;
  background-color: #fff0f0 !important;
  color: #c0392b !important;
}

ol.commentlist .wcpr-grid {
      display: flex;
    flex-direction: column;
}

/*Produs Tatauaje*/

.tatuaje_container.active span:after{
    content: "-";
}
.tatuaje_container span:after {
    content: "+";
    font-size: 20px;
    color: black;
}
.tatuaje_container span {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
    font-weight: bold;
    align-items: center;
}
.tatuaje_content {
    margin:10px 0 0 0;
    border-top: 1px solid #ddd;
    padding: 10px 0 0 0;
    display:none;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}
.tatuaje_container.active .tatuaje_content{
    display:flex;
}
.tatuaje_content img.active{
    box-shadow: 0 0 3px 3px limegreen;
}
.tatuaje_content img {
    width: 100px;
    cursor: pointer;
    border: 1px solid;
}