	:root {
    	--primary-color: #2d2d2d;
    	--accent-green: #4A6741; 
    	--text-dark: #2d2d2d;
    	--white-glass: rgba(255, 255, 255, 0.50); 
	}

	body {
    	font-family: 'Segoe UI', Roboto, sans-serif;
    	background-color: #f0f0f0;
    	background-image: 
        	linear-gradient(120deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%),
        	url('../images/background.png');
    	background-attachment: fixed;
    	margin: 0;
    	display: flex;
    	justify-content: center;
    	align-items: flex-start;
    	padding-top: 20px;
    	min-height: 100vh;
	}

	.app-container {
		width: 100%;
		max-width: 420px;
		margin: 15px;
		background: var(--white-glass);
		border-radius: 12px;
		box-shadow: 0 25px 50px rgba(0,0,0,0.15);
		overflow: hidden;
		display: flex;
		flex-direction: column;
		position: relative;
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
			
	}

	.header-wrapper {
    	position: relative;
    	background-color: transparent; 
    	background-image: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('../images/header.png');
    	background-size: cover;
    	background-position: center;
    	color: white;
    	padding-top: 60px;
    	text-align: center;
		-webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
		mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
	}

	.header-wrapper h1 { 
		margin: 0; 
		font-family: 'Georgia', serif; 
		font-size: 2rem;
		text-shadow: 0 2px 8px rgba(0,0,0,0.6);
	}

	.header-wrapper p { 
		margin: 8px 0 50px; 
		font-size: 0.95rem; 
		font-weight: 500;
		color: #ffffff;
		text-shadow: 0 2px 4px rgba(0,0,0,0.5);
		font-style: italic;
	}

	.waves {
		position: relative;
		width: 100%;
		height: 60px;
		margin-bottom: -7px;
		min-height: 60px;
	}

	.parallax > use { animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite; }
	.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; fill: rgba(255,255,255,0.5); }
	.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; fill: rgba(255,255,255,0.3); }
	.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; fill: rgba(255,255,255,0.2); }
	.parallax > use:nth-child(4) { 
    	animation-delay: -5s; 
    	animation-duration: 20s; 
    	fill: rgba(255, 255, 255, 0.7);
	}

	@keyframes move-forever {
		0% { transform: translate3d(-90px,0,0); }
		100% { transform: translate3d(85px,0,0); }
	}

	.content { padding: 20px 25px 30px; text-align: center; }

	.stock-card {
		background: #fff;
		padding: 20px;
		border-radius: 25px;
		box-shadow: 0 10px 25px rgba(0,0,0,0.03);
		margin-bottom: 25px;
		border: 1px solid #f0f0f0;
	}

	hr.spacer {
    	border: none;
    	height: 1px;
    	background: linear-gradient(to right, transparent, rgba(0,0,0,0.25), transparent);
    	margin: 20px auto;
    	width: 85%;
	}

	.stock-count {
    	font-size: 4.5rem;
    	font-weight: 900;
    	line-height: 1;
    	transition: color 0.5s ease;
	}

	.stock-low {
    	color: #d35400; 
	}

	.stock-medium {
    	color: #f39c12;
	}

	.stock-high {
    	color: var(--accent-green); 
	}

	input {
		width: 100%;
		padding: 15px;
		border-radius: 15px;
		border: 2px solid #eee;
		margin-top: 10px;
		box-sizing: border-box;
		font-size: 1rem;
		background-color: #fcfcfc;
	}

	button {
		width: 100%;
		background: var(--accent-green);
		color: white;
		border: none;
		padding: 18px;
		border-radius: 15px;
		font-size: 1.1rem;
		font-weight: bold;
		margin-top: 20px;
		box-shadow: 0 10px 20px rgba(74, 103, 65, 0.2);
		transition: background 0.3s;
	}
        
	button:hover { background-color: #3d5535; }

	.map-container {
    	width: 100%; 
    	margin-top: 25px;
    	margin-bottom: 0px;
    	border-radius: 15px;
    	overflow: hidden;
    	border: 1px solid rgba(255, 255, 255, 0.4);
    	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    	line-height: 0;
    	box-sizing: border-box;
	}

	.map-container iframe {
    	filter: grayscale(0.3) contrast(0.8) opacity(0.8);
    	transition: filter 0.3s ease;
	}

	.map-container:hover iframe {
    	filter: grayscale(0) contrast(1) opacity(1);
	}

	.footer {
    	background: transparent;
    	padding: 10px 20px 20px 20px;
    	font-size: 0.85rem;
    	color: #444;
    	text-align: center;
	}

	.info-dropdown {
    	text-align: left;
    	background: rgba(74, 103, 65, 0.1);
    	border-radius: 15px;
    	margin-bottom: 25px;
    	border: 1px solid rgba(74, 103, 65, 0.2);
    	overflow: hidden;
    	transition: all 0.3s ease;
	}

	.info-dropdown summary {
    	padding: 15px;
    	cursor: pointer;
    	list-style: none;
    	display: flex;
    	justify-content: space-between;
    	align-items: center;
    	outline: none;
    	font-weight: bold;
    	color: #4A6741;
	}

	.info-dropdown summary::-webkit-details-marker {
    	display: none;
	}

	.summary-title {
    	display: flex;
    	align-items: center;
    	gap: 8px;
	}

	.info-dropdown .arrow {
    	font-size: 0.8rem;
    	transition: transform 0.3s ease;
	}

	.info-dropdown[open] .arrow {
    	transform: rotate(180deg);
	}

	.info-content {
    	padding: 0 15px 15px 15px;
    	border-top: 1px solid rgba(74, 103, 65, 0.1);
	}

	.info-content ul {
    	margin: 10px 0 0 0;
    	padding-left: 20px;
    	font-size: 0.85rem;
    	color: #444;
    	line-height: 1.6;
	}

	.success-card {
		background: white;
		padding: 40px;
		border-radius: 30px;
		text-align: center;
		box-shadow: 0 20px 40px rgba(0,0,0,0.1);
		max-width: 320px;
	}
	
	.icon {
		font-size: 50px;
		color: #4A6741;
		margin-bottom: 20px;
	}
	
	h2 {
		color: #2d2d2d;
		margin-top: 0;
	}
	
	p {
		color: #666;
		line-height: 1.5;
	}
		
	.btn {
		display: inline-block;
		margin-top: 25px;
		padding: 12px 25px;
		background: #4A6741;
		color: white;
		text-decoration: none;
		border-radius: 12px;
		font-weight: bold;
	}