Get free delivery on orders of ₹999 or more
Get ₹100 off on order above ₹999 | Code: NISARGA100

Valentine Offer!


/* — Global Styles & Variables (Minimal for Timer) — */
:root {
–text-light: #0c5a16;
–border-radius-small: 8px;
}

/* — Countdown Section Styles (Extracted and Adapted) — */
.countdown-wrapper {
font-family: ‘Inter’, sans-serif;
background-color: var(–primary-green);
color: var(–text-light);
text-align: center;
width: 100%;
max-width: 600px;
margin: 20px auto;
}
.countdown-wrapper h3 {
font-family: ‘Lora’, serif;
color: var(–text-light);
margin-bottom: 0.5em;
font-size: clamp(1.3rem, 3vw, 1.8rem);
}
.countdown-wrapper p {
font-family: ‘Inter’, sans-serif;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 25px;
font-size: clamp(0.9rem, 2vw, 1rem);
}
/* Changed ID selector from #countdownTimer to #timer */
#timer {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}
.timer-segment { /* Kept class for segments as it’s cleaner */
background-color: #fafafa;
padding: 15px;
border-radius: var(–border-radius-small);
min-width: 80px;
text-align: center;
}
.timer-segment .number {
font-size: clamp(1.8rem, 4vw, 2.2rem);
font-weight: 700;
font-family: ‘Inter’, sans-serif;
display: block;
line-height: 1.1;
color: var(–text-light);
border-radius: 4px;
padding: 5px;
margin: 0 auto;
}
.timer-segment .label {
font-size: clamp(0.7rem, 1.5vw, 0.8rem);
text-transform: uppercase;
opacity: 0.8;
margin-top: 3px;
color: var(–text-light);
}

@media (max-width: 480px) {
#timer {
gap: 15px;
}
.timer-segment {
padding: 10px;
min-width: 65px;
}
.countdown-wrapper {
padding: 20px 15px;
}
}

00
Days
00
Hours
00
Minutes
00
Seconds

function startDealTimer() {
let dealEndDate = “2026-02-12 23:59:59”; // Change this date
let endTime = new Date(dealEndDate).getTime();

function updateTimer() {
let now = new Date().getTime();
let diff = endTime – now;

if (diff <= 0) {
document.getElementById('timer').innerHTML = "

Deal Ended!

“;
clearInterval(timerInterval);
return;
}

let days = Math.floor(diff / (1000 * 60 * 60 * 24));
let hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
let minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
let seconds = Math.floor((diff % (1000 * 60)) / 1000);

document.getElementById(‘days’).textContent = days.toString().padStart(2, ‘0’);
document.getElementById(‘hours’).textContent = hours.toString().padStart(2, ‘0’);
document.getElementById(‘minutes’).textContent = minutes.toString().padStart(2, ‘0’);
document.getElementById(‘seconds’).textContent = seconds.toString().padStart(2, ‘0’);
}

let timerInterval = setInterval(updateTimer, 1000);
updateTimer();
}

if (document.readyState === ‘loading’) {
document.addEventListener(‘DOMContentLoaded’, startDealTimer);
} else {
startDealTimer();
}

Get 10% OFF on plants this Valentine’s Day—use coupon code LOVE2026 at checkout and enjoy this limited-time offer.

Perks of Our Plant Offer


Beautify Your Space

Add a touch of nature’s elegance to your home or office with our stunning plants.

Air Purifying Qualities

Many of our plants are known for their ability to naturally cleanse the air you breathe.

Expertly Grown & Healthy

Receive vibrant, well-cared-for plants, ready to thrive in their new home.

Trusted by Plant Lovers – See Our Google Reviews


Grow With Us!


Subscribe for exclusive plant care tips, new arrival alerts, and special discounts delivered to your inbox.

/* Helper class to visually hide labels but keep them for accessibility */
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}

.fancy-stacked-form {
max-width: 450px; /* Adjust width as you like */
margin: 40px auto; /* Centers the form on the page and adds top/bottom space */
padding: 25px 30px;
background-color: #ffffff; /* White background for the form */
border-radius: 8px; /* Rounded corners for the form container */
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1); /* A nice shadow for a “fancy” look */
box-sizing: border-box;
}

.fancy-stacked-form input[type=”text”],
.fancy-stacked-form input[type=”email”] {
width: 100%; /* Make input fields take full width of the form container */
padding: 14px;
margin-bottom: 18px; /* Space between the input fields */
border: 1px solid #d0d0d0; /* Softer border color */
border-radius: 6px; /* Rounded corners for input fields */
box-sizing: border-box; /* Ensures padding doesn’t expand width */
font-size: 16px;
background-color: #fdfdfd; /* Slightly off-white background for inputs */
color: #333;
}

.fancy-stacked-form input[type=”text”]::placeholder,
.fancy-stacked-form input[type=”email”]::placeholder {
color: #888; /* Lighter placeholder text */
}

.fancy-stacked-form input[type=”text”]:focus,
.fancy-stacked-form input[type=”email”]:focus {
outline: none;
border-color: #158311; /* Highlight border on focus, using your green */
box-shadow: 0 0 0 2px rgba(0, 171, 132, 0.2); /* Subtle glow on focus */
}

.fancy-stacked-form input[type=”submit”] {
width: 100%; /* Full-width button */
padding: 14px 20px;
background-color: #0e700a; /* Your original green color */
color: white;
border: none;
border-radius: 6px;
font-size: 17px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.25s ease, transform 0.1s ease;
margin-top: 10px; /* Space above the submit button */
}

.fancy-stacked-form input[type=”submit”]:hover {
background-color: #008f6e; /* Slightly darker green on hover */
}

.fancy-stacked-form input[type=”submit”]:active {
transform: scale(0.99); /* Slight press effect */
}