/* =====================
   RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f8f9fb;
  color: #222;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =====================
   HEADER / NAV
===================== */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
}

.logo span {
  color: #ff6b00;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #ff6b00;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.hero-one img{
    width: 100%;
    object-fit: cover;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  height: 85vh;
  background: linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)
  ), url("../images/hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  color: #fff;
  max-width: 650px;
  padding: 20px;
}

.hero h2 {
  font-size: 46px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #e65c00;
}

/* =====================
   FEATURES
===================== */
.features {
  padding: 80px 0;
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-box {
  background: #f8f9fb;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #eee;
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 15px;
  color: #555;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #ccc;
}

.footer a:hover {
  color: #ff6b00;
}

.footer p {
  font-size: 14px;
}

footer .copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #777;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
              url("../images/hero-product.png") center/cover no-repeat;
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

/* PRODUCTS */
.products-section {
  padding: 70px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: .3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

.product-card h3 {
  margin: 15px 0 6px;
}

.product-card p {
  font-size: 14px;
  color: #666;
}

.product-card span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin: 12px 0;
  color: #ff6b35;
}

.product-card button {
  background: #ff6b35;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  transition: .3s;
}

.product-card button:hover {
  background: #ff8c5a;
}
/* CONTACT */
.contact-hero {
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
              url("../images/hero-con.png") center/cover no-repeat;
}

.contact-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 10px;
  color: #555;
}

.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 6px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  background: #ff6b35;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button:hover {
  background: #ff8c5a;
}

.error {
  color: red;
  font-size: 13px;
  height: 15px;
  display: block;
}

.success {
  color: green;
  text-align: center;
  margin-top: 12px;
}
/* ABOUT PAGE */
.about-hero {
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
              url("../images/about.png") center/cover no-repeat;
}

.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
  color: #555;
}

.about-points {
  list-style: none;
  padding: 0;
}

.about-points li {
  margin-bottom: 10px;
  font-weight: 500;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* STATS */
.about-stats {
  background: #f7f7f7;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box h3 {
  font-size: 32px;
  color: #ff6b35;
}

.stat-box p {
  margin-top: 5px;
  color: #555;
}

/* CTA */
.about-cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #fff;
}

.about-cta a {
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  color: #ff6b35;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
}
.cart-page {
  padding: 60px 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.cart-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-item input {
  width: 60px;
  margin: 10px 0;
}

.cart-item button {
  background: #ff5252;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
}

.cart-summary {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.cart-summary button {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  border-radius: 30px;
  border: none;
  background: #0a2540;
  color: #fff;
  font-size: 16px;
}
.footer {
  background: #0a2540;
  color: #fff;
  padding: 60px 8% 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-box h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.footer-box h2 span {
  color: #eb9c15;
}

.footer-box h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #eb9c15;
  padding-left: 5px;
}

/* Newsletter */
.footer-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
}

.footer-form button {
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  background: #eb9c15;
  color: #0a2540;
  cursor: pointer;
  font-weight: bold;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-form {
    flex-direction: column;
  }
}
.kitchen-categories {
  padding: 60px 6%;
  background: #fff;
  text-align: center;
}

/* ICON MENU */
.category-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 13px;
  color: #333;
}

.icon-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  opacity: 0.8;
}

/* TITLE */
.section-title {
  font-size: 36px;
  font-family: serif;
  margin-bottom: 50px;
  color: #222;
}

/* GRID */
.kitchen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* CARD */
.kitchen-card {
  border: 3px solid #e5c9a5;
  border-radius: 28px;
  padding: 25px;
  transition: 0.3s ease;
}

.kitchen-card h3 {
  font-family: serif;
  font-size: 28px;
  margin-bottom: 15px;
  color: #9c6a3c;
}

.kitchen-card img {
  width: 100%;
  border-radius: 18px;
}

/* HOVER */
.kitchen-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.category-section {
  padding: 40px 5%;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Card */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.category-card h3 {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 22px;
  color: #6b4b3a;
  background: rgba(255, 255, 255, 0.75);
  padding: 6px 12px;
  border-radius: 4px;
}

/* Hover effect */
.category-card:hover img {
  transform: scale(1.08);
}

/* 📱 Responsive */
@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}
/* RESPONSIVE */
@media (max-width: 1024px) {
  .kitchen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 28px;
  }

  .kitchen-grid {
    grid-template-columns: 1fr;
  }

  .kitchen-card h3 {
    font-size: 24px;
  }

  .category-icons {
    gap: 18px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 30px;
  }
}


/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 70px;
    right: -100%;
    background: #fff;
    flex-direction: column;
    width: 240px;
    height: calc(100vh - 70px);
    padding: 30px;
    transition: 0.3s;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

  nav.active {
    right: 0;
  }

  .menu-btn {
    display: block;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }
}
