body {
  font-family: 'Roboto', sans-serif;
  /* background-color: #faf9f7; */
  margin: 0;
  padding: 0;
  color: #222;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* max-width: 100%; */
    
}
html, body {
  overflow-x: hidden;
}
nav{
    position: fixed;
    width: 100%;
    /* top: 0%; */
   transition: top 0.3s ease;
    z-index: 9999;

}
/* This targets ALL links inside ANY element on the page */
* a {
  text-decoration: none;
  color: inherit; 
}
/* This targets links that are visited (the blue is often a "visited" link color) */
a:visited, a:active, a:link {
  text-decoration: none;
  color: inherit; 
}


/* ---------------- NAV TOP ---------------- */
.nav-top {
    background-color: #f7a800;
    height: 3vh;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-content-wrapper {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
}

.marquee-text-copy {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: white;
    margin-right: 2rem; /* spacing between repeated text */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ---------------- NAV MID ---------------- */
.nav-mid {
    width: 100%;
    height: 10.5vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
/* -------- SEARCH BAR TRANSITION -------- */
.nav-mid {
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.nav-search {
  position: absolute;
  inset: 0;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.4s ease;
}

.nav-search input {
  width: 70%;
  max-width: 600px;
  padding: 10px 15px;
  border: 1.5px solid #ccc;
  border-radius: 30px;
  outline: none;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.nav-search input:focus {
  border-color: rgba(246, 155, 0, 1);
}

.nav-search i.close-search {
  font-size: 20px;
  cursor: pointer;
  color: #444;
}

/* Active state */
.nav-mid.active .nav-mid-sec {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.nav-mid.active .nav-search {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-mid-sec {
    width: 90%;
    display: flex;
    align-items: center;
}

.nav-left,
.nav-center,
.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
}

.nav-center {
    justify-content: center;
}

.nav-right {
    justify-content: flex-end;
    gap: 20px;
}

.nav-center img {
    max-height: 80px;
    width: auto;
}

.nav-right i,
.nav-left i {
    font-size: 20px;
    cursor: pointer;
}
/* ---------- SIDE MENU ---------- */
.side-menu {
  position: fixed;
  top: 0;
  left: -260px; /* hidden initially */
  width: 250px;
  height: 100vh;
  background-color: white;
  box-shadow: 2px 0 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 20px;
  gap: 15px;
  transition: left 0.4s ease;
  z-index: 2000;
}

.side-menu.active {
  left: 0;
}

.side-menu-header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.close-menu {
  font-size: 22px;
  cursor: pointer;
  color: #444;
}

.side-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}

.side-menu-links a {
  text-decoration: none;
  color: rgba(107, 0, 7, 1);
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  transition: color 0.2s ease-in-out;
}

.side-menu-links a:hover {
  color: rgba(246, 155, 0, 1);
}

/* Overlay for background blur */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1500;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* -----------RESPONSIVE ADJUSTMENTS----------- */

/* Large desktops and TVs */
@media screen and (max-width: 1400px) {
}

/* Desktops */
@media screen and (max-width: 1200px) {
}

/* Small laptops / large tablets */
@media screen and (max-width: 992px) {
  .nav-links { display: none; } /* hide bottom nav-links */
}

/* Tablets */
@media screen and (max-width: 768px) {
  .nav-links { display: none; }
  .side-menu { width: 230px; }
}

/* Small devices (phones) */
@media screen and (max-width: 600px) {
  .nav-links { display: none; }
  .side-menu { width: 220px; }
  .side-menu-links a { font-size: 1rem; }
}

/* ---------------- NAV BOTTOM ---------------- */
.nav-btm-sec {
    height: 5.5vh;
    background-color: rgba(107, 0, 7, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap; /* allows links to wrap on small screens */
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.8rem, 1vw, 2rem);
    position: relative;
    padding: 5px 0;
    transition: color 0.2s;
}
.nav-links a::before {
    content: '|';
    color: transparent;
    position: absolute;
    left: -1rem;
    transition: color 0.2s ease-in-out;
}

.nav-links a:hover {
    color: rgba(246, 155, 0, 1);
}

.nav-links a:hover::before {
    color: rgba(246, 155, 0, 1);
}

/* blog  */


/* ------------------ BLOG DETAILS PAGE ------------------ */


.blog-details {
    padding: 60px 0;
    font-family: "Roboto", sans-serif!important; 
    background: #fffdf7;
    margin-top: 10vh;
}
body {
    -ms-overflow-style: none;  /* for IE & Edge */
    scrollbar-width: none;     /* for Firefox */
}

body::-webkit-scrollbar {
    display: none;  /* for Chrome, Safari, Opera */
}

.blog-details-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}
.container img {
max-width: 90%;
 
}
/* Title */
.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color:  rgba(246, 155, 0, 1);
    line-height: 1.3;
    margin-bottom: 35px;
    font-family: "Roboto", sans-serif!important; 
    text-align: center;    
}

/* Meta */
.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
}

.blog-meta span {
    background: #f7a8001a;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
}

/* Header Image */
.blog-header-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
    object-fit: cover;
    max-height: 450px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

/* Main content */
.blog-content {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-top: 5vh;
    width: 90%;
    margin-left: 5%;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content h2,
.blog-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #222;
}

.blog-content strong {
    color: #f7a800;
}

.blog-content img {
    width: 100%;
    border-radius: 10px;
    margin: 25px 0;
}

/* ------------------ RESPONSIVE ------------------ */

@media (max-width: 768px) {
    
    .blog-title {
        font-size: 2rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }

    .blog-header-img {
        max-height: 300px;
    }

    .blog-content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .blog-title {
        font-size: 1.7rem;
    }

    .blog-details-container {
        width: 94%;
    }

    .blog-header-img {
        max-height: 250px;
    }
}



/* footer  */


/* Base styles provided by the user */
footer {
    height: 58.57vh; /* Approximately 500px in the image's context, but using the vh unit as requested */
    /* border: 2px solid rebeccapurple; As requested */
    margin-top: 10vh;
    /* Custom styles to match the image */
    background-color: rgba(27, 0, 0, 1); /* Dark brown background color */
    color: #ffffff; /* Default text color */
    font-family: sans-serif; /* A common sans-serif font */
    padding: 60px 10%; /* Top/bottom padding and side padding */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes the bottom bar to the bottom */
}




/* --- Main Content Layout --- */
.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px; /* Optional: to limit content width on large screens */
    margin: 0 auto;
    padding-bottom: 40px; /* Space above the bottom line */
}

/* --- Headings and Links --- */
h3 {
    
    /* font-weight: bold; */
    margin-bottom: 20px;
    border-bottom: 1px solid #f29a07; /* Orange underline for headings */
    display: inline-block; /* Makes the border only as wide as the text */
    padding-bottom: 5px;
    font-size: 0.5rem;
    color: #a0a0a0;
    
}

.footer-links-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.footer-links-group a {
    color: #a0a0a0; /* Lighter grey for general links */
    text-decoration: none;
    line-height: 2.2; /* Spacing between links */
    font-size: 1rem;
    display: block;
    
}

.footer-links-group a:hover {
    color: #f29a07; /* Hover effect */
}

/* Highlight the first link in 'Popular Products' (Coriander Seeds) */
.footer-links-group:first-of-type ul li:first-child a {
    color: #f29a07; /* Orange color for the highlighted seed */
}

/* --- Brand and Social Section --- */
.footer-brand-section {
    flex: 1; /* Allows it to take up more space */
    max-width: 250px;
}

.logo img {
    /* Assuming the logo is an image. Adjust styles based on actual logo size */
    width: 200px; /* Example size */
    margin-bottom: 10px;
    filter: brightness(0) invert(1);

}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    
}

.social-icons a {
    /* Styles for the circular, dark icons */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #f29a07; /* Orange border */
    background-color: transparent;
    transition: background-color 0.3s;
    /* align-items: center;
    justify-content: center;
    display: flex; */
}

.social-icons a:hover {
    background-color: #f29a07;
}

.social-icons  i{
   font-size: 20px;

    filter: brightness(0) invert(1); /* Assuming icons are dark and need to be white */
}
/* --- Contact Section --- */
.footer-contact-section {
    flex: 1.5;
    max-width: 350px;
}

.contact-text, .contact-info {
    font-size: 1rem;
    color: #a0a0a0;
    margin-bottom: 15px;
    line-height: 1.5;
    /* Use flexbox for icon and text alignment */
    display: flex;
    align-items: flex-start;
}

/* This targets the icon placeholder span */
.icon-placeholder {
    /* The image icons are small white shapes inside or next to the text */
    /* If using a Font Icon Library (recommended), you'd replace the content here */
    color: white; /* Color of the icon itself */
    font-size: 0.8rem; /* Smaller icon size */
    margin-right: 10px;
    /* Styles to mimic the subtle icon look */
    width: 20px; /* Ensures text is pushed over */
    height: 20px;
    text-align: center;
    line-height: 20px;
    flex-shrink: 0;
}


/* --- Contact Section --- */
.footer-contact-section {
    flex: 1.5;
    max-width: 350px;
}

.contact-text, .contact-info {
    font-size: 1rem;
    color: #a0a0a0;
    margin-bottom: 15px;
    line-height: 1.5;
    /* Use flexbox for icon and text alignment */
    display: flex;
    align-items: flex-start; /* Aligns items to the top (important for multi-line text) */
}

/* New CSS to style the Font Awesome icons */
.icon-style {
    color: #ffffff; /* White color for the icon, as seen in the image */
    font-size: 0.9rem; /* Small icon size */
    margin-right: 10px;
    width: 20px; /* Ensures the text is pushed over consistently */
    text-align: center;
    line-height: inherit; /* Inherit line height for vertical alignment */
    flex-shrink: 0; /* Prevents the icon from shrinking */
    padding-top: 2px; /* Slight adjustment to align with text visually */
}

.footer-contact-section a {
    color: #a0a0a0;
    text-decoration: none;
}

.highlight-number {
    color: #f29a07;
    font-weight: bold;
}
/* --- Bottom Bar --- */
.footer-bottom-bar {
    width: 100%;
    /* This line separates the main content from the copyright bar */
    border-top: 1px solid #4a251b; 
    padding-top: 20px;
    
    /* Key change: Use Flexbox to align items and space them out */
    display: flex;
    justify-content: space-between; /* Pushes the two items to opposite ends */
    align-items: center; /* Vertically centers the text and link */
    
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-top: 30px; /* Provides separation from the main content */
}

.footer-bottom-bar a {
    color: #a0a0a0;
    text-decoration: none;
}

.footer-bottom-bar a:hover {
    color: #f29a07; /* A subtle hover effect */
}



/* -----------RESPONSIVE ADJUSTMENTS----------- */

/* Large desktops and TVs */
@media screen and (max-width: 1400px) {
    footer {
        padding: 50px 6%;
    }
}

/* Desktops */
@media screen and (max-width: 1200px) {
    .footer-content-wrapper {
        max-width: 1000px;
        gap: 40px;
    }
}

/* Small laptops / large tablets */
@media screen and (max-width: 992px) {
    footer {
        height: auto;
        padding: 50px 5%;
    }
    .footer-content-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }
    
    .footer-brand-section,
    .footer-links-group,
    .footer-contact-section {
        flex: 1 1 45%;
        max-width: none;
    }

    .footer-contact-section {
        margin-top: 10px;
    }

    h3 {
        margin-bottom: 15px;
    }
}

/* Tablets */
@media screen and (max-width: 768px) {
    .footer-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }

    .footer-brand-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    footer {
        height: auto;
        padding: 40px 8%;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Small devices (phones) */
@media screen and (max-width: 600px) {
    footer {
        padding: 35px 6%;
    }

    .footer-content-wrapper {
        gap: 30px;
        text-align: center;
    }

    .footer-contact-section p {
        justify-content: center;
        text-align: center;
    }

    /* Reduce icon size a bit so they don’t look like beach balls */
    .social-icons a {
        width: 30px;
        height: 30px;
    }
    .social-icons i {
        font-size: 16px;
    }

    h3 {
        font-size: 1.1rem;
    }

    .footer-links-group a,
    .contact-text,
    .contact-info {
        font-size: 0.9rem;
    }
    .cart-item {
      border-radius: 16px;
      box-shadow: 0px 10px 10px 10px rgba(0, 0, 0, 0.338);
      width: 90%;
      margin-left: 5%;
    }
    .summary-card {
      width: 90%;
      margin-left: 5%;
    }
    .nav-btm-sec {
      display: none;
    }
    .nav-mid{
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
    .blog {
        margin-top: 9vh;
    }
    .blog h2{
        font-size: 3rem;
    }
    .img-heading{
        display: none;
    }
    .blog-grid{
        margin-top: 3vh;
    }
    .container img {
 width: 100%;
}
}