body {
	font-family: sans-serif;
}

p {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #333333;
	margin: 1.25em auto;
	letter-spacing: 0.02em;
	max-width: 700px;
	text-indent: 2em;
	text-align: left;
}


#wrapper {
	max-width: 100%;
	width: 90%;
	background-color: #FFF;
	font-size: 28px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	font-family: sans-serif;
}

/* Links ---- */
a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

/* HEADER ----------- */
.header-banner {
	text-align: center;
	margin-bottom: 1rem;
}

.title-image {
	max-width: 400px;
	width: 100%;
	height: auto;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	padding: 0 0.5rem;
	flex-wrap: wrap;
}

.logo-link {
	display: inline-block;
	flex-shrink: 0;
}

.logo-image {
	height: 120px;
	width: auto;
	display: block;
	max-width: 100%;
}

.main-nav {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.main-nav a {
	text-decoration: none;
	color: #000;
	font-weight: bold;
	font-size: 1.2em;
	padding: 4px 6px;
	white-space: nowrap;
	line-height: 1;
	transition: color 0.3s;
}

.main-nav a:hover {
	color: #0077cc;
}

.translate-wrapper {
	text-align: center;
	margin-top: 1rem;
}

/* Default: hide mobile header */
.mobile-header {
	display: none;
}

/* On small screens: show mobile header, hide desktop */
@media (max-width: 768px) {
	.desktop-header {
		display: none;
	}

	.mobile-header {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		padding: 1rem 0;
	}
}



/*INDEX PAGE -------------- */
.container {
	margin-top: 40px;
	margin-bottom: 40px;
	max-width: 80%;
	width: 80%;
	background-color: #FFF;
	font-size: 28px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	font-family: sans-serif;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.card {
	background: white;
	border-radius: 10px;
	padding: 1rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: transform 0.2s ease;
	font-family: sans-serif;
}

.card:hover {
	transform: translateY(-5px);
}

.card-img {
	width: 100%;
	max-height: 150px;
	/* smaller image */
	object-fit: contain;
	border-radius: 8px;
	margin-bottom: 0.5rem;
}

.card-title {
	font-size: 1rem;
	margin-bottom: 0.5rem;
	text-align: center;
	width: 100%;
	font-family: sans-serif;
}



/* VIEW CART PAGE -----------*/

.cart-container {
	max-width: 1000px;
	margin: 30px auto;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	font-family: sans-serif;
}

.cart-container h1 {
	text-align: center;
	margin-bottom: 30px;
}

.cart-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #ddd;
	padding: 15px 0;
}

.cart-item > div {
	flex: 1 1 20%;
	padding: 5px 10px;
	text-align: center;
}

.cart-item input[type="number"] {
	width: 60px;
	padding: 5px;
}

.remove-btn img {
	width: 25px;
	height: 35px;
	cursor: pointer;
}

.cart-summary {
	text-align: right;
	font-weight: bold;
	margin-top: 20px;
	font-size: 1.2em;
}

.btn-group {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	gap: 15px;
}

.btn {
	display: inline-block;
	padding: 12px 20px;
	background: #0077cc;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	transition: background 0.3s;
	text-align: center;
	flex: 1;
}

.btn:hover {
	background: #005fa3;
}

.cart-empty {
	text-align: center;
	font-size: 1.2em;
	padding: 40px;
}

@media (max-width: 600px) {
	.cart-item {
		flex-direction: column;
		text-align: center;
	}

	.cart-item > div {
		flex: 1 1 100%;
	}

	.btn-group {
		flex-direction: column;
	}


}

/* THANK YOU PAGE --------*/
.thankyou-container {
	max-width: 700px;
	margin: 60px auto;
	padding: 40px 20px;
	background-color: #f9f9f9;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.thankyou-title {
	font-size: 2rem;
	margin-bottom: 20px;
	color: #333;
}

.thankyou-message {
	font-size: 1.1rem;
	color: #555;
}

/* FOOTER ----------*/
.custom-footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	background-color: #f5f5f5;
	color: black;
	padding: 20px;
	font-family: sans-serif;
	text-align: center;
	border-top: 1px solid #ddd;
	font-size: 1em;
}

.custom-footer p {
	text-indent: 0 !important;
	max-width: none !important;
	margin: 0.5em 0 !important;
	text-align: center !important;
}


.footer-section {
	flex: 1 1 250px;
	margin: 10px;
}

.footer-section-address {
	flex: 1 1 250px !important;
	margin: 10px !important;
	color: #005fa3 !important;
}

.custom-footer a {
	color: black;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: bold;
}

.custom-footer a:hover {
	color: #005fa3;
	text-decoration: underline;
}

@media (max-width: 600px) {
	.footer-duplicate {
		display: none;
	}
}

/* VIEW CART PAGE -----------*/

.cart-container {
	max-width: 1000px;
	margin: 30px auto;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cart-container h1 {
	text-align: center;
	margin-bottom: 30px;
}

.cart-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #ddd;
	padding: 15px 0;
}

.cart-item > div {
	flex: 1 1 20%;
	padding: 5px 10px;
	text-align: center;
}

.cart-item input[type="number"] {
	width: 60px;
	padding: 5px;
}

.remove-btn img {
	width: 25px;
	height: 35px;
	cursor: pointer;
}

.cart-summary {
	text-align: right;
	font-weight: bold;
	margin-top: 20px;
	font-size: 1.2em;
}

.btn-group {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	gap: 15px;
}

.btn {
	display: inline-block;
	padding: 12px 20px;
	background: #0077cc;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	transition: background 0.3s;
	text-align: center;
	flex: 1;
}

.btn:hover {
	background: #005fa3;
}

.cart-empty {
	text-align: center;
	font-size: 1.2em;
	padding: 40px;
}

@media (max-width: 600px) {
	.cart-item {
		flex-direction: column;
		text-align: center;
	}

	.cart-item > div {
		flex: 1 1 100%;
	}

	.btn-group {
		flex-direction: column;
	}
}

/* CHECKOUT PAGE ------------*/
.cart-header,
.cart-row,
.cart-footer {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #ddd;
	padding: 10px 0;
	width: 80%;
	margin: auto;
}

.cart-header {
	color: #005fa3;
	font-family: sans-serif;
	font-weight: bold;
	background-color: #f4f4f4;
}

.cart-header > div,
.cart-row > div {
	flex: 1;
	text-align: center;
	font-family: sans-serif;
}

.cart-header > div.product,
.cart-row > div.product {
	flex: 2.5;
	text-align: left;
}

.cart-row > div.product input[type="hidden"] {
	display: none;
}

.cart-footer {
	justify-content: flex-end;
	padding-top: 15px;
}

.cart-footer > div {
	margin-left: 30px;
	text-align: right;
}

.order-form {
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
	font-family: sans-serif;
	width: 80%;
}

.order-form b {
	display: block;
	margin-bottom: 15px;
	text-align: center;
}

.order-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	font-family: sans-serif;
	color: #333;
	font-size: 14px;
	text-align: left;
}

.order-form input[type="text"],
.order-form input[type="email"] {
	width: 100%;
	padding: 10px 14px;
	margin-bottom: 15px;
	border: none;
	border-bottom: 2px solid #ccc;
	border-radius: 0;
	font-size: 16px;
	background-color: #f9f9f9;
	box-sizing: border-box;
	transition: border-color 0.3s ease, background-color 0.3s ease;
	font-family: sans-serif;
}

.order-form input[type="text"]:focus,
.order-form input[type="email"]:focus {
	border-bottom: 2px solid #005fa3;
	outline: none;
	background-color: #fff;
}

.zone-info {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font-family: sans-serif;
	gap: 10px;
}

.zone-info .label-text {
	font-weight: bold;
	font-size: 14px;
	text-align: left;
	flex-shrink: 0;
	color: #333;
}

.zone-info .zone-value {
	font-weight: normal;
	font-size: 0.9em;
	text-align: center;
	flex-grow: 1;
	color: #005fa3;

}


.payment-method {
	text-align: center;
	margin-top: 30px;
	font-size: 14px;
}

.payment-method h2 {
	margin-bottom: 15px;
	font-family: sans-serif;
}

select {
	width: 50%;
	padding: 10px 14px;
	border-radius: 6px;
	border: none;
	border-bottom: 2px solid #ccc;
	border-radius: 0;
	background-color: transparent;
	font-size: 25px;
	background-position: right 10px center;
	background-size: 25px;
	cursor: pointer;
}

.proceed-button {
	padding: 10px 20px;
	font-size: 26px;
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

/* CONTACT PAGE---------- */
.contact-wrapper {
	max-width: 700px;
	margin: 30px auto;
	padding: 30px 25px;
	background: #fefefe;
	border-radius: 10px;
	border: 2px solid #0077cc;
	font-family: sans-serif;
	color: #222;
	box-shadow: 0 3px 10px rgba(0, 119, 204, 0.15);
}

.contact-title {
	text-align: center;
	font-weight: 600;
	font-size: 1.8em;
	margin-bottom: 25px;
	color: #005f99;
}

.contact-fieldset {
	border: none;
	padding: 0;
	margin: 0;
	background: transparent;
}

.contact-legend {
	font-size: 1.4em;
	font-weight: 600;
	color: #005f99;
	margin-bottom: 20px;
	padding-left: 2px;
}

.contact-group {
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
}

.contact-label {
	font-weight: 500;
	margin-bottom: 6px;
	color: #003d66;
	font-size: 0.95em;
}

.contact-input,
.contact-textarea {
	background: transparent;
	border: none;
	border-bottom: 1.5px solid #ccc;
	padding: 6px 4px;
	font-size: 1em;
	transition: border-color 0.25s ease;
	outline: none;
	resize: vertical;
	color: #222;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
	color: #aaa;
	font-style: italic;
}

.contact-input:focus,
.contact-textarea:focus {
	border-bottom-color: #0077cc;
	background: #f7fbff;
}

.contact-submit-wrapper {
	text-align: center;
	margin-top: 25px;
}

.contact-submit {
	background-color: #0077cc;
	color: white;
	font-weight: 600;
	border: none;
	padding: 10px 40px;
	font-size: 1em;
	border-radius: 25px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	box-shadow: none;
}

.contact-submit:hover,
.contact-submit:focus {
	background-color: #005fa3;
	outline: none;
}

/* RETURN PAGE --------*/
.return-policy-wrapper {
	max-width: 700px;
	margin: 40px auto;
	background: #fff;
	padding: 30px 25px;
	border-radius: 12px;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #333;
	line-height: 1.6;
	background-color: #f9faff;
}

.return-policy-title {
	color: #004a99;
	text-align: center;
	margin-bottom: 25px;
}

.return-policy-subtitle {
	color: #0077cc;
	margin-top: 30px;
	margin-bottom: 10px;
	border-bottom: 2px solid #0077cc;
	padding-bottom: 4px;
}

.return-policy-text {
	margin-bottom: 18px;
	font-size: 1.05em;
}

.return-policy-email {
	color: #0077cc;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1.1em;
}

.return-contact {
	text-align: center;
}

.return-policy-email:hover {
	text-decoration: underline;
}

.return-policy-email-icon {
	vertical-align: middle;
}

@media (max-width: 480px) {
	.return-policy-wrapper {
		margin: 20px 15px;
		padding: 20px 15px;
	}

	.return-policy-text,
	.return-policy-email {
		font-size: 1em;
	}
}



/* viewline ------*/
ul {
	list-style-type: none;
	padding-left: 0;
	margin: 0;
}

li {
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 10px;
}

/* PRODUCT PAGES -----------------   */
.product-section {
	max-width: 400px;
	margin: 0 auto 40px;
	padding: 15px 20px;
	background: #f9fafb;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
	transition: box-shadow 0.3s ease;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.product-section h2 {
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 10px;
	color: #222;
	text-align: center;
}

.product-info {
	font-size: 0.9rem;
	line-height: 1.5;
	color: #444;
	text-align: center;
}

.product-info h3 {
	font-size: 1.5rem;
}


.product-section.dual {
	max-width: 400px;
	margin: 0 auto 50px;
	display: flex;
	gap: 50px;
	flex-wrap: wrap;
	justify-content: center;
}

.product-section.dual .product-item {
	flex: 1 1 48%;
	/* two columns, narrower */
	box-sizing: border-box;
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-section.dual .product-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

.price-cart-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	font-size: 1.2rem;
	color: #c00;
}

.price {
	line-height: 1;
	white-space: nowrap;

}

.cart-link {
	display: inline-flex;
	align-items: center;
	height: 2rem;
}

.cart-icon {
	height: 2rem;
	width: auto;
	cursor: pointer;
}

/* Responsive tweaks */
@media (max-width: 600px) {
	.product-section.dual {
		flex-direction: column;
		max-width: 100%;
	}

	.product-section.dual .product-item {
		flex: 1 1 100%;
		margin-bottom: 30px;
	}

	.price-cart-wrapper {
		font-size: 0.9rem !important;
		gap: 6px !important;
	}

	.cart-link {
		height: 1.2rem !important;
		width: auto !important;
	}

	.cart-icon {
		height: 1.2rem !important;
		max-width: 28px !important;
		width: auto !important;
	}

	img {
		width: 80%;
		height: auto;
	}
}

/* SHOW MORE BOX */
details {
	margin: 1rem 0;
	font-family: system-ui, sans-serif;
}

summary {
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
	transition: color 0.2s ease;
}

summary:hover {
	color: #007acc;
}

summary::marker,
summary::-webkit-details-marker {
	display: none;
}

summary::after {
	content: "▸";
	transition: transform 0.3s ease;
	font-size: 1rem;
	transform-origin: center;
	display: inline-block;
}

details[open] summary::after {
	transform: rotate(90deg);
}

.product-info {
	padding-left: 1.5rem;
	margin: 0.25rem 0;
	line-height: 1.5;
	font-size: 0.95rem;
}
