* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif !important;
}

.section-heading {
  text-align: center;
  margin: 40px 0;
  font-size: 1.75rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.hero-container {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url('/images/img-main.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 67vh;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: white;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.hero-content {
  max-width: 700px;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f8b400; /* yellow-orange */
  margin-bottom: 1rem;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000; /* thin black outline */
}


.hero-content .phone {
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  color: #d4f0ff;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000; /* thin black outline */
}

.hero-content .intro,
.hero-content .footer-note {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000; /* thin black outline */
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, #08a43c, #b44dff); /* green to purple */
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.info-container {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
  font-family: var(--font-main);
  color: #222;
  line-height: 1.6;
}

.notice-block {
  margin-bottom: 3rem;
}

.notice-title {
  color: #e53935; /* red */
  font-size: 1.5rem;
  font-weight: 700;
}

.notice-text {
  color: #e53935;
  font-weight: 400;
}

.info-block h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.highlight {
  color: #e53935;
  font-weight: bold;
}

/** New products **/
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  border: 2px solid black;
  padding: 1.5rem;
  text-align: center;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.model {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.title span {
  font-weight: normal;
  font-size: 0.9rem;
  display: block;
  margin-top: 0.25rem;
}

.price {
  font-weight: 600;
  margin-bottom: 1rem;
}

.add-to-cart {
  background: #08a43c;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.add-to-cart:hover {
  background: #069132;
}

/** Categories sidebar **/

/* Hide uncategorized */
.category-sidebar li:has(a[href*='uncategorized']) {
  display: none;
}

.product-img img:hover {
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.5); /* soft green glow */
  transition: box-shadow 0.3s ease;
}

/** Categories Sidebar **/
.category-sidebar {
  position: absolute;
  top: 10.3rem;
  left: 2rem;
  width: 16rem; /* tighten the width */
  padding: 0.8rem 1rem;
  border-radius: 10px;
  z-index: 10;
  background: #08a43c;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
/** Categories Heading **/
.category-sidebar h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  padding-top: 0.5rem;
  padding-left: 1rem;
  color: #fff;
}
/** remove categories theme styles **/
.category-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/** Categories li styles and anchors**/
.category-sidebar li {
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid #eee;
  color: #fff;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.category-sidebar li a {
  color: #fff;
  text-decoration: none;
}

/* Hover effect for all items */
.category-sidebar li:hover {
  background: #2ecc71;
  color: white;
  box-shadow: 0 0 10px 3px rgba(46, 204, 113, 0.5);
  border-radius: 6px;
  cursor: pointer;
}

/* Submenu container */
.category-sidebar ul ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: #00a950 !important;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  font-size: 0.95rem;
  color: #555;
}

/* Show submenu on hover */
.category-sidebar li:hover > ul {
  display: block;
}
.category-sidebar ul ul li:hover {
  background: #2ecc71;
  color: white;
  box-shadow: 0 0 10px 3px rgba(46, 204, 113, 0.5);
  border-radius: 6px;
  cursor: pointer;
}

.diagonal-top {
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  transform: scaleY(-1) scaleX(-1);
}

.diagonal-top svg {
  display: block;
  width: 100%;
  height: 100%;
}

.diagonal-bottom {
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}

.diagonal-bottom svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .nav-left-2 .shop-products-link {
    display: none !important;
  }
}

