/* GLOBAL */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f1f5f9;
}

.navbar {
  background: white;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar h2 {
  font-size: 28px;
  font-weight: bold;
  color: #7f08c9 !important;
  text-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}
.navbar a {
  color: #1e293b;
  margin-left: 20px;
  text-decoration: none;
}

.navbar a:hover {
  color: #38bdf8;
}
/* HERO */
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: url('https://images.unsplash.com/photo-1555617981-dac3880eac6e');
  background-size: cover;
  background-position: center;

  text-align: center;
}
.hero h1 {
  font-size: 52px;
  color: #1e293b;   /* dark blue */
}

.hero p {
  color: #475569;
  font-size: 18px;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 25px;
}
.btn {
  background:#7f08c9 !important;   /* force grey */
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.btn:hover {
  background:#7f08c9 !important;   /* darker grey */
  transform: translateY(-3px);
}/* spacing */
.hero-buttons a {
  margin: 10px;
}

.feature-box {
  background: white;
  padding: 30px;
  width: 260px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-box h3 {
  margin-bottom: 10px;
}/* PRODUCTS GRID */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
  padding: 60px;
}

/* CARD */
.product-card {
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* TEXT */
.product-card h3 {
  margin: 12px 0 5px;
}

.price {
  color:#7f08c9;
  font-weight: bold;
}

/* BUTTON */
.product-card button {
  padding: 10px;
  background:#7f08c9;
  color: white;
  border: none;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

.product-card button:hover {
  background: #7f08c9;
}

/* CART BADGE */
#cart-count {
  background: red;
  color: white;
  padding: 3px 8px;
  border-radius: 50%;
  font-size: 12px;
  margin-left: 5px;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .hero h1 {
    font-size: 32px;
  }

  .products {
    padding: 20px;
  }
}/* GLOBAL */
body {
  background: #f8fafc;
  font-family: 'Segoe UI', sans-serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar h2 {
  margin: 0;
  font-weight: 700;
}

.navbar a {
  text-decoration: none;
  color: #333;
  margin-left: 20px;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover {
  color:#7f08c9;
}

/* HERO */
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  /* 🔥 3D printer background */
  background: 
    linear-gradient(rgba(253, 250, 250, 0.75), rgba(255, 255, 255, 0.75)),
    url('images/3d-printing-action-building-geometric-structure.jpg');

  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 60px;      /* bada size */
  color: black;         /* black color */
  font-weight: bold;    /* bold */
}

.hero p {
  color: black;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 5px;
  background:#7f08c9;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  background:#7f08c9;
}

.secondary {
  background: #444;
}

.secondary:hover {
  background: #222;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.feature-box {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 25px;
  width: 250px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-10px);
}

/* PRODUCTS GRID */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
  padding: 60px;
}

/* CARD */
.product-card {
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* TEXT */
.product-card h3 {
  margin: 12px 0 5px;
}

.price {
  color:#7f08c9;
  font-weight: bold;
}

/* BUTTON */
.product-card button {
  padding: 10px;
  background:#7f08c9;
  color: white;
  border: none;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

.product-card button:hover {
  background: #7f08c9;
}

/* CART BADGE */
#cart-count {
  background: red;
  color: white;
  padding: 3px 8px;
  border-radius: 50%;
  font-size: 12px;
  margin-left: 5px;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .hero h1 {
    font-size: 32px;
  }

  .products {
    padding: 20px;
  }
}

/* ===== PRODUCT PAGE DESIGN FIX ===== */
/* ===== FIX SIDE BY SIDE LAYOUT ===== */

/* FORCE SIDE BY SIDE FIX */

.product-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: space-between;
  flex-wrap: nowrap !important;
  gap: 40px;
  padding: 60px;
}

.gallery {
  flex: 1;
  min-width: 45%;
}

.details {
  flex: 1;
  min-width: 45%;
}

/* IMAGE */
.main-img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 15px;
  background: #f1f5f9;
  padding: 10px;
}


/* TITLE */
.details h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #111827;
}

/* PRICE */
.price {
  font-size: 22px;
  color: #7f08c9;
  font-weight: bold;
  margin-bottom: 15px;
}

/* DESCRIPTION */
#desc {
  color: #374151;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* EXTRA INFO */
.details p {
  margin: 8px 0;
}

/* COLORS */
.colors span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
  border: 1px solid #ccc;
}

/* BUTTON */
.details button {
  margin-top: 20px;
  padding: 12px 25px;
  background: #374151;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.details button:hover {
  background: #111827;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
.whatsapp-btn {
  margin-top: 10px;
  padding: 12px 25px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  width: auto;           /* 🔥 fix */
  display: inline-block; /* 🔥 fix */
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.custom-container {
  width: 400px;
  margin: 50px auto;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.custom-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.custom-container label {
  display: block;
  margin-top: 15px;
  font-weight: 500;
}

.custom-container input,
.custom-container textarea,
.custom-container select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.custom-container textarea {
  height: 80px;
}

.custom-container button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #374151;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.custom-container button:hover {
  background: #111827;
}
/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 40px 50px;
  max-width: 800px;
}

.reviews-section h2 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.avg-rating {
  font-size: 20px;
  font-weight: bold;
  color: #f5a623;
  margin-bottom: 20px;
}

.review-form h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #374151;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin: 6px 0 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border 0.2s;
  box-sizing: border-box;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: #374151;
}

.review-form textarea {
  height: 85px;
  resize: none;
}

.stars-input {
  margin: 4px 0 12px;
}

.stars-input span {
  font-size: 28px;
  cursor: pointer;
  color: #ddd;
  transition: color 0.15s;
  margin-right: 2px;
}

.stars-input span:hover,
.stars-input span.active {
  color: #f5a623;
}

.submit-review-btn {
  background: #374151;
  color: white;
  padding: 10px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}

.submit-review-btn:hover {
  background: #111827;
}

.review-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 14px;
  transition: box-shadow 0.2s;
}

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

.review-card strong {
  font-size: 15px;
  color: #1a1a1a;
}

.review-stars {
  color: #f5a623;
  font-size: 16px;
  margin: 4px 0 6px;
}

.review-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}
.cart-img {
  width: 100%;
  max-width: 150px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}
/* ===== CART PAGE ===== */
.cart-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

.cart-item {
  background: white;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.cart-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  background: #f5f5f5;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h3 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #1a1a1a;
}

.cart-item-info p {
  margin: 0 0 10px;
  color: #7f08c9;
  font-weight: bold;
  font-size: 15px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.qty-controls button {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: none;
  background: #f1f5f9;
  font-size: 18px;
  cursor: pointer;
  font-weight: bold;
  color: #374151;
}

.qty-controls button:hover {
  background: #e2e8f0;
}

.qty-controls span {
  font-size: 16px;
  font-weight: bold;
  min-width: 20px;
  text-align: center;
}

.remove-btn {
  background: #fee2e2;
  color: #dc2626;
  border: none;
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.remove-btn:hover {
  background: #fecaca;
}

.cart-btn {
  background: #25D366;
  color: white;
  padding: 14px 35px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.cart-btn:hover {
  background: #1ebe5d;
}

.empty-cart {
  text-align: center;
  color: #aaa;
  font-size: 18px;
  margin-top: 60px;
}
.about-section {
  padding: 80px 60px;
  background: #f9fafb;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
}
.footer {
  background: #111827;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.footer-links {
  margin: 15px 0;
}

.footer-links a {
  color: #9ca3af;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  font-size: 13px;
  color: #6b7280;
}


/* ===== LIVE FIXES: UTF-8 + MOBILE RESPONSIVE POLISH ===== */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }

.navbar {
  gap: 16px;
  flex-wrap: wrap;
}
.logo-text, .logo-brand, .brand, .nav-logo {
  min-width: 0;
}
.navbar h2 {
  line-height: 1.15;
}
.navbar a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.hero {
  min-height: 80vh;
  height: auto;
  padding: 90px 20px;
}
.hero h1 {
  max-width: 920px;
  line-height: 1.08;
}
.hero p {
  max-width: 720px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-buttons a { margin: 0; }

.products {
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.product-card {
  min-width: 0;
}
.product-card img {
  display: block;
}

.about-container,
.contact-container,
.features-container,
.review-grid,
.footer-links {
  max-width: 100%;
}

input, textarea, select {
  max-width: 100%;
}

@media (max-width: 900px) {
  .navbar {
    padding: 14px 22px !important;
    justify-content: center;
    text-align: center;
  }
  .navbar h2 {
    font-size: 22px !important;
  }
  .navbar a {
    margin: 6px 8px !important;
    font-size: 14px;
  }
  .products {
    padding: 30px 18px !important;
    gap: 20px;
  }
  .about-section,
  .contact-section,
  .reviews-section,
  .features {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 30px !important; }
  h2 { font-size: 24px !important; }
  .hero {
    min-height: 68vh;
    padding: 70px 16px;
  }
  .hero h1 {
    font-size: 34px !important;
  }
  .hero p {
    font-size: 15px !important;
  }
  .btn,
  .product-card button,
  button {
    min-height: 44px;
  }
  .products {
    grid-template-columns: 1fr !important;
    padding: 22px 14px !important;
  }
  .product-card {
    border-radius: 14px;
  }
  .product-card img {
    height: 210px;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }
  .footer-links a {
    margin: 0 !important;
  }
}

@media (max-width: 420px) {
  .navbar {
    padding: 12px 14px !important;
  }
  .navbar h2 {
    font-size: 19px !important;
  }
  .navbar a {
    font-size: 13px;
    margin: 5px 6px !important;
  }
  .hero h1 {
    font-size: 29px !important;
  }
  .hero p {
    font-size: 14px !important;
  }/* ===== FINAL MOBILE HEADER + CART FIX ===== */

.navbar > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.navbar a[href="cart.html"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

#cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  margin-left: 0;
  border-radius: 999px;
  line-height: 1;
  flex-shrink: 0;
}

/* Better mobile layout */
@media (max-width: 600px) {
  .logo-text {
    width: 100%;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .logo {
    width: 36px;
    height: 36px;
  }

  .navbar > div {
    width: 100%;
    justify-content: center;
    gap: 8px 14px;
  }

  .navbar a {
    margin: 0 !important;
  }

  .navbar a[href="cart.html"] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 120px;
  }

  .hero-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-buttons .btn {
    min-width: 150px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 24px;
    right: 14px;
    bottom: 14px;
  }
} /* ===== FINAL MOBILE PRODUCT DETAIL ALIGNMENT FIX ===== */

@media (max-width: 768px) {
  .product-container {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 22px !important;
    padding: 22px 16px !important;
  }

  .gallery,
  .details {
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
  }

  .main-img {
    width: 100% !important;
    max-height: 360px !important;
    object-fit: contain !important;
    padding: 8px !important;
  }

  .details {
    text-align: left !important;
  }

  .details h1 {
    font-size: 26px !important;
    line-height: 1.2 !important;
    margin-top: 0 !important;
  }

  .details p,
  #desc {
    font-size: 15px !important;
    line-height: 1.65 !important;
    text-align: left !important;
  }

  .details button,
  .whatsapp-btn {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
  }
}

@media (max-width: 420px) {
  .navbar {
    padding: 12px 14px !important;
  }

  .navbar h2 {
    font-size: 19px !important;
  }

  .navbar a {
    font-size: 13px;
    margin: 5px 6px !important;
  }

  .hero h1 {
    font-size: 29px !important;
  }

  .hero p {
    font-size: 14px !important;
  }
}

/* ===== FINAL MOBILE HEADER + CART FIX ===== */

.navbar > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.navbar a[href="cart.html"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

#cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  margin-left: 0;
  border-radius: 999px;
  line-height: 1;
  flex-shrink: 0;
}

/* Better mobile layout */
@media (max-width: 600px) {
  .logo-text {
    width: 100%;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .logo {
    width: 36px;
    height: 36px;
  }

  .navbar > div {
    width: 100%;
    justify-content: center;
    gap: 8px 14px;
  }

  .navbar a {
    margin: 0 !important;
  }

  .navbar a[href="cart.html"] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 120px;
  }

  .hero-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-buttons .btn {
    min-width: 150px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 24px;
    right: 14px;
    bottom: 14px;
  }
}

/* ===== LIVE FIXES: UTF-8 + MOBILE RESPONSIVE POLISH ===== */

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

.navbar {
  gap: 16px;
  flex-wrap: wrap;
}

.logo-text,
.logo-brand,
.brand,
.nav-logo {
  min-width: 0;
}

.navbar h2 {
  line-height: 1.15;
}

.navbar > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.navbar a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.navbar a[href="cart.html"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

#cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  margin-left: 0;
  border-radius: 999px;
  line-height: 1;
  flex-shrink: 0;
}

.hero {
  min-height: 80vh;
  height: auto;
  padding: 90px 20px;
}

.hero h1 {
  max-width: 920px;
  line-height: 1.08;
}

.hero p {
  max-width: 720px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-buttons a {
  margin: 0;
}

.products {
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
  min-width: 0;
}

.product-card img {
  display: block;
}

.about-container,
.contact-container,
.features-container,
.review-grid,
.footer-links {
  max-width: 100%;
}

input,
textarea,
select {
  max-width: 100%;
}

/* Tablet */
@media (max-width: 900px) {
  .navbar {
    padding: 14px 22px !important;
    justify-content: center;
    text-align: center;
  }

  .navbar h2 {
    font-size: 22px !important;
  }

  .navbar a {
    margin: 6px 8px !important;
    font-size: 14px;
  }

  .products {
    padding: 30px 18px !important;
    gap: 20px;
  }

  .about-section,
  .contact-section,
  .reviews-section,
  .features {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .product-container {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 22px !important;
    padding: 22px 16px !important;
  }

  .gallery,
  .details {
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
  }

  .main-img {
    width: 100% !important;
    max-height: 360px !important;
    object-fit: contain !important;
    padding: 8px !important;
  }

  .details {
    text-align: left !important;
  }

  .details h1 {
    font-size: 26px !important;
    line-height: 1.2 !important;
    margin-top: 0 !important;
  }

  .details p,
  #desc {
    font-size: 15px !important;
    line-height: 1.65 !important;
    text-align: left !important;
  }

  .details button,
  .whatsapp-btn {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
  }
}

/* Small mobile */
@media (max-width: 600px) {
  h1 {
    font-size: 30px !important;
  }

  h2 {
    font-size: 24px !important;
  }

  .logo-text {
    width: 100%;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .logo {
    width: 36px;
    height: 36px;
  }

  .navbar > div {
    width: 100%;
    justify-content: center;
    gap: 8px 14px;
  }

  .navbar a {
    margin: 0 !important;
  }

  .hero {
    min-height: 68vh;
    padding: 60px 16px 120px;
  }

  .hero h1 {
    font-size: 34px !important;
  }

  .hero p {
    font-size: 15px !important;
  }

  .btn,
  .product-card button,
  button {
    min-height: 44px;
  }

  .hero-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-buttons .btn {
    min-width: 150px;
  }

  .products {
    grid-template-columns: 1fr !important;
    padding: 22px 14px !important;
  }

  .product-card {
    border-radius: 14px;
  }

  .product-card img {
    height: 210px;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }

  .footer-links a {
    margin: 0 !important;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 24px;
    right: 14px;
    bottom: 14px;
  }
}

/* Extra small mobile */
@media (max-width: 420px) {
  .navbar {
    padding: 12px 14px !important;
  }

  .navbar h2 {
    font-size: 19px !important;
  }

  .navbar a {
    font-size: 13px;
    margin: 5px 6px !important;
  }

  .hero h1 {
    font-size: 29px !important;
  }

  .hero p {
    font-size: 14px !important;
  }

  .product-container {
    padding: 18px 14px !important;
  }

  .details h1 {
    font-size: 23px !important;
  }

  .main-img {
    max-height: 300px !important;
  }
}CSS
  }
}
}
}
