:root {
  --cor-principal: #000c78;
}
body {
  background-color: white !important;
  color: #222 !important;
}

.product-info h1 {
  font-size: 24pt;
  color: #000;
  font-weight: bold;
}
.product-price {
  font-size: 24pt;
  font-weight: bold;
  color: var(--cor-principal);
}
.old-price {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 1rem;
}
.btn-add-to-cart {
  background-color: var(--cor-principal) !important;
  color: white !important;
  padding: 1rem 2rem !important;
  font-weight: bold !important;
  font-size: 1.2rem !important;
  transition: background-color 0.3s ease !important;
}

.btn-add-to-cart:hover {
  background-color: #000a5a !important;
  color: white !important;
}

.pG {
  background-color: #fff !important;
  color: #000c78 !important;
  border-color: #000c78 !important;
}

.pG:hover {
  background-color: #000c78 !important;
  transition: ease-in-out 0.3s !important;
}
.product-image-container {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 10px;
}

.breadcrumb {
  white-space: nowrap !important;
  scrollbar-width: thin !important;
}

.breadcrumb::-webkit-scrollbar {
  height: 6px !important;
}

.breadcrumb::-webkit-scrollbar-thumb {
  background: #ccc !important;
  border-radius: 10px !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›" !important;
  color: #999 !important;
  padding: 0 0.875rem !important;
  font-weight: bold !important;
}

@media (max-width: 576px) {
  .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 3px !important;
  }
  .breadcrumb {
    font-size: 0.875rem !important;
  }
}

.tab-content,
.nav-tabs {
  font-size: 10pt;
}

.prod-slider,
#prod-pager {
  display: flex !important;
  overflow-x: auto !important;
  gap: 12px !important;
}

.prod-slider li,
.prod-pager-thumb {
  border-radius: 10px !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.prod-pager-thumb {
  width: 80px !important;
  height: 80px !important;
  border: 2px solid #ddd !important;
  border-radius: 6px !important;
  cursor: pointer !important;
}

#loading {
  color: #888;
  font-size: 1.1rem;
  padding-top: 40px;
  padding-bottom: 40px;
}

#product-carousel .product-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 12, 120, 0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  padding: 18px 14px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
  border: 1.5px solid #f0f2fa;
  position: relative;
}

#product-carousel .product-card:hover {
  box-shadow: 0 6px 24px rgba(0, 12, 120, 0.13);
  transform: translateY(-4px) scale(1.02);
  border-color: #000c78;
}

#product-carousel .product-image {
  width: 100%;
  max-width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #f8f9fa;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

#product-carousel .product-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
  text-align: center;
  min-height: 44px;
  line-height: 1.2;
}

/* Media Queries */
@media (max-width: 768px) {
  .prod-slider li {
    height: 250px !important;
  }

  .prod-pager-thumb {
    width: 60px !important;
    height: 60px !important;
  }
  #product-carousel .product-card {
    min-height: 260px;
    padding: 12px 8px;
  }
  #product-carousel .product-image {
    max-width: 110px;
    height: 110px;
  }
  #product-carousel .product-title {
    font-size: 1rem;
    min-height: 36px;
  }
}

@media (max-width: 480px) {
  #product-carousel .product-card {
    min-height: 210px;
    padding: 8px 4px;
  }
  #product-carousel .product-image {
    max-width: 80px;
    height: 80px;
  }
  #product-carousel .product-title {
    font-size: 0.98rem;
    min-height: 28px;
  }
}

@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 20% !important;
    max-width: 20% !important;
  }
}
