/* [project]/app/components/product/productID/ProductID.scss.css [app-client] (css) */
.product-detail-container {
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: Inter, sans-serif;
  max-width: 100%;
}

@media (width <= 576px) {
  .product-detail-container {
    padding: 1rem .75rem;
  }
}

.product-detail-loading, .product-detail-error {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 1.1rem;
  color: #555;
}

.product-detail-loading.product-detail-error, .product-detail-error.product-detail-error {
  color: #d32f2f;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (width <= 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (width <= 576px) {
  .product-detail-grid {
    gap: 1rem;
  }
}

.product-images {
  display: flex;
  gap: 1.5rem;
  flex-direction: row-reverse;
  position: relative;
}

@media (width <= 768px) {
  .product-images {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}

.product-images .thumbnail-gallery.vertical {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  overflow-y: auto;
  max-height: 500px;
  width: 100px;
}

@media (width <= 576px) {
  .product-images .thumbnail-gallery.vertical {
    flex-direction: row;
    max-height: none;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }
}

.product-images .thumbnail-gallery.vertical .thumbnail {
  width: 80px;
  height: 80px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
}

.product-images .thumbnail-gallery.vertical .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-images .thumbnail-gallery.vertical .thumbnail:hover {
  border-color: #999;
  transform: translateY(-2px);
}

.product-images .thumbnail-gallery.vertical .thumbnail.active {
  border-color: #2c3e50;
  border-width: 2px;
}

.product-images .thumbnail-gallery {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-height: 500px;
  overflow-y: auto;
  width: 100px;
}

@media (width <= 768px) {
  .product-images .thumbnail-gallery {
    flex-direction: row;
    max-height: none;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: .5rem;
    scrollbar-width: thin;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
  }

  .product-images .thumbnail-gallery::-webkit-scrollbar {
    height: 6px;
  }

  .product-images .thumbnail-gallery::-webkit-scrollbar-thumb {
    background-color: #0003;
    border-radius: 10px;
  }
}

.product-images .thumbnail-gallery .thumbnail {
  width: 80px;
  height: 80px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
}

@media (width <= 576px) {
  .product-images .thumbnail-gallery .thumbnail {
    width: 60px;
    height: 60px;
    scroll-snap-align: start;
  }
}

.product-images .thumbnail-gallery .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-images .thumbnail-gallery .thumbnail:hover {
  border-color: #999;
  transform: translateY(-2px);
}

.product-images .thumbnail-gallery .thumbnail.active {
  border-color: #2c3e50;
  border-width: 2px;
}

.product-images .main-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f8f8f8;
  height: 500px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: crosshair;
}

.product-images .main-image.zoomed {
  overflow: hidden;
}

.product-images .main-image.zoomed .product-img {
  transform: scale(2);
  transition: transform .3s;
  cursor: zoom-out;
}

.product-images .main-image.magnify {
  cursor: none;
}

.product-images .main-image.has-magnifier {
  cursor: none;
}

.product-images .main-image.has-magnifier:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  left: var(--cursor-x);
  top: var(--cursor-y);
  box-shadow: 0 0 0 1px #0003, 0 4px 10px #0003;
  z-index: 5;
}

@media (width <= 768px) {
  .product-images .main-image {
    cursor: default;
    height: auto;
    aspect-ratio: 1;
    max-height: 70vh;
  }
}

@media (width <= 576px) {
  .product-images .main-image {
    aspect-ratio: 1;
    border-radius: 6px;
  }
}

.product-images .main-image .product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .3s;
}

@media (width <= 768px) {
  .product-images .main-image .product-img {
    object-fit: contain;
  }
}

.product-images .main-image .magnifier {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 200%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  z-index: 2;
}

.product-images .main-image.magnify .magnifier {
  opacity: 1;
}

@media (width <= 768px) {
  .product-images .main-image {
    cursor: default;
    height: 350px;
  }

  .product-images .main-image:after {
    display: none;
  }
}

.product-images .main-image .zoom-instructions {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #000000b3;
  color: #fff;
  padding: .25rem .75rem;
  border-radius: 4px;
  font-size: .85rem;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}

.product-images .main-image:hover .zoom-instructions {
  opacity: 1;
}

.product-images .main-image .product-img-placeholder {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
}

.product-images .main-image .discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #d32f2f;
  color: #fff;
  padding: .5rem .75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 2px 8px #0003;
  z-index: 2;
}

.product-images .image-magnifier {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-color: #fff;
  box-shadow: 0 10px 25px #00000026;
  z-index: 1000;
  pointer-events: none;
  border: 1px solid #eaeaea;
  animation: .2s fadeIn;
}

.product-images .image-magnifier .magnifier-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #0009;
  color: #fff;
  font-size: .8rem;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: .8;
}

@media (width <= 1200px) {
  .product-images .image-magnifier {
    width: 250px;
    height: 250px;
  }
}

@media (width <= 768px) {
  .product-images .image-magnifier {
    display: none;
  }
}

.product-info {
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-info .overlay-magnifier {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  background-repeat: no-repeat;
  border-radius: 8px;
  box-shadow: 0 10px 25px #00000026;
  z-index: 10;
  animation: .25s fadeIn;
  border: 1px solid #eaeaea;
  overflow: hidden;
}

.product-info .overlay-magnifier .magnifier-hint {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #000000b3;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: .9rem;
  white-space: nowrap;
  opacity: .8;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 2px 8px #0003;
}

.product-info .product-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #2c3e50;
}

@media (width <= 768px) {
  .product-info .product-title {
    font-size: 1.5rem;
    margin-bottom: .75rem;
  }
}

@media (width <= 576px) {
  .product-info .product-title {
    font-size: 1.3rem;
  }
}

.product-info .product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: .95rem;
  color: #555;
}

.product-info .product-meta strong {
  color: #2c3e50;
}

.product-info .product-meta .product-warranty-badge {
  display: flex;
  align-items: center;
  gap: .25rem;
  color: #2e7d32;
  font-weight: 500;
}

.product-info .product-meta .product-warranty-badge svg {
  flex-shrink: 0;
}

.product-info .product-price-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

@media (width <= 576px) {
  .product-info .product-price-container {
    margin-bottom: 1rem;
  }
}

.product-info .product-price-container .discount-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: #d32f2f;
}

.product-info .product-price-container .original-price {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: #777;
}

.product-info .product-price-container .regular-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
}

.product-info .product-price-container .discount-tag {
  background-color: #d32f2f;
  color: #fff;
  padding: .25rem .5rem;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 600;
}

.product-info .product-stock {
  margin-bottom: 1.5rem;
  font-size: .95rem;
}

.product-info .product-stock .in-stock {
  color: #2e7d32;
  font-weight: 500;
}

.product-info .product-stock .out-of-stock {
  color: #d32f2f;
  font-weight: 500;
}

.product-info .product-description, .product-info .product-specs, .product-info .product-warranty {
  margin-bottom: 1.5rem;
}

.product-info .product-description h3, .product-info .product-specs h3, .product-info .product-warranty h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 .75rem;
  color: #2c3e50;
}

.product-info .product-description .description-content, .product-info .product-specs .description-content, .product-info .product-warranty .description-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  white-space: pre-line;
}

.product-info .specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: .75rem;
}

.product-info .specs-list li {
  font-size: .95rem;
  display: flex;
}

.product-info .specs-list li span {
  font-weight: 600;
  min-width: 120px;
  color: #2c3e50;
}

.product-info .product-actions-button {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (width <= 576px) {
  .product-info .product-actions-button {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .product-info .product-actions-button .quantity-selector {
    width: 100%;
    margin-bottom: .75rem;
  }
}

.product-info .product-actions-button .quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.product-info .product-actions-button .quantity-selector .quantity-btn {
  background-color: #f0f0f0;
  border: none;
  padding: .75rem;
  width: 40px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-info .product-actions-button .quantity-selector .quantity-btn:hover:not(:disabled) {
  background-color: #e0e0e0;
}

.product-info .product-actions-button .quantity-selector .quantity-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.product-info .product-actions-button .quantity-selector input {
  width: 60px;
  text-align: center;
  border: none;
  font-size: 1rem;
  padding: .75rem .5rem;
  -moz-appearance: textfield;
}

.product-info .product-actions-button .quantity-selector input::-webkit-outer-spin-button, .product-info .product-actions-button .quantity-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-info .product-actions-button .quantity-selector input:focus {
  outline: none;
  background-color: #f8f8f8;
}

.product-info .product-actions-button .add-to-cart-btn-product {
  flex: 1;
  background-color: #2c3e50;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

@media (width <= 576px) {
  .product-info .product-actions-button .add-to-cart-btn-product {
    width: 100%;
  }
}

.product-info .product-actions-button .add-to-cart-btn-product svg {
  flex-shrink: 0;
}

.product-info .product-actions-button .add-to-cart-btn-product:hover:not(:disabled) {
  background-color: #1a252f;
}

.product-info .product-actions-button .add-to-cart-btn-product:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.product-info .product-quick-info {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 8px;
}

@media (width <= 768px) {
  .product-info .product-quick-info {
    grid-template-columns: 1fr;
  }
}

.product-info .product-quick-info .info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem;
  border-radius: 6px;
  transition: background-color .2s;
}

.product-info .product-quick-info .info-item:hover {
  background-color: #2c3e500d;
}

.product-info .product-quick-info .info-item svg {
  color: #2c3e50;
  flex-shrink: 0;
}

.product-info .product-quick-info .info-item h4 {
  margin: 0 0 .25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
}

.product-info .product-quick-info .info-item p {
  margin: 0;
  font-size: .85rem;
  color: #555;
}

.product-details-tabs {
  margin-top: 3rem;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px #0000000d;
}

@media (width <= 576px) {
  .product-details-tabs {
    margin-top: 2rem;
    border-radius: 6px;
  }
}

.product-details-tabs .tabs-header {
  display: flex;
  border-bottom: 1px solid #eee;
  background-color: #f9f9f9;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-details-tabs .tabs-header::-webkit-scrollbar {
  display: none;
}

@media (width <= 768px) {
  .product-details-tabs .tabs-header {
    flex-wrap: nowrap;
  }
}

.product-details-tabs .tabs-header .tab-btn {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all .2s;
  border-bottom: 3px solid #0000;
  white-space: nowrap;
}

@media (width <= 768px) {
  .product-details-tabs .tabs-header .tab-btn {
    padding: .75rem 1rem;
    font-size: .9rem;
    flex: 1;
    text-align: center;
  }
}

.product-details-tabs .tabs-header .tab-btn.active {
  color: #2c3e50;
  border-bottom-color: #2c3e50;
  background-color: #fff;
}

.product-details-tabs .tabs-header .tab-btn:hover:not(.active) {
  background-color: #f0f0f0;
}

.product-details-tabs .tabs-content {
  padding: 2rem;
}

@media (width <= 768px) {
  .product-details-tabs .tabs-content {
    padding: 1.5rem 1rem;
  }
}

@media (width <= 576px) {
  .product-details-tabs .tabs-content {
    padding: 1rem .75rem;
  }
}

.product-details-tabs .tabs-content .tab-pane {
  display: block;
  animation: .3s fadeIn;
}

.product-details-tabs .tabs-content .description-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  white-space: pre-line;
}

@media (width <= 576px) {
  .product-details-tabs .tabs-content .description-content {
    font-size: .95rem;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

.product-details-tabs .tabs-content .description-content .warranty-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.product-details-tabs .tabs-content .description-content .warranty-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 .75rem;
  color: #2c3e50;
}

.product-details-tabs .tabs-content .specs-content .specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

@media (width <= 768px) {
  .product-details-tabs .tabs-content .specs-content .specs-list {
    grid-template-columns: 1fr;
  }
}

.product-details-tabs .tabs-content .specs-content .specs-list li {
  font-size: .95rem;
  display: flex;
  padding: .75rem;
  border-radius: 4px;
  background-color: #f9f9f9;
}

.product-details-tabs .tabs-content .specs-content .specs-list li span {
  font-weight: 600;
  min-width: 140px;
  color: #2c3e50;
}

.product-details-tabs .tabs-content .shipping-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #2c3e50;
}

.product-details-tabs .tabs-content .shipping-content h3:not(:first-child) {
  margin-top: 2rem;
}

.product-details-tabs .tabs-content .shipping-content .shipping-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

@media (width <= 768px) {
  .product-details-tabs .tabs-content .shipping-content .shipping-details {
    grid-template-columns: 1fr;
  }
}

.product-details-tabs .tabs-content .shipping-content .shipping-details .shipping-option {
  padding: 1.25rem;
  border-radius: 6px;
  border: 1px solid #eee;
  background-color: #f9f9f9;
  transition: transform .2s, box-shadow .2s;
}

.product-details-tabs .tabs-content .shipping-content .shipping-details .shipping-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px #00000014;
}

.product-details-tabs .tabs-content .shipping-content .shipping-details .shipping-option h4 {
  margin: 0 0 .75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
}

.product-details-tabs .tabs-content .shipping-content .shipping-details .shipping-option p {
  margin: .4rem 0;
  font-size: .9rem;
  color: #555;
}

.product-details-tabs .tabs-content .shipping-content p {
  margin: .75rem 0;
  line-height: 1.6;
}

.product-details-tabs .tabs-content .payment-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #2c3e50;
}

.product-details-tabs .tabs-content .payment-content h3:not(:first-child) {
  margin-top: 2rem;
}

.product-details-tabs .tabs-content .payment-content .loading-payment-methods, .product-details-tabs .tabs-content .payment-content .error-payment-methods {
  padding: 1rem;
  text-align: center;
  border-radius: 6px;
  background-color: #f9f9f9;
  margin-bottom: 1.5rem;
}

.product-details-tabs .tabs-content .payment-content .error-payment-methods {
  color: #d32f2f;
  border: 1px solid #ffcdd2;
  background-color: #ffebee;
}

.product-details-tabs .tabs-content .payment-content .payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (width <= 768px) {
  .product-details-tabs .tabs-content .payment-content .payment-methods {
    grid-template-columns: 1fr 1fr;
  }
}

@media (width <= 480px) {
  .product-details-tabs .tabs-content .payment-content .payment-methods {
    grid-template-columns: 1fr;
  }
}

.product-details-tabs .tabs-content .payment-content .payment-methods .payment-method {
  padding: 1.25rem;
  border-radius: 6px;
  border: 1px solid #eee;
  text-align: center;
  background-color: #f9f9f9;
  transition: transform .2s, box-shadow .2s;
}

.product-details-tabs .tabs-content .payment-content .payment-methods .payment-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px #00000014;
}

.product-details-tabs .tabs-content .payment-content .payment-methods .payment-method .payment-icon {
  height: 40px;
  width: 60px;
  margin: 0 auto .75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.product-details-tabs .tabs-content .payment-content .payment-methods .payment-method .payment-icon.credit-card {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='1' y1='10' x2='23' y2='10'%3E%3C/line%3E%3C/svg%3E");
}

.product-details-tabs .tabs-content .payment-content .payment-methods .payment-method .payment-icon.paypal {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230070ba' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 19H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h5a3 3 0 0 1 3 3v7a3 3 0 0 1-3 3Z'%3E%3C/path%3E%3Cpath d='M13 5h5a3 3 0 0 1 3 3v7a3 3 0 0 1-3 3h-5a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3Z'%3E%3C/path%3E%3Cline x1='12' y1='20' x2='12' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.product-details-tabs .tabs-content .payment-content .payment-methods .payment-method .payment-icon.applepay {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8 8 0 0 1-8 8z'%3E%3C/path%3E%3Cpath d='M9.293 7.707l5.293 5.293-5.293 5.293a1 1 0 0 0 1.414 1.414l6-6a1 1 0 0 0 0-1.414l-6-6a1 1 0 0 0-1.414 1.414z'%3E%3C/path%3E%3C/svg%3E");
}

.product-details-tabs .tabs-content .payment-content .payment-methods .payment-method .payment-icon.googlepay {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234285F4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 18c-1.1 0-2-.9-2-2v-4h7v4c0 1.1-.9 2-2 2h-3Z'%3E%3C/path%3E%3Cpath d='M2 6v12c0 1.1.9 2 2 2h3c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2Z'%3E%3C/path%3E%3Cpath d='M15 6v4H9V6c0-1.1.9-2 2-2h2c1.1 0 2 .9 2 2Z'%3E%3C/path%3E%3C/svg%3E");
}

.product-details-tabs .tabs-content .payment-content .payment-methods .payment-method .payment-icon.default-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2c3e50;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 6px;
}

.product-details-tabs .tabs-content .payment-content .payment-methods .payment-method p {
  margin: 0 0 .25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #2c3e50;
}

.product-details-tabs .tabs-content .payment-content .payment-methods .payment-method small {
  font-size: .8rem;
  color: #666;
}

.product-details-tabs .tabs-content .payment-content .payment-methods .payment-method .fee-info {
  display: block;
  margin-top: .25rem;
  font-style: italic;
}

.product-details-tabs .tabs-content .payment-content p {
  margin: .75rem 0;
  line-height: 1.6;
  color: #444;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }

  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes scaleIn {
  from {
    transform: scale(.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (width <= 576px) {
  .product-actions {
    flex-direction: column;
    width: 100%;
  }

  .product-actions .quantity-selector {
    width: 100%;
    margin-bottom: .75rem;
  }

  .product-actions .add-to-cart-btn {
    width: 100%;
  }

  .product-details-tabs .tabs-header .tab-btn {
    flex: 1;
    padding: .75rem;
    font-size: .9rem;
  }

  .product-details-tabs .tabs-content {
    padding: 1rem;
  }

  .product-details-tabs .tabs-content .specs-content .specs-list {
    grid-template-columns: 1fr;
  }
}


/* [project]/app/components/reviews/StarRating.scss.css [app-client] (css) */
.star-rating {
  display: inline-flex;
  align-items: center;
}

.star-rating.small .star {
  font-size: .9rem;
}

.star-rating.medium .star {
  font-size: 1.25rem;
}

.star-rating.large .star {
  font-size: 1.5rem;
}

.star-rating .star {
  position: relative;
  display: inline-block;
  cursor: default;
  color: #ddd;
  margin-right: 2px;
}

.star-rating .star.full {
  color: #ffb800;
}

.star-rating .star.half {
  color: #ddd;
}

.star-rating .star.half:before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #ffb800;
}

.star-rating.editable .star {
  cursor: pointer;
  transition: transform .1s;
}

.star-rating.editable .star:hover {
  transform: scale(1.15);
}

.star-rating .rating-value {
  margin-left: 8px;
  font-size: .9rem;
  color: #555;
  font-weight: 500;
}


/* [project]/app/components/reviews/ProductReviews.scss.css [app-client] (css) */
.product-reviews {
  margin: 2rem 0;
  font-family: Inter, sans-serif;
}

.product-reviews .reviews-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.product-reviews .rating-summary {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.product-reviews .rating-summary .average-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.product-reviews .rating-summary .average-rating .big-rating {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
}

.product-reviews .rating-summary .average-rating .rating-count {
  font-size: .9rem;
  color: #666;
  margin-left: .5rem;
}

.product-reviews .review-form-container {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.product-reviews .review-form-container h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.product-reviews .review-form-container .login-prompt {
  text-align: center;
  padding: 1rem;
}

.product-reviews .review-form-container .login-prompt p {
  color: #666;
}

.product-reviews .review-form-container .login-prompt p a {
  color: #2c3e50;
  font-weight: 500;
  text-decoration: underline;
}

.product-reviews .review-form-container .login-prompt p a:hover {
  color: #1a252f;
}

.product-reviews .review-form-container .review-form .form-group {
  margin-bottom: 1rem;
}

.product-reviews .review-form-container .review-form .form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: .5rem;
  color: #333;
}

.product-reviews .review-form-container .review-form .form-group textarea {
  width: 100%;
  padding: .75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

.product-reviews .review-form-container .review-form .form-group textarea:focus {
  border-color: #2c3e50;
  outline: none;
}

.product-reviews .review-form-container .review-form .submit-review-btn {
  background-color: #2c3e50;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: .75rem 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .2s;
}

.product-reviews .review-form-container .review-form .submit-review-btn:hover:not(:disabled) {
  background-color: #1a252f;
}

.product-reviews .review-form-container .review-form .submit-review-btn:disabled {
  background-color: #b2bec3;
  cursor: not-allowed;
}

.product-reviews .reviews-list h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.product-reviews .reviews-list .loading-text, .product-reviews .reviews-list .error-text, .product-reviews .reviews-list .no-reviews {
  text-align: center;
  padding: 2rem;
  color: #666;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.product-reviews .reviews-list .error-text {
  color: #e74c3c;
}

.product-reviews .reviews-list .review-item {
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
}

.product-reviews .reviews-list .review-item:last-child {
  border-bottom: none;
}

.product-reviews .reviews-list .review-item .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
}

.product-reviews .reviews-list .review-item .review-header .reviewer-info {
  display: flex;
  align-items: center;
}

.product-reviews .reviews-list .review-item .review-header .reviewer-info .profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: .75rem;
}

.product-reviews .reviews-list .review-item .review-header .reviewer-info .profile-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2c3e50;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: .75rem;
}

.product-reviews .reviews-list .review-item .review-header .reviewer-info .reviewer-name {
  font-weight: 500;
  color: #2c3e50;
}

.product-reviews .reviews-list .review-item .review-header .review-date {
  font-size: .85rem;
  color: #95a5a6;
}

.product-reviews .reviews-list .review-item .review-rating {
  margin-bottom: .75rem;
}

.product-reviews .reviews-list .review-item .review-comment {
  line-height: 1.5;
  color: #333;
  margin-bottom: 1rem;
  white-space: pre-line;
}

.product-reviews .reviews-list .review-item .review-images {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.product-reviews .reviews-list .review-item .review-images .review-image {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
  cursor: pointer;
  transition: transform .2s;
}

.product-reviews .reviews-list .review-item .review-images .review-image:hover {
  transform: scale(1.05);
}

@media (width <= 768px) {
  .product-reviews .rating-summary {
    padding: 1rem;
  }

  .product-reviews .rating-summary .average-rating {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-reviews .rating-summary .average-rating .big-rating {
    font-size: 2rem;
  }

  .product-reviews .review-item .review-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-reviews .review-item .review-header .reviewer-info {
    margin-bottom: .5rem;
  }
}


/*# sourceMappingURL=app_components_6a1248._.css.map*/
