 body {
	font-family: 'Inter', sans-serif;
	background-color: #f5f6fa;
	color: #333;
}
.navbar-brand {
	font-weight: 700;
	font-size: 1.4rem;
}
.container-lg {
	background: white;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	margin-top: 30px;
	margin-bottom: 40px;
}
.section-title {
	font-size: 1.5rem;
	margin-top: 30px;
	margin-bottom: 15px;
	font-weight: 600;
}
.review-score-box {
	background-color: #f0f9f5;
	padding: 20px;
	border-radius: 12px;
	margin: 20px 0;
}
.review-score {
	font-size: 2.4rem;
	font-weight: bold;
	color: #00c989;
}
ul.features {
	list-style: disc;
	padding-left: 1.2rem;
}
ul.features li {
	margin-bottom: 10px;
}
.price-table th {
	background-color: #f0f0f0;
}
.price-table .highlight {
	background-color: #e8fdf3;
	font-weight: 600;
}
.out-of-stock {
	color: #c00;
	font-weight: bold;
}
.buy-button {
	background-color: #00c989;
	color: white;
	padding: 10px 16px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
}
.buy-button:hover {
	background-color: #00b077;
}
.customer-review {
	background: #f9f9f9;
	padding: 15px;
	border-radius: 10px;
	margin-bottom: 20px;
	border-left: 4px solid #00c989;
}
footer {
	background-color: #222;
	color: #ccc;
	text-align: center;
	padding: 30px 10px;
}
footer a {
	color: #ddd;
	margin: 0 10px;
	text-decoration: none;
}
footer a:hover {
	color: white;
}
.product-card {
	border-radius: 12px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
.card-title {
	font-size: 1.1rem;
}
.badge {
	font-size: 0.85rem;
	padding: 6px 10px;
	border-radius: 6px;
}
.hero {
  background: url('/images/creature-cocks-hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  padding: 100px 0;
  color: white;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for contrast */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.hero h1 {
	font-size: 2.5rem;
	font-weight: 700;
}
.hero p {
	font-size: 1.2rem;
	margin-bottom: 20px;
}
.btn-cta {
	background-color: #198754;
	color: #fff;
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 8px;
	border: none;
	transition: 0.3s;
}
.btn-cta:hover {
	background-color: #000;
}
.card img {
	height: 200px;
	object-fit: cover;
}
#main-product-image {
	width: 500px;
	height: 500px;
	object-fit: contain;
}
.product-image-grid img {
	width: 100%;
	height: auto;
	max-height: 350px;
	object-fit: contain;
	border-radius: 8px;
	margin-bottom: 15px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.product-image-grid img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: contain;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	margin-bottom: 15px;
}
.image-cell {
	width: 100%;
	height: 250px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
	margin-bottom: 20px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.image-cell:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.image-cell img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.modal-img {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
}
.main-image-wrapper {
	max-width: 100%;
}
@media (min-width: 992px) {
	.dropdown-submenu:hover > .dropdown-menu {
		display: block;
	}
}
