body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f8fafc;
    color: #0f172a;
	width: 100%;
	height: 100%;
}
main {
	min-height: 75vh;
}
.container {
    width: 72%;
    margin: 0 auto;
}
.site-header, .site-footer {
    background: linear-gradient(135deg, #111827, #1d4ed8);
    color: #fff;
    padding: 1rem 0;
}
.site-footer {
	margin-top: 10px;
	margin-bottom: 0px;
}
.site-header a, .site-footer a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 1rem;
}
.grid {
    display: grid;
    gap: 3rem;
}
.flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1%;
}
.card {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}
.product-card {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	width: 360px;
}
.product-image {
	width: 320px;
	height: 240px;
	object-fit: cover;
	margin: auto;
	border-radius: 10px;
	background: #f3f4f6;
}
.product-image.large {
	height: 320px;
	max-width: 360px;
}
.product-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	align-items: center;
	margin-top: 1rem;
}
.inline-form {
	display: flex;
	align-items: center;
	gap: 1%;
}
.review-item {
	border-top: 1px solid #e5e7eb;
	padding-top: 0.8rem;
	margin-top: 0.8rem;
}
.review-item:first-of-type {
	border-top: none;
	padding-top: 0;
	margin-top: 0;
}
.thumb {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 8px;
}
button, .btn {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}
.btn-secondary {
	background: #4a4a6a;
}
.alert {
	background: #dcfce7;
	color: #166534;
	padding: 0.8rem;
	border-radius: 6px;
	margin: 1rem 0;
}
input, textarea {
	padding: 0.4rem;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	width: 100%;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 1rem;
}
th, td {
	padding: 0.75rem;
	border-bottom: 1px solid #e5e7eb;
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-end {
	text-align: right;
}
.form {
	padding: 25px;
	margin-top: 25px;
}
.form-input {
	width: 100%;
	margin: auto;
	margin-top: 15px;
}
.form-input input, .form-input select, .form-input textarea {
	display: block;
	padding: 10px;
	width: 100%;
	line-height: 20px;
	margin-top: 10px;
	border: 1px solid blue;
}
.form-input label {
	display: block;
	font-size: 1.25em;
}
.submit {
	display: block;
	margin-top: 20px;
}
.w100 {
	width: 98%;
}
.w75 {
	width: 73%;
	margin: auto;
}
.w50 {
	width: 48%;
	margin: auto;
}
.w25 {
	width: 23%;
	margin: auto;
}
.mt3 {
	margin-top: 30px;
}

@media only screen and (max-width: 768px) {
	.container {
		width: 96%;
	}
}
