body{
  margin:0;
  font-family: Arial, sans-serif;
  background:#f3f3f3;
}

/* ===== TOP BAR ===== */
.daily-header{
  background:#0f1111;
  color:white;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.daily-header h2{
  color:#5ac53f;
  margin:0;
}

/* ===== CATEGORY BAR ===== */
.daily-nav{
  background:white;
  padding:12px 20px;
  display:flex;
  gap:20px;
  border-bottom:2px solid #5ac53f;
}

.daily-nav a{
  text-decoration:none;
  color:#333;
  font-weight:500;
}

.daily-nav a:hover{
  color:#5ac53f;
}

/* ===== HERO SLIDER ===== */
.slider-wrapper{
  position:relative;
  overflow:hidden;
  width:100%;
  height:400px;
  margin-top:10px;
}

.slider{
  display:flex;
  width:500%;
  transition:transform 0.8s ease-in-out;
}

.slide{
  width:100%;
  height: 300px;
  flex-shrink:0;
  margin-top: 30px;
}

.slide img{
  width:100%;
  height:300px;
  object-fit:cover;
}

/* ===== DOTS ===== */
.dots{
  position:absolute;
  bottom:15px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}

.dot{
  width:10px;
  height:10px;
  background:white;
  border-radius:50%;
  opacity:0.6;
  cursor:pointer;
}

.dot.active{
  opacity:1;
  background:#5ac53f;
}


/* ================= GROCERY SECTION ================= */

.grocery-section{
  background:#ffffff;
  padding:50px 40px;
}

.grocery-section h2{
  font-size:32px;
  margin-bottom:40px;
}

.grocery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap:25px;
  text-align:center;
}

.grocery-item{
  cursor:pointer;
  transition:0.3s ease;
}

.grocery-item a{
text-decoration: none;

}

.grocery-item:hover{
  transform:translateY(-8px);
}

.circle{
  width:150px;
  height:150px;
  margin:auto;
  background:#e6f4e3;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
}

.grocery-item:hover .circle{
  background:#d1f0c8;
}

.circle img{
  width: 100%;;
  height:100%;
  object-fit:contain;
}

.grocery-item p{
  margin-top:15px;
  font-weight:600;
  color:#333;
}


/* ================= BEAUTY  SECTION ================= */

.Beauty-section{
  background:#ffffff;
  padding:50px 40px;
}

.Beauty-section h2{
  font-size:32px;
  margin-bottom:40px;
}

.Beauty-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap:25px;
  text-align:center;
}

.Beauty-item{
  cursor:pointer;
  transition:0.3s ease;
}

.Beauty-item:hover{
  transform:translateY(-8px);
}

.circle-Beauty{
  width:150px;
  height:150px;
  margin:auto;
  background:#faebf2;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
}

.Beauty-item:hover .circle-Beauty{
  background:#f8d9f0;
}

.circle-Beauty img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.Beauty-item p{
  margin-top:15px;
  font-weight:600;
  color:#333;
}

/* ================= HOUSEHOLD SECTION ================= */

.household-section{
  background:#ffffff;
  padding:60px 40px;
}

.household-section h2{
  font-size:36px;
  margin-bottom:50px;
}

.household-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:30px;
  text-align:center;
}

.household-item{
  cursor:pointer;
  transition:0.3s ease;
}

.household-item:hover{
  transform:translateY(-10px);
}

.house-circle{
  width:220px;
  height:220px;
  margin:auto;
  background:#e3edf3;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s ease;
}

.household-item:hover .house-circle{
  background:#d4e6f2;
}

.house-circle img{
  width:100%;
  height:220px;
  object-fit:contain;
}

.household-item p{
  margin-top:20px;
  font-size:20px;
  font-weight:600;
  color:#333;
}








/* ================= DAILY SECTION ================= */

.everyday-section {
  background: #c0f1a3;
  padding: 40px 60px;
}

.daily-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Category Box */
.daily-category-box {
  background: #ffffff ;
  padding: 25px;
  border-radius: 10px;
  gap: 20px;
  margin-top: 15px;
}

/* Header */
.category-header {
  display: flex;
  justify-content: space-between
}

.category-header h2 {
  font-size: 22px;
  margin: 0%;
}

.see-all {
  color: #007185;
  font-size: 14px;
  text-decoration: none;
}

/* Slider */
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0px;
  height: 270px;
}

.product-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

/* Product Card */
.daily-product {
  min-width: 180px;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  position: relative;
  transition: 0.3s;
  gap: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.daily-product:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.daily-product img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

/* Discount Badge */
.discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #cc0c39;
  color: white;
  font-size: 12px;
  padding: 4px 6px;
  border-radius: 3px;
}

/* Add Button */
.add-btn {
  background: #ffd814;
  border: none;
  padding: 6px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  margin: 10px 0;
}

.add-btn:hover {
  background: #f7ca00;
}

/* Text */
.product-name {
  font-size: 14px;
}

.price {
  font-weight: 600;
  margin-top: 5px;
}

.price span {
  text-decoration: line-through;
  font-weight: normal;
  color: #888;
  margin-left: 5px;
}

/* Arrows */
.arrow {
  background: #fff;
  border: 1px solid #ccc;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.arrow.left {
  margin-right: 10px;
}

.arrow.right {
  margin-left: 10px;
}







#dailyTop{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s ease;
}

/* When hidden */
.hide-header{
  transform: translateY(-100%);
}

/* Push content below header */
body{
  margin:0;
}

.page-content{
  margin-top:120px; /* adjust based on header height */
}


/* MAIN HEADER */
.main-header{
  height:70px;
  background:#0f1111;
  color:white;
  display:flex;
  align-items:center;
  padding:0 20px;
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  transition:transform 0.4s ease;
}

/* When hidden */
.hide-main{
  transform: translateY(-100%);
}

/* FRESH HEADER */
.fresh-header{
  background:white;
  border-bottom:3px solid #5ac53f;
  position:fixed;
  top:70px; /* sits below main header */
  width:100%;
  z-index:999;
  transition:top 0.4s ease;
}

.fresh-title{
  font-size:28px;
  color:#5ac53f;
  padding:10px 20px;
}

.fresh-nav{
  display:flex;
  gap:20px;
  padding:10px 20px;
}

.fresh-nav a{
  text-decoration:none;
  color:#333;
}

/* When main header hidden */
.fresh-move-up{
  top:0;
}

/* PAGE CONTENT */
.page-content{
  margin-top:150px; /* total header height */
}



/* fresh vegatable*/
/* ================= FRESH SECTION ================= */

.fresh-category {
  padding: 40px 60px;
  background: #f3f3f3;
}

/* Header */
.fresh-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fresh-category-header h2 {
  font-size: 28px;
  font-weight: 600;
}

.next-btn {
  background: #5ac53f;
  border: none;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
}

/* Sub Navigation */
.sub-nav {
  display: flex;
  gap: 25px;
  margin: 20px 0;
  font-size: 14px;
}

.sub-nav a {
  cursor: pointer;
  color: #333;
  text-decoration: none;
}

.sub-nav .active {
  color: #5ac53f;
  font-weight: bold;
  border-bottom: 2px solid #5ac53f;
  padding-bottom: 3px;
}

/* Section Title */
.section-title {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 15px;
  font-size: 20px;
}

.see-all {
  font-size: 14px;
  color: #007185;
  cursor: pointer;
}

/* Product Row */
.product-row {
  display: flex;
  gap: 30px;
  overflow-x: auto;
}

/* Product Card */
.fresh-product {
  background: white;
  padding: 15px;
  width: 180px;
  position: relative;
  border-radius: 6px;
  transition: 0.3s;
}

.fresh-product:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Discount Badge */
.discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #cc0c39;
  color: white;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 3px;
}

/* Product Image */
.fresh-product img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

/* Add Button */
.add-btn {
  background: #ffd814;
  border: none;
  padding: 6px 18px;
  border-radius: 20px;
  cursor: pointer;
  margin: 10px 0;
  font-weight: bold;
}

.add-btn:hover {
  background: #f7ca00;
}

/* Text */
.product-name {
  font-size: 14px;
  margin: 5px 0;
}

.weight {
  font-size: 12px;
  color: #555;
}

.price {
  font-weight: bold;
  margin-top: 5px;
}

.price span {
  text-decoration: line-through;
  font-weight: normal;
  color: #888;
  margin-left: 5px;
}

