/* -------------------- RESET & SETUP -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Critical Flexbox for Sticky Footer */
html {
  height: 100%; 
}

body {
  min-height: 100vh;
  /* Font: Use a clean, universally readable sans-serif font */
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  /* Background: Use a subtle off-white for professionalism */
  background-color: #fcfcfc; 
  
  /* Flexbox setup: Stacks content vertically */
  display: flex;
  flex-direction: column;  
}

/* -------------------- HEADER & NAVIGATION -------------------- */
header {
  /* Retain your professional green */
  background-color: #2e6b3a; 
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0; 
  /* Add a subtle shadow for elevation, signaling authority */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

header .logo { /* Use .logo class for your site title in header.php */
  font-size: 1.8rem;
  /* Use a bold weight for the logo/site title */
  font-weight: 700; 
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px; /* Slightly increased gap for spaciousness */
}
nav ul li a.active {
  color: #f5b301;
  font-weight: bold;
  border-bottom: 2px solid #f5b301;
  padding-bottom: 4px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  /* Slightly more professional text-transform */
  text-transform: uppercase;
  /* Add subtle transition for hover effects */
  transition: color 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
  /* Use a subtle, sophisticated hover color */
  color: #f5b301; 
}

/* -------------------- HERO SECTION -------------------- */
.hero {
  position: relative;
  background: url('images/banner.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #f5f5f5;
}

.hero-btn {
  background: #f5b301;
  color: #2e6b3a;
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-btn:hover {
  background: #e0a300;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
/* -------------------- HERO SECTION -------------------- */
.hero {
  background-image: url('../images/hero.jpg'); /* 👈 Replace with your actual image name */
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

/* Optional dark overlay for text contrast */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero h1,
.hero p,
.hero .btn {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #f1f1f1;
}


/* -------------------- MAIN CONTENT -------------------- */
main {
  /* CRITICAL FOR STICKY FOOTER: This element consumes all available vertical space */
  flex-grow: 1; 
  padding: 40px 20px;
  text-align: center;
  /* Limit the main content width for readability on large screens */
  max-width: 1200px; 
  margin: 0 auto; 
  width: 100%;
}

/* Headings: Use strong, professional styling */
h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 10px;
  /* Underline effect for authority */
  border-bottom: 2px solid #ddd;
  display: inline-block;
}

/* Buttons: Clean, high-contrast, professional */
.btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #f5b301; /* High contrast CTA color */
  color: #2e6b3a; 
  text-decoration: none;
  border: none;
  border-radius: 4px; /* Slight rounding for softness */
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
}

.btn:hover {
  background-color: #e0a300;
  transform: translateY(-1px);
}

/* -------------------- PRODUCT DISPLAY STYLES -------------------- */
/* Products Page */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.product-card {
  /* Clean, white card background with subtle box shadow */
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #eee;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.product-card:hover {
  /* Slightly stronger shadow on hover to draw attention */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 1.2rem;
  color: #2e6b3a; /* Use brand color for product titles */
  margin-bottom: 5px;
}

.product-card p {
  /* Price text */
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

/* -------------------- FOOTER STYLE -------------------- */
footer {
  background-color: #2e6b3a;
  color: white;
  text-align: center;
  padding: 20px 0; /* Slightly more padding than before */
  width: 100%;
  font-size: 0.9rem;
  flex-shrink: 0; 
}
/* -------------------- PRODUCT DETAILS PAGE -------------------- */

.product-details {
  /* Ensure the section content is aligned and centered */
  max-width: 1000px;
  margin: 0 auto;
  text-align: left; /* Reset text alignment inside the section */
}

.product-container {
  /* Use Flexbox to align the image and info side-by-side */
  display: flex;
  gap: 40px;
  align-items: flex-start; /* Align items to the top */
  padding-top: 20px;
}

.product-container img {
  /* Constrain the image size to a reasonable width */
  max-width: 400px; 
  width: 100%; /* Ensure responsiveness */
  height: auto;
  border-radius: 8px;
  /* Add a border for a cleaner, framed look */
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.product-info {
  /* Allow the information block to fill the remaining space */
  flex-grow: 1;
}

.product-info h2 {
  /* Override the centered underline rule for the main title */
  border-bottom: none; 
  padding-bottom: 0;
  margin-bottom: 15px;
  font-size: 2.5rem;
}
.product-info h2 {
  font-size: 2rem;
  color: #2e6b3a;
}
.product-info .btn {
  background-color: #f5b301;
  color: #2e6b3a;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.product-info .btn:hover {
  background-color: #e0a300;
}
/* -------------------- RELATED PRODUCTS SECTION -------------------- */
.related-products {
  margin-top: 60px;
  padding: 30px 20px;
  text-align: center;
  background-color: #fafaf6;
  border-top: 2px solid #eee;
}

.related-products h3 {
  font-size: 1.8rem;
  color: #2e6b3a;
  margin-bottom: 30px;
}

.related-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.related-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.related-card h4 {
  font-size: 1rem;
  color: #2e6b3a;
  margin: 10px 0 5px;
}

.related-card .price {
  color: #e67e22;
  font-weight: bold;
  margin-bottom: 10px;
}

.related-card .btn {
  display: inline-block;
  background-color: #f5b301;
  color: #2e6b3a;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.related-card .btn:hover {
  background-color: #e0a300;
}

/* Ensure responsiveness on small screens */
@media (max-width: 768px) {
  .product-container {
    /* Stack the image and info vertically on mobile */
    flex-direction: column;
    gap: 20px;
  }
  .product-container img {
    /* Image can take more width on mobile for better viewing */
    max-width: 100%;
  }
  .product-details {
    padding: 0 10px;
  }
}
/* --- GLOBAL CONTENT IMAGE --- */
/* Applies basic responsiveness to ALL images within the main content */
main img, .content img {
    /* Prevents images from exceeding the width of their container */
    max-width: 100%; 
    /* Ensures the image height scales proportionally */
    height: auto; 
    /* Ensures the image is treated as a block element for better layout control */
    display: block;  
}
/* --- HOMEPAGE/INDEX PAGE PRODUCT GRID --- */
/* Target the product images on the homepage (you may need to adjust the selector) */
.product-grid img, .homepage-products img {
    width: 100%;
    /* Constrain the height to create a uniform look in the grid */
    max-height: 250px; 
    height: auto;
    /* This makes images of different shapes cover the same area without distortion */
    object-fit: cover; 
    border-radius: 4px;
}
/* --- CONTACT PAGE STYLING --- */

.contact {
    /* Center the section content on the page */
    max-width: 600px; 
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff; /* White background for the form area */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

.contact h2 {
    text-align: center;
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #e0e0e0; /* Subtle separator */
    padding-bottom: 10px;
}

.contact p {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
}

/* --- Form Elements Styling --- */

.contact form {
    display: flex;
    flex-direction: column;
}

.contact label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
    display: block; /* Ensures label takes up full width */
}

.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box; /* Crucial for padding/border not to increase total width */
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact input[type="text"]:focus,
.contact input[type="email"]:focus,
.contact textarea:focus {
    border-color: #007bff; /* Highlight focus with a primary color */
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

.contact textarea {
    resize: vertical; /* Allow resizing vertically only */
    min-height: 150px;
}

/* --- Button Styling --- */

.contact .btn {
    background-color: #007bff; /* Primary button color */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 100%; /* Make button full width */
}

.contact .btn:hover {
    background-color: #0056b3; /* Darker color on hover */
}

/* --- Submission Message Styling --- */

.contact p:last-child {
    margin-top: 20px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    text-align: center;
}

/* --- Responsive Adjustments (Optional but Recommended) --- */
@media (max-width: 650px) {
    .contact {
        margin: 20px 10px;
        padding: 20px;
        box-shadow: none; /* Remove shadow on very small screens */
    }
}
.cart {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}
.cart table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.cart th, .cart td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}
.cart th {
    background-color: #f4f4f4;
    font-weight: bold;
}
.cart tr:nth-child(even) {
    background-color: #f9f9f9;
}
.cart .btn { /* General button styling */
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-right: 10px;
}
.cart .btn.danger { /* Style for the Remove button */
    background-color: #dc3545;
    color: white;
}
.cart .btn.danger:hover {
    background-color: #c82333;
}
.cart a.btn { /* Style for Proceed to Checkout */
    background-color: #007bff;
    color: white;
}
.cart a.btn:hover {
    background-color: #0056b3;
}


/* --- CHECKOUT PAGE STYLING --- */

.checkout-container {
    /* Main wrapper to center content and set max width */
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: flex; /* Use Flexbox for two-column layout */
    gap: 40px;
    align-items: flex-start; /* Align sections to the top */
}

/* --- LEFT COLUMN: Forms (Shipping, Payment) --- */
.checkout-details {
    flex: 2; /* Takes up 2/3 of the space */
    min-width: 0; /* Prevents overflow issues */
}

.form-section {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.form-section h3 {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #333;
}

/* Styling for Labels and Inputs */
.form-section label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="tel"],
.form-section textarea,
.form-section select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box; 
    font-size: 1rem;
}

.form-section input:focus,
.form-section select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.1);
}

/* --- RIGHT COLUMN: Order Summary --- */
.order-summary-wrapper {
    flex: 1; /* Takes up 1/3 of the space */
    position: sticky; /* Keep summary visible while scrolling forms */
    top: 20px;
}

.order-summary {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.order-summary table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.order-summary th, .order-summary td {
    padding: 10px 0;
    text-align: right;
    border-bottom: 1px dotted #ddd;
}

.order-summary th {
    text-align: left;
    font-weight: normal;
    color: #777;
}

.order-summary .total-row td {
    border-top: 2px solid #333;
    font-weight: bold;
    font-size: 1.2em;
    padding-top: 15px;
}

/* --- Place Order Button --- */
.btn-place-order {
    background-color: #28a745; /* Green for final action */
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-place-order:hover {
    background-color: #1e7e34;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .checkout-container {
        /* Stack the columns vertically on tablets/mobiles */
        flex-direction: column; 
        padding: 10px;
        gap: 20px;
    }
    .order-summary-wrapper {
        position: static; /* Disable sticky positioning on mobile */
    }
}
/* Responsive adjustment for small screens */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  nav ul {
    margin-top: 10px;
    justify-content: center;
    gap: 15px;
  }
  main {
    padding: 20px 10px;
  }
}

.swadeshi-section {
  padding: 50px 20px;
  text-align: center;
  background: #faf6f1;
}

.swadeshi-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #2c2c2c;
}

.swadeshi-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.swadeshi-card {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 15px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.swadeshi-card h3 {
  margin-bottom: 15px;
  color: #333;
}

.swadeshi-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.swadeshi-card .btn {
  display: inline-block;
  background: #e67e22;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.swadeshi-card .btn:hover {
  background: #d35400;
}

/* -------------------- UNIFORM CARD GRID STYLING -------------------- */

/* Common grid layout for products, categories, and Swadeshi cards */
.category-grid, 
.product-grid, 
.swadeshi-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

/* Common card style */
.category, 
.product, 
.swadeshi-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* Image styling (uniform for all cards) */
.category img,
.product img,
.swadeshi-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Card title */
.category h3,
.product h3,
.swadeshi-card h3 {
  font-size: 1.2rem;
  color: #2e6b3a;
  margin-bottom: 10px;
}

/* Card description */
.category p,
.product p,
.swadeshi-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Button styling (consistent look) */
.category .btn,
.product .btn,
.swadeshi-card .btn {
  background-color: #f5b301;
  color: #2e6b3a;
  padding: 10px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.category .btn:hover,
.product .btn:hover,
.swadeshi-card .btn:hover {
  background-color: #e0a300;
}

/* Hover effect for all cards */
.category:hover,
.product:hover,
.swadeshi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
.category-filter {
  text-align: center;
  margin: 20px 0;
}

.category-filter a {
  text-decoration: none;
  margin: 0 10px;
  padding: 8px 16px;
  background-color: #eee;
  color: #333;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
}

.category-filter a:hover {
  background-color: #ddd;
}

.category-filter a.active {
  background-color: #222;
  color: #fff;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  width: 220px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background-color: #fff;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.btn-add {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #2c7a7b;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn-add:hover {
  background-color: #205f5f;
}
.filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px auto;
}

.filter-bar input[type="text"] {
  padding: 8px 12px;
  width: 250px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.filter-bar select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.filter-bar button {
  padding: 8px 16px;
  background-color: #2c7a7b;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.filter-bar button:hover {
  background-color: #205f5f;
}

/* Responsive view */
@media (max-width: 768px) {
  .category, 
  .product, 
  .swadeshi-card {
    width: 90%;
  }
}
/* -------------------- HOMEPAGE CATEGORY STYLING (Override) -------------------- */
.categories {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.categories h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2e6b3a;
}

.category-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.category {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.category img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.category h3 {
  padding: 15px 0;
  color: #2e6b3a;
  font-size: 1.2rem;
}
/* -------------------- SWADESHI SECTION UPGRADE -------------------- */
.swadeshi-section {
  background: linear-gradient(to bottom right, #fff9f2, #f9f7f3);
  padding: 70px 20px;
  text-align: center;
}

.swadeshi-section h2 {
  color: #2e6b3a;
  margin-bottom: 15px;
  font-size: 2rem;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.swadeshi-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  width: 300px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.swadeshi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
    background-position: top;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
/* -------------------- SWADESHI SANTALU PAGE -------------------- */
.page-intro {
  text-align: center;
  padding: 50px 20px 30px;
}

.page-intro h1 {
  color: #2e6b3a;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-intro p {
  font-size: 1.1rem;
  color: #555;
}

.santalu-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
}

.santalu-card {
  background: #fff;
  border-radius: 15px;
  width: 320px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.santalu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.santalu-card img {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 15px;
}

.santalu-card h3 {
  color: #2e6b3a;
  margin-bottom: 10px;
}

.santalu-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.4;
}
/* -------------------- GOMATA ANGADI PAGE -------------------- */
.gomata-awareness {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #fffaf3, #faf9f5);
}

.gomata-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.gomata-text h2 {
  color: #2e6b3a;
  font-size: 2rem;
  margin-bottom: 15px;
}

.gomata-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}

.gomata-text .btn {
  margin-top: 10px;
}

.gomata-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.gomata-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
/* -------------------- GOMATA ANGADI PAGE -------------------- */

.gomata-stores {
  text-align: center;
  padding: 40px 20px;
}

.gomata-stores h2 {
  font-size: 2rem;
  color: #2e6b3a;
  margin-bottom: 30px;
  border-bottom: 2px solid #ddd;
  display: inline-block;
  padding-bottom: 8px;
}

.store-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.store-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.store-card h3 {
  color: #2e6b3a;
  margin-bottom: 10px;
}

.store-card p {
  color: #444;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.store-card .btn {
  display: inline-block;
  background-color: #f5b301;
  color: #2e6b3a;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.store-card .btn:hover {
  background-color: #e0a300;
}

/* -------------------- STORE LISTINGS -------------------- */
.store-listings {
  text-align: center;
  padding: 60px 20px;
  background: #faf6f1;
}

.store-listings h2 {
  color: #2e6b3a;
  font-size: 2rem;
  margin-bottom: 40px;
}

.store-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.store-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  width: 300px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.store-card h3 {
  color: #2e6b3a;
  margin-bottom: 10px;
}

.store-card p {
  color: #555;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.store-card .btn {
  background: #f5b301;
  color: #2e6b3a;
  padding: 10px 18px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}

.store-card .btn:hover {
  background: #e0a300;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 768px) {
  .gomata-awareness {
    flex-direction: column;
    text-align: center;
  }
  .gomata-text {
    text-align: center;
  }
}
.event-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}
.event-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}
.event-card h3 {
  color: #2e6b3a;
  margin-bottom: 10px;
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #2e6b3a;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 20px;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s;
}
#backToTop:hover {
  background-color: #f5b301;
  color: #2e6b3a;
}
html {
  scroll-behavior: smooth;
}
