* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
  line-height: 1.6;

  /* Disable text selection for the whole page */

    user-select: none;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}



html {
  scroll-behavior: smooth;
}

a.product-card {
  display: block;
  /* Add any display, margin, padding, border, background, cursor styles like your div */
  text-decoration: none; /* Remove underline */
  color: inherit; /* Keep text color */
}



/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #23272d;
  color: #fff;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo {
  width: 120px;
  height: 45px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 0.2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #ff9800;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(36,41,47,0.8), rgba(36,41,47,0.8)),
    url('./assets/generated-image.png') center/cover;
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
  min-height: 500px;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #ffcc66;
}

.hero-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn {
  background: #ff9800;
  color: #fff;
  padding: 0.7rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #e27e00;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 3rem 1rem;
  background: #fff;
}

.products h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #23272d;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card h3 {
  font-size: 1.02rem;
  font-weight: 650;
  margin-bottom: 0.5rem;
  white-space: normal; /* Allows wrapping but better for long names */
  word-break: keep-all; /* Prevents mid-word break */
}


.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-img {
  height: 100px;
  background: #e1e1e1;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-img img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}


.price {
  display: inline-block;
  margin-top: 0.8rem;
  background: #ececec;
  padding: 0.4rem 1.2rem;
  color: #ff9800;
  font-weight: bold;
  border-radius: 20px;
}

/* ===== CATEGORIES ===== */
.categories {
  background: #f8f8f8;
  padding: 3rem 1rem;
}

.categories h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.category-card {
  background: #fff;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, color 0.2s ease;
}

.category-card a {
  text-decoration: none;
  color: #1b1e23;
}

.category-card a:hover {
  color: #ff9800;
}

.category-card:hover {
  transform: translateY(-5px);
  
}

/* ===== SPECIAL OFFER ===== */
.special {
  background: #fffbea;
  padding: 3rem 1rem;
}

.special-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.special-img {
  width: 150px;
  height: 150px;
  background: #e1e1e1;
  border-radius: 10px;
}

.special-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 9px;
  background: #fff;
  display: block;
}

.special-content .btn {
  margin-top: 2.5rem;
  display: inline-block;
}



/* ===== ABOUT ===== */
.about {
  padding: 3rem 1rem;
  background: #fff;
  text-align: center;
}

.about h2 {
  color: #ff9800;
  margin-bottom: 1rem;
}

/* ===== TESTIMONIALS ===== */

.testimonial-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 2rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-top: 1rem;
  
}


.testimonial-grid {
  display: flex;
  gap: 2rem;
  animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  min-width: 325px;
  max-width: 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  box-shadow: 0 1px 6px rgba(255,152,0,0.2);
}

.testimonial-rating {
  color: #ff9800;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}




/* ===== FOOTER ===== */
footer {
  background: #23272d;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

footer {
  background: #23272d;
  color: #fff;
  margin-top: 2rem;
  font-size: 1rem;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
  gap: 2rem;
}
.footer-section {
  flex: 1 1 220px;
  min-width: 180px;
}
.footer-section h3, .footer-section h4 {
  color: #ff9800;
  margin-bottom: 0.9rem;
}
.footer-section p, .footer-section ul {
  color: #eee;
  margin-bottom: 0.4rem;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 0.4rem;
}
.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-section ul li a:hover {
  color: #ff9800;
  text-decoration: underline;
}
.footer-logo img {
  max-width: 150px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 152, 0, 0.4);
}

.footer-bottom {
  background: #1b1e23;
  padding: 1rem 0;
  text-align: center;
  color: #aaa;
  font-size: 0.96rem;
}



@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    gap: 0.7rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .special-content {
    flex-direction: column;
  }
}



/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
  margin: 3rem auto 2rem auto;
  max-width: 700px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(64,64,64,0.10);
  padding: 2.5rem;
}

.product-detail-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
}

.detail-img {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  object-fit: contain;
  background: #f1f1f1;
  border: 1px solid #ececec;
}

.detail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

.detail-info h2 {
  font-size: 1.6rem;
  color: #23272d;
}

.detail-info p {
  font-size: 1rem;
  color: #444;
}

.price {
  color: #ff9800;
  font-size: 1.25rem;
  font-weight: 700;
}

.btn {
  background: #ff9800;
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e27e00;
}

.product-detail-container {
  display: flex;
  gap: 20px;
  /* fallback for desktop */
}

/* Responsive layout for smaller viewports */
@media (max-width: 768px) {
  .product-detail-container {
    flex-direction: column;
    padding: 10px;
  }

  .detail-img {
    width: 100%;
    height: auto;
    max-width: 400px; /* adjust as needed */
    margin: 0 auto;
  }

  .detail-info {
    width: 100%;
  }

  #orderForm form input,
  #orderForm form textarea,
  .btn {
    width: 100%; /* inputs and buttons full width */
    box-sizing: border-box;
    font-size: 16px;
    padding: 12px;
    margin-top: 8px;
  }
}




/* Order Form + Thank You */
.order-form, .thankyou-msg {
  margin: 2.5rem auto 0 auto;
  max-width: 400px;
  background: #fff8ea;
  padding: 2rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(64,64,64,0.04);
  text-align: center;
}

.order-form h3, .thankyou-msg h3 {
  margin-bottom: 1rem;
}

.order-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-form input, .order-form textarea {
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #d2b881;
  font-size: 1rem;
  width: 100%;
}

.order-form textarea {
  min-height: 70px;
  resize: vertical;
}

.thankyou-msg {
  font-size: 1.1rem;
  color: #168039;
}

.hidden {
  display: none !important;
}





