.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px;
}

.logo {
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 2px;
}

.logo span {
	color:  #FF0000;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 30px;
}

nav a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
	padding: 10px 15px;
	border-radius: 5px;
}

nav a:hover {
	color: #fbbf24;
	background: rgba(255,255,255,0.1);
}



.hero h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	animation: fadeInDown 0.8s ease;
}

.hero p {
	font-size: 1.3rem;
	max-width: 800px;
	margin: 0 auto;
	opacity: 0.9;
	animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.content-section {
	background: white;
	padding: 0 30px 0 20px;
}

.section-title {
	font-size: 1.6rem;
	color: #1a3a5c;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 3px solid #da4b2f;
	display: inline-block;
	padding-top:  30px;
}

.section-subtitle {
	font-size: 1.4rem;
	color: #1a3a5c;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 3px solid #da4b2f;
	display: inline-block;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin: 40px 0;
}

.product-card {
	background: #f8fafc;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
	border: 1px solid #e2e8f0;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.product-order {
	background: #da4b2f;
	padding: 10px;
	width: 40%;
	text-align: center;
	margin: auto;
	border-radius: 20px;
	font-size: 1rem;
}
.product-order-wrapper {
	margin-top: auto;
	margin-bottom:  15px;
}
.product-order a {
	padding: 10px;
	color:	#fff;
	text-decoration: none;
	width:  100%;
}

.product-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	background: #fff;
}

.product-info {
	padding: 25px;
}

.product-name {
	font-size: 1.4rem;
	color: #1a3a5c;
	margin-bottom: 10px;
	font-weight: 700;
}

.product-description {
	color: #64748b;
	margin-bottom: 15px;
	font-size: 0.95rem;
}

.product-specs {
	list-style: none;
	margin-bottom: 20px;
}

.product-specs li {
	padding: 8px 0;
	border-bottom: 1px solid #e2e8f0;
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
}

.product-specs li:last-child {
	border-bottom: none;
}

.spec-label {
	color: #64748b;
	font-weight: 500;
}

.spec-value {
	color: #1a3a5c;
	font-weight: 600;
}

.info-box {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	border-left: 5px solid #f59e0b;
	padding: 25px;
	border-radius: 0 10px 10px 0;
	margin: 30px 0;
}

.info-box h3 {
	color: #92400e;
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.info-box p {
	color: #78350f;
	line-height: 1.8;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin: 40px 0;
}

.feature-card {
	background: white;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	border: 2px solid #e2e8f0;
	transition: all 0.3s;
}

.feature-card:hover {
	border-color: #1a3a5c;
	transform: translateY(-5px);
}

.feature-icon {
	font-size: 3rem;
	margin-bottom: 20px;
}

.feature-title {
	font-size: 1.2rem;
	color: #1a3a5c;
	margin-bottom: 15px;
	font-weight: 700;
}

.feature-text {
	color: #64748b;
	font-size: 0.95rem;
}

.tabs {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.tab-btn {
	padding: 12px 25px;
	background: #f1f5f9;
	border: 2px solid #e2e8f0;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	color: #64748b;
	transition: all 0.3s;
}

.tab-btn.active {
	background: #1a3a5c;
	border-color: #1a3a5c;
	color: white;
}

.tab-btn:hover:not(.active) {
	background: #e2e8f0;
}

.tab-content {
	display: none;
	animation: fadeIn 0.5s ease;
}

.tab-content.active {
	display: block;
}

.table-responsive table {
	width: 100%;
	border-collapse: collapse;
	margin: 30px 0;
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.table-responsive thead {
	background: #da4b2f;
	color: white;
}

.table-responsive th {
	padding: 18px 15px;
	text-align: left;
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 0.5px;
}

.table-responsive td {
	padding: 15px;
	border-bottom: 1px solid #e2e8f0;
	font-size: 0.9rem;
}

.table-responsive tbody tr:hover {
	background: #f8fafc;
	transition: background 0.3s;
}

.table-responsive tbody tr:last-child td {
	border-bottom: none;
}

.table-responsive {
	overflow-x: auto;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.download-section {
	background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
	color: white;
	padding: 50px;
	border-radius: 10px;
	text-align: center;
	margin: 40px 0;
}

.download-section h2 {
	font-size: 1.4rem;
	margin-bottom: 20px;
}

.download-section p {
	font-size: 1.1rem;
	margin-bottom: 30px;
	opacity: 0.9;
}

.download-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 40px;
	background: #fbbf24;
	color: #1a3a5c;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s;
}

.download-btn:hover {
	background: #f59e0b;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

footer {
	background: #1a3a5c;
	color: white;
	padding: 50px 0 30px;
	margin-top: 60px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3 {
	font-size: 1.3rem;
	margin-bottom: 20px;
	color: #fbbf24;
}

.footer-section ul {
	list-style: none;
}

.footer-section li {
	margin-bottom: 12px;
}

.footer-section a {
	color: #cbd5e1;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-section a:hover {
	color: #fbbf24;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255,255,255,0.1);
	color: #94a3b8;
}

.status-badge {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
}

.status-available {
	background: #dcfce7;
	color: #166534;
}

.status-limited {
	background: #fef3c7;
	color: #92400e;
}

.temperature-range {
	display: flex;
	align-items: center;
	gap: 10px;
}

.temp-indicator {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: inline-block;
}

.temp-low {
	background: #3b82f6;
}

.temp-high {
	background: #ef4444;
}
.product-outline {
	max-width: 100%;
}
.btn-price {
	width: 80%;
}
.btn-reset {
	background: none;
	border: none;
	padding: 0;
	font: inherit;
	color: #fff;
	cursor: pointer;
	text-decoration: none
}

.btn-reset:hover {
	opacity: 0.8;
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 1.6rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.header-content {
		flex-direction: column;
		text-align: center;
	}

	nav ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
	}

	.content-section {
		padding: 25px;
	}

	table {
		font-size: 0.85rem;
	}

	th, td {
		padding: 12px 10px;
	}
}