body {
	margin: 0;
	padding: 0;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(180deg, #faf7f4 0%, #ffffff 100%);
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

/* CONTAINER */
.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 60px 20px;
	animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* HERO */
.hero {
	text-align: center;
	padding: 80px 20px 60px;
	margin-top: 90px;
	background: linear-gradient(135deg, #f4f1ee, #ffffff);
	box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.1);
	border-radius: 16px;
}

.hero h1 {
	font-size: 42px;
	color: #4b2e1d;
	margin-bottom: 20px;
	animation: slideDown 1.5s ease;
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
	from {
		transform: translateY(-40px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.hero p {
	font-size: 18px;
	color: #555;
	max-width: 900px;
	margin: 0 auto;
}

/* DESCRIPTION */
.description {
	padding: 50px 20px;
	background: #fff;
	border-radius: 16px;
	text-align: center;
	font-size: 16px;
	color: #555;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	margin: 50px 0;
}

/* SECTION TITLES */
.section-title {
	font-size: 32px;
	color: #4b2e1d;
	text-align: center;
	margin: 60px 0 30px;
	position: relative;
}

.section-title::after {
	content: "";
	width: 80px;
	height: 4px;
	background: #a0794c;
	display: block;
	margin: 15px auto 0;
	border-radius: 2px;
}

/* PRODUCT LIST */
.product-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 60px;
	margin-bottom: 70px;
}

.product-card {
	background: #fff;
	padding: 30px;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: all 0.5s ease;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}

.product-card::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.12) 0%,
		transparent 70%
	);
	transform: rotate(30deg);
	transition: all 0.7s ease;
}

.product-card:hover::before {
	transform: rotate(390deg);
}

.product-card:hover {
	transform: translateY(-15px) scale(1.05);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* SLIKA UNUTAR KARTICE */
.product-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 12px;
	background-color: #f0f0f0;
	transition: transform 0.5s ease;
}

.product-card:hover img {
	transform: scale(1.08);
}

/* TEKST U KARTICI */
.product-card h3 {
	font-size: 22px;
	color: #4b2e1d;
	margin: 20px 0 10px;
}

.product-card p {
	font-size: 16px;
	color: #555;
	margin-bottom: 10px;
}

.product-card span {
	font-size: 16px;
	font-weight: bold;
	color: #333;
}

/* INFO SECTION */
.info-section {
	padding: 50px 30px;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	margin-top: 50px;
}

.info-section h2 {
	font-size: 26px;
	color: #4b2e1d;
	margin-bottom: 20px;
	text-align: center;
}

.info-section ul {
	list-style: none;
	padding: 0;
}

.info-section ul li {
	margin-bottom: 15px;
	position: relative;
	padding-left: 30px;
	color: #555;
	font-size: 16px;
}

.info-section ul li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: #a0794c;
	font-weight: bold;
}

/* CONTACT INFO */
.contact-info {
	text-align: center;
	margin-top: 50px;
	font-size: 16px;
	color: #4b2e1d;
	font-weight: bold;
}

.contact-info a {
	color: #e94e77;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
}

.contact-info a:hover {
	color: #c13b65;
}

/* ZOOM - TVOJ SISTEM OSTAVLJAMO NEDIRNUT! */
.zoom-container {
	position: relative;
	cursor: zoom-in;
}

.zoom-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	padding: 5px;
	font-size: 20px;
	color: #4b2e1d;
	pointer-events: none;
}

.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.lightbox img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 10px;
}

@media (max-width: 375px) {
	.hero {
		margin-top: 80px;
		padding: 30px 10px 10px;
	}
	.hero h1 {
		font-size: 20px;
	}
	.hero p {
		font-size: 13px;
	}
	.section-title {
		font-size: 16px;
		padding-bottom: 8px;
		margin: 30px 0 15px;
	}
	.product-card {
		width: 100%;
		max-width: 320px;
		padding: 15px;
	}
	.product-card img {
		height: 160px;
	}
	.product-card h3 {
		font-size: 15px;
	}
	.product-card p {
		font-size: 13px;
	}
	.product-card span {
		font-size: 13px;
	}
	.info-section {
		padding: 25px 10px;
		margin-top: 20px;
	}
	.info-section h2 {
		font-size: 18px;
	}
	.info-section ul li {
		font-size: 13px;
	}
	.contact-info {
		font-size: 12.5px;
	}
}

/* Telefoni standardni (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
	.hero {
		margin-top: 90px;
		padding: 30px 12px 12px;
	}
	.hero h1 {
		font-size: 22px;
	}
	.hero p {
		font-size: 14px;
	}
	.section-title {
		font-size: 17px;
		padding-bottom: 8px;
		margin: 35px 0 18px;
	}
	.product-card {
		width: 100%;
		max-width: 340px;
		padding: 16px;
	}
	.product-card img {
		height: 170px;
	}
	.product-card h3 {
		font-size: 16px;
	}
	.product-card p {
		font-size: 14px;
	}
	.product-card span {
		font-size: 14px;
	}
	.info-section {
		padding: 28px 12px;
		margin-top: 25px;
	}
	.info-section h2 {
		font-size: 19px;
	}
	.info-section ul li {
		font-size: 13.5px;
	}
	.contact-info {
		font-size: 13px;
	}
}

/* Telefoni veći (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
	.hero {
		margin-top: 100px;
		padding: 35px 15px 15px;
	}
	.hero h1 {
		font-size: 24px;
	}
	.hero p {
		font-size: 14px;
	}
	.section-title {
		font-size: 18px;
		padding-bottom: 9px;
		margin: 40px 0 20px;
	}
	.product-card {
		width: 100%;
		max-width: 360px;
		padding: 18px;
	}
	.product-card img {
		height: 180px;
	}
	.product-card h3 {
		font-size: 17px;
	}
	.product-card p {
		font-size: 14.5px;
	}
	.product-card span {
		font-size: 14.5px;
	}
	.info-section {
		padding: 30px 15px;
		margin-top: 30px;
	}
	.info-section h2 {
		font-size: 20px;
	}
	.info-section ul li {
		font-size: 14px;
	}
	.contact-info {
		font-size: 13.5px;
	}
}

/* Tableti (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
	.hero {
		margin-top: 110px;
		padding: 40px 20px 20px;
	}
	.hero h1 {
		font-size: 28px;
	}
	.hero p {
		font-size: 15px;
	}
	.section-title {
		font-size: 20px;
		padding-bottom: 10px;
		margin: 40px 0 20px;
	}
	.product-card {
		width: 100%;
		max-width: 380px;
		padding: 20px;
	}
	.product-card img {
		height: 190px;
	}
	.product-card h3 {
		font-size: 18px;
	}
	.product-card p {
		font-size: 15px;
	}
	.product-card span {
		font-size: 15px;
	}
	.info-section {
		padding: 35px 20px;
		margin-top: 35px;
	}
	.info-section h2 {
		font-size: 21px;
	}
	.info-section ul li {
		font-size: 14.5px;
	}
	.contact-info {
		font-size: 14px;
	}
}

/* Desktop (1025px i više) */
@media (min-width: 1025px) {
	.hero {
		margin-top: 100px;
		padding: 40px 20px 20px;
	}
	.hero h1 {
		font-size: 32px;
	}
	.hero p {
		font-size: 16px;
	}
	.section-title {
		font-size: 24px;
		padding-bottom: 10px;
		margin: 40px 0 20px;
	}
	.product-card {
		width: 100%;
		max-width: 300px;
		padding: 20px;
	}
	.product-card img {
		height: 200px;
	}
	.product-card h3 {
		font-size: 18px;
	}
	.product-card p {
		font-size: 15px;
	}
	.product-card span {
		font-size: 15px;
	}
	.info-section {
		padding: 40px 20px;
		margin-top: 40px;
	}
	.info-section h2 {
		font-size: 22px;
	}
	.info-section ul li {
		font-size: 15px;
	}
	.contact-info {
		font-size: 14px;
	}
}
