* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

:root {
	/* --primary: #f8f7f4; */
	--primary: #f6fbfd;
	--primary-secondary: #aae3ff;
	--secondary: #31302c;
	--accent: #866a4b;
	--logo: #2f3867;
	--gray-100: #f3f3f3;
	--gray-200: #e9e9e9;
	--gray-300: #d1d1d1;
	--gray-400: #a0a0a0;
	--gray-500: #6c6c6c;
	--border-radius: 12px;
	--transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
	background: linear-gradient(to bottom right, var(--primary), var(--primary-secondary));
	/* height: auto; */
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5px;
	position: relative;
	padding: 20px 20px 0px;
}

.ice-cubes {
	
	display: flex;
	gap: 10px;
}

.ice-image {
	width: 32px;
	height: 32px;
	/* position: absolute; */
	animation: float 4s ease-in-out infinite;
}

#ice-1 {
	animation-delay: 0s;
	rotate: 15deg;
}

#ice-2 {
	animation-delay: 1s;
	rotate: -10deg;
}

#ice-3 {
	animation-delay: 2s;
	rotate: 15deg;
}

#ice-4 {
	animation-delay: 3s;
	rotate: -5deg;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

main {
	display: flex;
	flex-direction: row;
	gap: 20px;
	padding: 20px;
	padding-bottom: 50px;
}

.logo {
	font-weight: 700;
	font-size: 20px;
	color: var(--logo);
	letter-spacing: -0.02em;
}

.product-grid {
	width: 48%;
	display: grid;
	/* grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); */
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

.google-maps-workplace-location {
	width: 52%;
	border-radius: var(--border-radius);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.google-maps-workplace-location iframe {
	border-radius: var(--border-radius);
}

.product-card {
	background-color: white;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
	position: relative;
	height: 380px;
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.product-image {
	height: 290px;
	width: 100%;
	background-size: contain;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.product-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.1) 100%);
	opacity: 0;
	transition: var(--transition);
}

.product-card:hover .product-image::after {
	opacity: 1;
}

.product-label {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 10px;
	background-color: var(--accent);
	color: white;
	font-size: 11px;
	font-weight: 600;
	border-radius: 4px;
	text-transform: uppercase;
}

.product-card:hover {
	opacity: 1;
	transform: translateY(0);
}

.product-info {
	padding: 10px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.product-category {
	font-size: 12px;
	color: var(--gray-400);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}

.product-name {
	font-size: 16px;
	font-weight: 600;
	color: var(--secondary);
	/* margin-bottom: 6px; */
	margin-top: 4px;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 15px;
}

.price {
	font-weight: 700;
	font-size: 18px;
	color: var(--secondary);
	letter-spacing: -0.02em;
}

.original-price {
	font-size: 14px;
	color: var(--gray-400);
	text-decoration: line-through;
	margin-left: 6px;
}

.whatsapp-contact {
	border-radius: var(--border-radius);
	transition: var(--transition);
}

.whatsapp-contact:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.phone-call {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--secondary);
	transition: var(--transition);
	border-radius: var(--border-radius);
	padding: 14px 21px;
}

.phone-call:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
}

.phone-call a {
	border: 1px solid var(--secondary);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	background-color: white;
}

.phone-call img {
	max-width: 100%;
	max-height: 100%;
	margin-left: 10px;
}

footer {
	text-align: center;
	padding: 20px;
	background-color: var(--primary-secondary);
	/* color: var(--secondary); */
	color: rgb(1, 60, 236);
	font-size: 16px;
}


/* For mobile screens */
@media (max-width: 600px) {
	body {
		width: 100%;
		height: auto;
	}

	.product-grid {
		/* grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); */
		grid-template-columns: repeat(1, 1fr);
		gap: 15px;
	}

	.product-card {
		height: 380px;
	}

	.product-image {
		height: 320px;
	}

	.product-name {
		font-size: 14px;
	}

	.price {
		font-size: 16px;
	}
}

@media (max-width: 900px) {
	body {
		width: 100%;
		height: auto;
	}
	main {
		flex-direction: column;
	}
	.product-grid, .google-maps-workplace-location {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 1200px) {
	body {
		width: 100%;
		height: auto;
	}
	main {
		flex-direction: column;
	}
	.product-grid, .google-maps-workplace-location {
		width: 100%;
	}
	.google-maps-workplace-location {
		height: 600px;
	}
}