:root{
  --accent: #ea5c0c;
  --accent-2: #f26b2e;
  --muted: #faf7f6;
  --card-border: #e6f2ea; /* subtle green-ish seen in product cards */
  --text: #111;
  --muted-text: #6b6b6b;
  --container: 1200px;
  --radius: 12px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color:var(--text);
  background:#fff;
    padding: 20px;
  -webkit-font-smoothing:antialiased;
}

/* container */
.container{ max-width:var(--container); margin:0 auto; padding:0 20px; }

/* TOP NAV */
.top-nav{ border-bottom:1px solid #eee; background:#fff; }
.brand-row{ display:flex; align-items:center; justify-content:space-between; padding:18px 0; gap:16px; }
.brand-left{ display:flex; align-items:center; gap:16px; flex:1; }
.logo{ width:130px; height:auto; display:block; }

.location .loc-btn{
  border:1px solid #efcfc2; padding:8px 12px; border-radius:10px; background:#fff; font-weight:600;
  cursor:pointer;
}

.search{
  display:flex; align-items:center; gap:8px; margin-left:8px;
  flex:1; max-width:520px; border:1px solid #efcfc2; padding:8px; border-radius:12px;
}
.search input{ border:0; outline:0; font-size:15px; padding:8px; flex:1; }
.search-btn{ background:var(--accent); color:#fff; border:0; padding:8px 12px; border-radius:8px; cursor:pointer; }

.brand-right{ display:flex; align-items:center; gap:12px; }
.link{ text-decoration:none; color:var(--text); font-weight:600; }
.cta{ background:var(--accent); color:#fff; border:0; padding:10px 16px; border-radius:12px; font-weight:700; box-shadow:0 8px 20px rgba(234,92,12,0.12); cursor:pointer; }
.user{ width:40px; height:40px; border-radius:50%; background:var(--accent); color:#fff; border:0; cursor:pointer; }

/* CATEGORY BAR */
.category-bar{ background: #f3eae8; border-bottom:1px solid #e6e1e1; }
.cat-inner{ display:flex; align-items:center; justify-content:space-between; padding:10px 0; gap:12px; }
.cat-left{ display:flex; align-items:center; gap:8px; font-weight:700; color:var(--accent); }
.cat-links{ display:flex; gap:20px; }
.cat-links a{ text-decoration:none; color:var(--text); font-weight:600; }
.fav{ font-size:18px; display:flex; align-items:center; gap:6px; }

/* HERO */
.hero{ padding:36px 0 18px 0; }
.hero-inner{ display:flex; align-items:center; gap:30px; position:relative; }
.hero-copy{ flex:1; max-width:55%; z-index:2; }
.hero-copy h1{ font-size:56px; line-height:0.95; margin:0; font-weight:800; letter-spacing:-1px; }
.lead{ color:var(--muted-text); margin-top:16px; font-size:16px; max-width:640px; }
.btn-cta{ display:inline-block; margin-top:18px; background:var(--accent); color:#fff; padding:12px 18px; border-radius:10px; text-decoration:none; font-weight:700; }

.hero-image{ flex:0 0 420px; display:block; position:relative; }
.hero-image img{ width:420px; height:auto; display:block; border-radius:18px; object-fit:cover; }

/* SECTIONS */
.section{ padding:28px 0; }
.section h2, .section h3{ margin:0 0 14px 0; }

/* CARDS GRID */
.cards-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.card{ background:#fff; border-radius:12px; overflow:hidden; border:1px solid var(--card-border); box-shadow:0 6px 14px rgba(22,22,22,0.03); display:flex; flex-direction:column; }
.card-media{ height:160px; background-size:cover; background-position:center; }
.card-body{ padding:12px; display:flex; flex-direction:column; gap:8px; }
.card-title{ font-size:15px; margin:0; font-weight:600; }
.price{ color:#111; font-weight:700; }
.meta{ color:var(--muted-text); font-size:13px; }

/* CHIPS */
.chips{ display:flex; gap:10px; flex-wrap:wrap; }
.chip{ padding:8px 12px; background:#fff; border:1px solid #eee; border-radius:999px; font-weight:600; }

/* FEATURED / PROMO */
.feature-cards{ display:flex; gap:18px; align-items:stretch; }
.feature.large{ flex:1; display:flex; gap:12px; background:linear-gradient(90deg,#fff,#fff); border-radius:12px; padding:10px; align-items:center; }
.feature .feature-img{ width:40%; height:140px; background-size:cover; background-position:center; border-radius:8px; }
.feature-grid{ width:420px; display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.fcard{ height:90px; background-size:cover; background-position:center; border-radius:10px; display:flex; align-items:flex-end; padding:8px; color:#fff; font-weight:700; }

/* PROMO */
.promo{ background:#fff; padding:28px 0; }
.promo-inner{ display:flex; gap:20px; align-items:center; background:linear-gradient(90deg,#fff,#fff); border-radius:14px; padding:18px; }
.promo-left{ flex:1; }
.promo-right img{ width:320px; border-radius:18px; }

/* CAROUSEL / HOT DEALS simple style */
.carousel{ display:flex; gap:12px; overflow:hidden; padding:8px 0; }
.deal-card{ width:180px; background:#fff; border-radius:10px; padding:8px; text-align:center; box-shadow:0 6px 14px rgba(0,0,0,0.04); }
.deal-card img{ width:100%; height:110px; object-fit:cover; border-radius:8px; }

/* ABOUT / WHY */
.two-col{ display:flex; gap:20px; align-items:center; }
.about-inner img{ width:100%; border-radius:12px; }
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:12px; }
.why-card{ background:#fff; padding:18px; border-radius:10px; border:1px solid #f1f1f1; }

/* POLL */
.poll-card{ background:#fff; padding:18px; border-radius:12px; border:1px solid #f1f1f1; }

/* NEWSLETTER */
.newsletter-inner{ display:flex; justify-content:center; padding:36px 0; }
.newsletter-box{ background:var(--accent); color:#fff; border-radius:14px; padding:24px; width:100%; display:flex; gap:20px; align-items:center; justify-content:space-between; }
.newsletter-box input{ padding:12px; border-radius:8px; border:0; min-width:300px; }

/* FOOTER */
.site-footer{ background:#faf9f8; padding:28px 0; border-top:1px solid #eee; }
.footer-inner{ display:flex; gap:30px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap; }
.footer-col{ min-width:180px; }

/* small utilities */
.btn-outline{ display:inline-block; padding:10px 14px; background:#fff; border-radius:10px; color:var(--accent); border:2px solid rgba(255,255,255,0.12); text-decoration:none; font-weight:700; }

/* responsive */
@media (max-width: 1100px){
  .hero-copy h1{ font-size:44px; }
  .cards-grid{ grid-template-columns: repeat(3,1fr); }
  .feature-grid{ width:320px; }
}
@media (max-width: 820px){
  .brand-left{ flex-direction:column; align-items:flex-start; gap:12px; }
  .hero-inner{ flex-direction:column-reverse; align-items:center; text-align:center; }
  .hero-copy{ max-width:100% }
  .hero-image{ flex: 0 0 auto; }
  .cards-grid{ grid-template-columns: repeat(2,1fr); }
  .promo-right img{ width:220px; }
  .feature-cards{ flex-direction:column; }
  .two-col{ flex-direction:column; }
  .newsletter-box{ flex-direction:column; gap:12px; align-items:center; text-align:center; }
}
@media (max-width: 480px){
  .logo{ width:110px; }
  .search{ max-width:100%; }
  .cards-grid{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:1fr; }
  .hero-copy h1{ font-size:32px; }
}

/* Banner*/

.banner2 {
    width: 100%;
    overflow: hidden;
}

.banner2 img {
    width: 100%;
    height: auto;        /* keeps image proportions */
    display: block;      /* removes unwanted spacing */
    object-fit: cover;   /* ensures the image fills container nicely */
}

/*  Recommended for you   */

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* CARD */
.card {
    position: relative;
    background: #fff;
    border: 2px solid #41c676; /* green border from UI */
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 22px;
    color: #777;
    cursor: pointer;
}

.product-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

/* PRICE */
.price {
    color: #ea5c0c;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 4px;
}

/* TITLE */
.title {
    font-size: 18px;
    font-weight: 700;
    margin: 4px 0;
}

/* DESCRIPTION */
.desc {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 10px;
    height: 55px; /* match UI height spacing */
    overflow: hidden;
}

/* RATING */
.rating {
    font-size: 18px;
    color: #f89500;
    margin-bottom: 10px;
}

/* META (location + condition) */
.meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.loc {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #444;
}

.condition {
    font-weight: 600;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}


/*   Recent researches*/

.recent-searches {
    text-align: center;
    padding: 20px 0;
}

.title {
    font-size: 28px;
    font-weight: 800;
    color: #ea5c0c;
    margin-bottom: 25px;
}

/* GRID */
.search-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

/* ITEM */
.item {
    text-align: center;
}

/* THUMBNAIL BOX */
.thumb {
    width: 130px;
    height: 130px;
    border-radius: 10px;
    border: 3px solid #ea5c0c;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.label {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .thumb {
        width: 110px;
        height: 110px;
    }
}


/* reaction emoji */


.reaction-box {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    gap: 6px;
}

.emoji {
    font-size: 18px;   /* match your UI size */
    line-height: 1;
}

.count {
    font-size: 12px;
    font-weight: 600;
    color: #000;
}


/* Featured Ads */


.featured-wrapper {
  width: 100%;
}

.featured-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.featured-card {
  background: linear-gradient(135deg, #ff5a00, #c44500);
  border-radius: 16px;
  display: flex;
  padding: 14px;
  width: 100%;
  max-width: 620px;
  color: #fff;
  gap: 14px;
}

.img-box {
  position: relative;
  width: 180px;
  height: 150px;
  flex-shrink: 0;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.heart {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255,255,255,0.25);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.price {
  font-weight: bold;
  font-size: 14px;
  color:white;
}

.details h3 {
  font-size: 16px;
  margin-top: 2px;
}

.verified {
  background: #2ecc71;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desc {
  font-size: 13px;
  margin: 8px 0;
  line-height: 1.5;
  opacity: 0.95;
}

.rating {
  font-size: 14px;
  color: gold;
  margin-bottom: 6px;
}

.bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
}

.status {
  font-weight: bold;
}

.likes {
  font-size: 12px;
}

.btn-wrap {
  text-align: center;
  margin-top: 30px;
}

.shop-btn {
  background: #f25c05;
  border: none;
  color: #fff;
  padding: 12px 48px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.shop-btn:hover {
  background: #cf4c04;
}

/* Responsive */
@media (max-width: 768px) {
  .featured-card {
    flex-direction: column;
  }

  .img-box {
    width: 100%;
    height: 200px;
  }
}


/* ===== Promo banner===== */

.hero {
  width: 100%;
  height: 420px;
  display: flex;
  position: relative;
  overflow: hidden;
}

/* ===== LEFT (IMAGE + GREEN BG) ===== */

.hero-left {
  width: 50%;
  background: linear-gradient(90deg, #00a859, #7ac943);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

.hero-left img {
  max-height: 90%;
  object-fit: contain;
}

/* ===== RIGHT CONTENT ===== */

.hero-right {
  width: 50%;
  background: #f4f4f4;
  padding: 80px 90px;
  position: relative;
}

.hero-right h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.hero-right .big {
  display: block;
  font-size: 82px;
  font-weight: 800;
  margin: 10px 0;
}

.hero-right .green {
  color: #00a859;
  display: block;
  font-size: 36px;
  margin-top: 6px;
}

.hero-right p {
  margin-top: 18px;
  font-size: 16px;
  color: #222;
}

.cta-btn {
  margin-top: 26px;
  background: transparent;
  border: 2px solid #00a859;
  color: #00a859;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #00a859;
  color: #fff;
}

/* ===== DOTS DECORATION ===== */

.dots {
  position: absolute;
  bottom: 30px;
  left: 90px;
  display: flex;
  gap: 8px;
}

.dots span {
  width: 6px;
  height: 6px;
  background: #00a859;
  border-radius: 50%;
}

/* ===== GREEN CORNER BLOCKS ===== */

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: #00a859;
}

.hero::before {
  top: 20px;
  right: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.hero::after {
  bottom: 20px;
  right: 20px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    height: auto;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    clip-path: none;
  }

  .hero-right {
    padding: 50px 40px;
  }

  .hero-right .big {
    font-size: 60px;
  }
}

/*   Hot deals carousel  */

.hot-deals-section {
    width: 95%;
    margin: 0 auto;
    padding: 30px 0;
}

.hot-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 900;
}

.hot-title span {
    color: #ff6a00;
}

.deals-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.deals-container::-webkit-scrollbar {
    height: 8px;
}

.deals-container::-webkit-scrollbar-thumb {
    background: #ffa45c;
    border-radius: 4px;
}

.deal-card {
    width: 250px;
    background: #fff;
    border: 2px solid #ffa45c;
    border-radius: 14px;
    padding: 12px;
    position: relative;
    flex-shrink: 0;
}

.deal-card img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: -10px;
    left: 10px;
    background: #ff4500;
    padding: 6px 12px;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
}

.fav-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.info .price {
    color: #ff6a00;
    font-size: 20px;
    font-weight: 900;
    margin: 10px 0 0;
}

.info h3 {
    margin: 3px 0;
    font-size: 17px;
}

.rating {
    color: orange;
    margin: 6px 0;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}

.see-more {
    margin-top: 20px;
    text-align: right;
    font-size: 18px;
    cursor: pointer;
    color: black;
}



/* Footer */

.footer {
    background: #fff;
    width: 100%;
    padding-top: 40px;
    border-top: 1px solid #eee;
    font-family: Arial, sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
    flex-wrap: wrap;
}

.footer-col h3,
.footer-social h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: #444;
    margin: 6px 0;
    font-size: 15px;
}

.footer-col a:hover {
    color: #ff6a00;
}

.footer-social {
    text-align: center;
}

.icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 10px 0 20px 0;
}

.icon {
    font-size: 22px;
    cursor: pointer;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.footer-bottom {
    background: #f5eeee;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #222;
}


/* Newsletter */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    background: #f4f4f4;
    padding: 40px;
}

.newsletter-card {
    max-width: 1100px;
    margin: auto;
    background: #d8631e; /* Orange background */
    border-radius: 30px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: white;
    flex-wrap: wrap;
}

/* TEXT AREA */
.text-content h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtext {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 380px;
}

/* FORM AREA */
.signup-form {
    min-width: 340px;
    flex: 1;
}

.input-row {
    display: flex;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.input-row input {
    flex: 1;
    padding: 15px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.input-row button {
    background: #2e9f5b;
    color: white;
    border: none;
    padding: 0 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
}

.input-row button:hover {
    opacity: 0.9;
}

/* PRIVACY TEXT */
.privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.privacy input {
    margin-top: 4px;
}

.privacy a {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }

    .privacy {
        justify-content: center;
        text-align: left;
    }
}


/* Why choose us */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.why-choose-us {
    text-align: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.why-choose-us h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-choose-us h2 span {
    color: #e85c1a; /* orange highlight */
}

.subtitle {
    color: #444;
    margin-bottom: 50px;
    font-size: 1rem;
}

.features {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature {
    width: 250px;
    text-align: center;
}

.feature img {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}


/* MOBILE RESPONSIVENESS */
@media(max-width: 900px) {
    .features {
        justify-content: center;
    }
}

@media(max-width: 600px) {
    .feature {
        width: 100%;
    }
}
