* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
}

.masala-header {
  position: relative;
  width: 100%;
  background: #fff;
  border-bottom: 2px solid #dddbdb;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  max-width: 1200px;
}

.logo {
  display: inline-block;
  font-family: "Arial Black", sans-serif;
  font-weight: 900;
  font-size: 52px;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: transform 0.3s ease;
}

.logo-jam {
  background: linear-gradient(45deg, #FFD700, #FFC107, #FFB300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.logo-jam:hover {
  transform: scale(1.1);
  background: linear-gradient(45deg, #00FF7F, #00CC33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.nav-menu ul {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-menu ul li a {
  position: relative;
  color: gray;
  font-weight: 540;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-menu ul li a:hover {
  color: #000;
}

.nav-menu ul li a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  content: "";
  background: gray;
  transition: 0.3s;
}

.nav-menu ul li a:hover::after {
  width: 100%;
}

.hamburger {
  z-index: 1001;
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  border-radius: 3px;
  width: 100%;
  height: 3px;
  display: block;
  background: gray;
  transition: all 0.35s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  padding: 90px 30px;
  background: #fff;
  transition: right 0.35s ease;
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.05);
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 25px;
}

.mobile-menu ul li a {
  color: gray;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.mobile-menu ul li a:hover {
  padding-left: 8px;
  color: #000;
}

.mobile-menu.active {
  right: 0;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 480px) {
  .logo {
    font-size: 41px;
  }
  .mobile-menu {
    width: 220px;
  }
}
.footer {
  padding: 80px 0 0;
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f8f8;
}

.footer-container {
  margin: auto;
  display: grid;
  padding: 0 24px;
  max-width: 1200px;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 20px;
  font-size: 24px;
  background: linear-gradient(45deg, #ff8800, #ff8800, #ff8800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.footer-col h4 {
  margin-bottom: 18px;
  color: #f80;
  font-size: 18px;
}

.footer-col p {
  color: gray;
  font-size: 18px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: gray;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  padding-left: 5px;
  color: #f80;
}

.contact-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 10px;
}

.contact-list i {
  color: #f80;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  background: gray;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #fff;
  background: #f80;
  transform: translateY(-3px);
}

.footer-bottom {
  width: 100%;
  padding: 20px 24px;
  font-size: 16px;
  text-align: center;
  background: #f5f5f5;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom a {
  color: #f80;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }
  .footer-container {
    padding: 0 20px;
    grid-template-columns: 1fr;
  }
  .contact-list li {
    justify-content: flex-start;
  }
  .footer-social {
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .footer-col h3 {
    font-size: 22px;
  }
  .footer-col h4 {
    font-size: 17px;
  }
  .footer-col p {
    font-size: 16px;
  }
}
.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  min-height: 90vh;
  text-align: center;
  transition: background 0.5s ease;
  background: linear-gradient(135deg, rgba(151, 150, 150, 0.44) 10%, rgba(151, 150, 150, 0.44) 10%), url(https://images.unsplash.com/photo-1532336414038-cf19250c5757?auto=format&fit=crop&w=1920&q=80) center center/cover no-repeat;
}

.hero .hero-container {
  margin: auto;
  max-width: 900px;
}

.hero .hero-container .logo {
  margin-bottom: 20px;
  font-family: "Arial Black", sans-serif;
  font-weight: 900;
  font-size: 70px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero .hero-container .logo .logo-part1 {
  display: block;
  background: linear-gradient(90deg, #ff7a18, #ffd54d, #00ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.hero .hero-container .logo .logo-part2 {
  margin-top: 5px;
  display: block;
  color: #fbfafc;
  font-size: 30px;
}

.hero .hero-container .logo:hover .logo-part1 {
  transform: scale(1.1);
  text-shadow: 0 2px 5px rgba(255, 122, 24, 0.2), 0 5px 15px rgba(0, 204, 255, 0.3), 0 0 10px rgba(255, 215, 77, 0.2);
  cursor: pointer;
}

.hero .hero-container h1 {
  margin: 20px 0;
  color: #e7aa0f;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.hero .hero-container p {
  margin-bottom: 30px;
  color: #f1f1f1;
  font-size: 18px;
  line-height: 1.8;
}

.hero .hero-container .cta-btn {
  border-radius: 30px;
  display: inline-block;
  padding: 14px 35px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  background: #e7aa0f;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 166, 0, 0.4);
  transition: all 0.3s ease;
}

.hero .hero-container .cta-btn:hover {
  background: #2ecc71;
  box-shadow: 0 6px 20px rgba(85, 179, 9, 0.5);
  transform: translateY(-3px);
}

@media (max-width: 1400px) {
  .hero .hero-container .logo {
    font-size: 65px;
  }
  .hero .hero-container h1 {
    font-size: 40px;
  }
  .hero .hero-container p {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .hero .hero-container {
    max-width: 800px;
  }
  .hero .hero-container .logo {
    font-size: 60px;
  }
  .hero .hero-container .logo .logo-part2 {
    font-size: 28px;
  }
  .hero .hero-container h1 {
    font-size: 38px;
  }
  .hero .hero-container p {
    font-size: 17px;
  }
}
@media (max-width: 992px) {
  .hero .hero-container {
    max-width: 700px;
  }
  .hero .hero-container .logo {
    font-size: 54px;
  }
  .hero .hero-container .logo .logo-part2 {
    font-size: 26px;
  }
  .hero .hero-container h1 {
    font-size: 34px;
  }
  .hero .hero-container p {
    font-size: 16px;
  }
  .hero .hero-container .cta-btn {
    padding: 13px 32px;
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 0 20px;
    min-height: 80vh;
  }
  .hero .hero-container {
    max-width: 580px;
  }
  .hero .hero-container .logo {
    font-size: 46px;
  }
  .hero .hero-container .logo .logo-part2 {
    font-size: 22px;
  }
  .hero .hero-container h1 {
    margin: 16px 0;
    font-size: 30px;
  }
  .hero .hero-container p {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.75;
  }
  .hero .hero-container .cta-btn {
    padding: 12px 28px;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 0 16px;
    min-height: 75vh;
  }
  .hero .hero-container .logo {
    font-size: 40px;
  }
  .hero .hero-container .logo .logo-part2 {
    font-size: 20px;
  }
  .hero .hero-container h1 {
    font-size: 26px;
  }
  .hero .hero-container p {
    font-size: 14px;
    text-align: justify;
  }
  .hero .hero-container .cta-btn {
    padding: 11px 24px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 0 14px;
    min-height: 70vh;
  }
  .hero .hero-container .logo {
    font-size: 34px;
  }
  .hero .hero-container .logo .logo-part2 {
    font-size: 18px;
  }
  .hero .hero-container h1 {
    margin: 14px 0;
    font-size: 22px;
    line-height: 1.3;
  }
  .hero .hero-container p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
  }
  .hero .hero-container .cta-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .hero {
    padding: 0 12px;
    min-height: 65vh;
  }
  .hero .hero-container .logo {
    font-size: 28px;
  }
  .hero .hero-container .logo .logo-part2 {
    font-size: 16px;
  }
  .hero .hero-container h1 {
    font-size: 20px;
  }
  .hero .hero-container p {
    margin-bottom: 18px;
    font-size: 12px;
  }
  .hero .hero-container .cta-btn {
    padding: 9px 18px;
    font-size: 13px;
  }
}
.about {
  width: 100%;
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid #ebebeb;
}

.about .about-container {
  margin: auto;
  display: grid;
  align-items: start;
  padding: 0 24px;
  max-width: 1200px;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about .about-left {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about .about-left.visible {
  opacity: 1;
  transform: translateY(0);
}

.about .about-eyebrow {
  margin-bottom: 14px;
  display: inline-block;
  color: #f80;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about .about-heading {
  margin-bottom: 24px;
  color: #1a1a1a;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.18;
}

.about .about-heading em {
  font-style: normal;
  background: linear-gradient(90deg, #ff8800, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.about .about-divider {
  margin-bottom: 28px;
  border-radius: 2px;
  width: 52px;
  height: 3px;
  background: #f80;
  transition: width 0.6s ease;
}

.about:hover .about-divider {
  width: 90px;
}

.about .about-body {
  margin-bottom: 18px;
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.about .about-body strong {
  color: #1a1a1a;
  font-weight: 700;
}

.about .about-body em {
  color: #f80;
  font-weight: 600;
  font-style: normal;
}

.about .about-stats {
  margin-top: 40px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 28px 32px;
  background: #fafafa;
  border-left: 4px solid #f80;
}

.about .about-stats .stat-item {
  flex: 1;
  text-align: center;
}

.about .about-stats .stat-item .stat-number {
  display: block;
  color: #1a1a1a;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
}

.about .about-stats .stat-item .stat-symbol {
  color: #f80;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.about .about-stats .stat-item .stat-label {
  margin-top: 6px;
  display: block;
  color: #b0b0b0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about .about-stats .stat-divider {
  margin: 0 10px;
  width: 1px;
  height: 50px;
  background: #dddbdb;
}

.about .about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: 0.18s;
}

.about .about-right.visible {
  opacity: 1;
  transform: translateY(0);
}

.about .pillar-card {
  position: relative;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  padding: 28px 24px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
}

.about .pillar-card::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  content: "";
  background: #f80;
  transition: width 0.35s ease;
}

.about .pillar-card:hover {
  border-color: rgba(255, 136, 0, 0.2);
  box-shadow: 0 8px 30px rgba(255, 136, 0, 0.1);
  transform: translateY(-4px);
}

.about .pillar-card:hover::before {
  width: 100%;
}

.about .pillar-card .pillar-icon {
  margin-bottom: 16px;
  width: 44px;
  height: 44px;
  color: #f80;
}

.about .pillar-card .pillar-icon svg {
  width: 100%;
  height: 100%;
}

.about .pillar-card h4 {
  margin-bottom: 10px;
  color: #1a1a1a;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.about .pillar-card p {
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .about .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about .about-right {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 70px 0;
  }
  .about .about-heading {
    font-size: 30px;
  }
  .about .about-stats {
    padding: 20px 18px;
  }
  .about .about-stats .stat-number {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .about .about-heading {
    font-size: 26px;
  }
  .about .about-right {
    grid-template-columns: 1fr;
  }
  .about .about-stats {
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
  }
  .about .about-stats .stat-divider {
    margin: 0;
    width: 50px;
    height: 1px;
  }
}
.products {
  width: 100%;
  padding: 100px 0;
  background: #f8f8f8;
  border-top: 1px solid #ebebeb;
}

.products .products-container {
  margin: auto;
  padding: 0 24px;
  max-width: 1200px;
}

.products .products-header {
  margin-bottom: 48px;
  max-width: 560px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.products .products-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.products .products-eyebrow {
  margin-bottom: 12px;
  display: inline-block;
  color: #f80;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.products .products-heading {
  margin-bottom: 20px;
  color: #1a1a1a;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.18;
}

.products .products-heading em {
  font-style: normal;
  background: linear-gradient(90deg, #ff8800, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.products .products-divider {
  margin-bottom: 20px;
  border-radius: 2px;
  width: 52px;
  height: 3px;
  background: #f80;
  transition: width 0.6s ease;
}

.products:hover .products-divider {
  width: 90px;
}

.products .products-subtext {
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.products .slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.products .slider-track-outer {
  width: 100%;
  overflow: hidden;
}

.products .slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.products .slider-btn {
  z-index: 2;
  border: 1px solid #dddbdb;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: gray;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.products .slider-btn svg {
  width: 20px;
  height: 20px;
}

.products .slider-btn:hover {
  border-color: #f80;
  color: #fff;
  background: #f80;
  box-shadow: 0 4px 16px rgba(255, 136, 0, 0.3);
  transform: scale(1.08);
}

.products .slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.products .product-card {
  position: relative;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  cursor: pointer;
}

.products .product-card:hover {
  border-color: rgba(255, 136, 0, 0.25);
  box-shadow: 0 10px 36px rgba(255, 136, 0, 0.12);
  transform: translateY(-6px);
}

.products .product-card:hover .product-hover-line {
  width: 100%;
}

.products .product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.products .product-card .product-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

.products .product-card .product-img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.products .product-card .product-img-wrap img[src=""], .products .product-card .product-img-wrap img:not([src]) {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.products .product-card .product-img-wrap .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border: 1px solid rgba(255, 136, 0, 0.25);
  border-radius: 20px;
  padding: 4px 10px;
  color: #f80;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.products .product-card .product-body {
  padding: 20px 20px 18px;
}

.products .product-card .product-body .product-tag {
  margin-bottom: 10px;
  border-radius: 20px;
  display: inline-block;
  padding: 3px 10px;
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: #f5f5f5;
}

.products .product-card .product-body h3 {
  margin-bottom: 8px;
  color: #1a1a1a;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.products .product-card .product-body p {
  margin-bottom: 18px;
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.65;
}

.products .product-card .product-body .product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.products .product-card .product-body .product-footer .product-price {
  color: #f80;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

.products .product-card .product-body .product-footer .product-price small {
  margin-left: 2px;
  color: #b0b0b0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 11px;
}

.products .product-card .product-body .product-footer .product-btn {
  border-radius: 30px;
  padding: 8px 16px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  background: #f80;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(255, 136, 0, 0.25);
}

.products .product-card .product-body .product-footer .product-btn:hover {
  background: #e07600;
  box-shadow: 0 5px 16px rgba(255, 136, 0, 0.4);
  transform: translateY(-2px);
}

.products .product-card .product-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #f80;
  transition: width 0.35s ease;
}

.products .slider-dots {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.products .slider-dots .dot {
  border: none;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  padding: 0;
  background: #dddbdb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.products .slider-dots .dot.active {
  border-radius: 4px;
  width: 24px;
  background: #f80;
}

.products .slider-dots .dot:hover {
  background: #ffb347;
}

@media (max-width: 992px) {
  .products .product-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}
@media (max-width: 768px) {
  .products {
    padding: 70px 0;
  }
  .products .products-heading {
    font-size: 30px;
  }
  .products .slider-btn {
    width: 38px;
    height: 38px;
  }
  .products .slider-btn svg {
    width: 16px;
    height: 16px;
  }
  .products .product-card {
    flex: 0 0 calc(50% - 12px);
  }
  .products .product-card .product-img-wrap {
    height: 170px;
  }
}
@media (max-width: 480px) {
  .products .products-heading {
    font-size: 26px;
  }
  .products .slider-btn {
    width: 34px;
    height: 34px;
  }
  .products .product-card {
    flex: 0 0 calc(100% - 0px);
  }
  .products .product-card .product-img-wrap {
    height: 200px;
  }
}
.gallery {
  width: 100%;
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid #ebebeb;
}

.gallery .gallery-container {
  margin: auto;
  padding: 0 24px;
  max-width: 1200px;
}

.gallery .gallery-header {
  margin-bottom: 48px;
  max-width: 560px;
}

.gallery .gallery-eyebrow {
  margin-bottom: 12px;
  display: inline-block;
  color: #f80;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.gallery .gallery-heading {
  margin-bottom: 20px;
  color: #1a1a1a;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.18;
}

.gallery .gallery-heading em {
  font-style: normal;
  background: linear-gradient(90deg, #ff8800, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.gallery .gallery-divider {
  border-radius: 2px;
  width: 52px;
  height: 3px;
  background: #f80;
  transition: width 0.6s ease;
}

.gallery:hover .gallery-divider {
  width: 90px;
}

.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery .gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #e0e0e0;
}

.gallery .gallery-item:nth-child(3n+1) {
  grid-row: span 2;
}

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery .gallery-item .gallery-item-overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  inset: 0;
  background: rgba(255, 136, 0, 0);
  transition: background 0.3s ease;
}

.gallery .gallery-item .gallery-item-overlay svg {
  width: 40px;
  height: 40px;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s ease;
  stroke: #fff;
}

.gallery .gallery-item:hover img {
  transform: scale(1.07);
}

.gallery .gallery-item:hover .gallery-item-overlay {
  background: rgba(255, 136, 0, 0.45);
}

.gallery .gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

.gallery .lightbox-overlay {
  position: fixed;
  z-index: 3000;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery .lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.gallery .lightbox {
  position: fixed;
  z-index: 3001;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery .lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.gallery .lightbox img {
  border-radius: 6px;
  display: block;
  max-width: 88vw;
  max-height: 88vh;
  -o-object-fit: contain;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.gallery .lightbox .lb-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery .lightbox .lb-close:hover {
  border-color: #f80;
  background: #f80;
  transform: rotate(90deg);
}

.gallery .lightbox .lb-nav {
  position: absolute;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 34px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
}

.gallery .lightbox .lb-nav:hover {
  border-color: #f80;
  background: #f80;
}

.gallery .lightbox .lb-nav:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
}

.gallery .lightbox .lb-prev {
  left: 20px;
}

.gallery .lightbox .lb-next {
  right: 20px;
}

@media (max-width: 992px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery {
    padding: 70px 0;
  }
  .gallery .gallery-heading {
    font-size: 30px;
  }
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery .lightbox .lb-prev {
    left: 8px;
  }
  .gallery .lightbox .lb-next {
    right: 8px;
  }
}
@media (max-width: 480px) {
  .gallery .gallery-heading {
    font-size: 26px;
  }
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.contact {
  width: 100%;
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid #ebebeb;
}

.contact .contact-container {
  margin: auto;
  padding: 0 24px;
  max-width: 1200px;
}

.contact .contact-header {
  margin-bottom: 56px;
  max-width: 560px;
}

.contact .contact-eyebrow {
  margin-bottom: 12px;
  display: inline-block;
  color: #f80;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.contact .contact-heading {
  margin-bottom: 20px;
  color: #1a1a1a;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.18;
}

.contact .contact-heading em {
  font-style: normal;
  background: linear-gradient(90deg, #ff8800, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.contact .contact-divider {
  margin-bottom: 20px;
  border-radius: 2px;
  width: 52px;
  height: 3px;
  background: #f80;
  transition: width 0.6s ease;
}

.contact:hover .contact-divider {
  width: 90px;
}

.contact .contact-subtext {
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.contact .contact-row {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact .form-group label {
  color: #1a1a1a;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.contact .form-group input, .contact .form-group textarea {
  border: 1px solid #dddbdb;
  border-radius: 6px;
  width: 100%;
  padding: 13px 16px;
  color: #1a1a1a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  background: #fafafa;
  outline: none;
  transition: all 0.25s ease;
  resize: none;
}

.contact .form-group input::-moz-placeholder, .contact .form-group textarea::-moz-placeholder {
  color: #b0b0b0;
}

.contact .form-group input::placeholder, .contact .form-group textarea::placeholder {
  color: #b0b0b0;
}

.contact .form-group input:focus, .contact .form-group textarea:focus {
  border-color: #f80;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.1);
}

.contact .form-group textarea {
  min-height: 140px;
}

.contact .form-submit {
  border: none;
  border-radius: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 32px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 15px;
  gap: 10px;
  background: #f80;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 136, 0, 0.3);
  align-self: flex-start;
  letter-spacing: 0.3px;
}

.contact .form-submit svg {
  width: 17px;
  height: 17px;
  transition: transform 0.3s ease;
}

.contact .form-submit:hover {
  background: #e07600;
  box-shadow: 0 6px 22px rgba(255, 136, 0, 0.45);
  transform: translateY(-2px);
}

.contact .form-submit:hover svg {
  transform: translateX(4px);
}

.contact .contact-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact .info-card {
  position: relative;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  padding: 18px 16px;
  gap: 14px;
  background: #fafafa;
  transition: all 0.3s ease;
  overflow: hidden;
}

.contact .info-card::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  content: "";
  background: #f80;
  transition: width 0.35s ease;
}

.contact .info-card:hover {
  border-color: rgba(255, 136, 0, 0.2);
  box-shadow: 0 6px 20px rgba(255, 136, 0, 0.08);
  transform: translateY(-3px);
}

.contact .info-card:hover::before {
  width: 100%;
}

.contact .info-card:hover .info-icon {
  background: #f80;
}

.contact .info-card:hover .info-icon svg {
  stroke: #fff;
}

.contact .info-card .info-icon {
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  background: #fff3e0;
  transition: background 0.3s ease;
}

.contact .info-card .info-icon svg {
  width: 18px;
  height: 18px;
  stroke: #f80;
  transition: stroke 0.3s ease;
}

.contact .info-card .info-text h4 {
  margin-bottom: 4px;
  color: #1a1a1a;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.contact .info-card .info-text p {
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.contact .contact-map {
  border: 1px solid #ebebeb;
  border-radius: 8px;
  width: 100%;
  height: 280px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact .contact-map iframe {
  border: none;
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 992px) {
  .contact .contact-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact .contact-map {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 70px 0;
  }
  .contact .contact-heading {
    font-size: 30px;
  }
  .contact .form-row {
    grid-template-columns: 1fr;
  }
  .contact .contact-info-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .contact .contact-heading {
    font-size: 26px;
  }
  .contact .contact-info-cards {
    grid-template-columns: 1fr;
  }
  .contact .form-submit {
    width: 100%;
  }
  .contact .contact-map {
    height: 240px;
  }
}
.product_detail_page {
  width: 100%;
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid #ebebeb;
}

.product_detail_page .pd-container {
  margin: auto;
  padding: 0 24px;
  max-width: 1200px;
}

.product_detail_page .pd-header {
  margin-bottom: 48px;
  max-width: 560px;
}

.product_detail_page .pd-eyebrow {
  margin-bottom: 12px;
  display: inline-block;
  color: #f80;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.product_detail_page .pd-heading {
  margin-bottom: 20px;
  color: #1a1a1a;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.18;
}

.product_detail_page .pd-heading em {
  font-style: normal;
  background: linear-gradient(90deg, #ff8800, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.product_detail_page .pd-divider {
  margin-bottom: 20px;
  border-radius: 2px;
  width: 52px;
  height: 3px;
  background: #f80;
  transition: width 0.6s ease;
}

.product_detail_page:hover .pd-divider {
  width: 90px;
}

.product_detail_page .pd-subtext {
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.product_detail_page .pd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product_detail_page .pd-card {
  position: relative;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product_detail_page .pd-card:hover {
  border-color: rgba(255, 136, 0, 0.25);
  box-shadow: 0 10px 36px rgba(255, 136, 0, 0.12);
  transform: translateY(-6px);
}

.product_detail_page .pd-card:hover .pd-card-line {
  width: 100%;
}

.product_detail_page .pd-card:hover .pd-card-img img {
  transform: scale(1.06);
}

.product_detail_page .pd-card .pd-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

.product_detail_page .pd-card .pd-card-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product_detail_page .pd-card .pd-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border: 1px solid rgba(255, 136, 0, 0.25);
  border-radius: 20px;
  padding: 4px 10px;
  color: #f80;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
}

.product_detail_page .pd-card .pd-card-body {
  padding: 18px 18px 16px;
}

.product_detail_page .pd-card .pd-card-body .pd-card-tag {
  margin-bottom: 10px;
  border-radius: 20px;
  display: inline-block;
  padding: 3px 10px;
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #f5f5f5;
}

.product_detail_page .pd-card .pd-card-body h3 {
  margin-bottom: 6px;
  color: #1a1a1a;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 16px;
}

.product_detail_page .pd-card .pd-card-body p {
  margin-bottom: 14px;
  color: gray;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.65;
}

.product_detail_page .pd-card .pd-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.product_detail_page .pd-card .pd-card-footer .pd-card-price {
  color: #f80;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
}

.product_detail_page .pd-card .pd-card-footer .pd-card-price small {
  margin-left: 2px;
  color: #b0b0b0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 11px;
}

.product_detail_page .pd-card .pd-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #f80;
  transition: width 0.35s ease;
}

@media (max-width: 992px) {
  .product_detail_page .pd-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product_detail_page {
    padding: 70px 0;
  }
  .product_detail_page .pd-heading {
    font-size: 30px;
  }
  .product_detail_page .pd-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .product_detail_page .pd-heading {
    font-size: 26px;
  }
  .product_detail_page .pd-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product_detail_page .pd-card-body {
    padding: 14px 14px 12px;
  }
  .product_detail_page .pd-card-body h3 {
    font-size: 14px;
  }
}
.certificates {
  width: 100%;
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid #eaeaea;
}

.certificates .cert-container {
  margin: auto;
  padding: 0 16px;
  max-width: 1200px;
}

.certificates .cert-eyebrow {
  margin-bottom: 12px;
  display: inline-block;
  color: #f80;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.certificates .cert-heading {
  margin-bottom: 20px;
  color: #1a1a1a;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 38px;
  line-height: 1.2;
}

.certificates .cert-heading em {
  color: #f80;
  font-style: normal;
}

.certificates .cert-divider {
  margin-bottom: 24px;
  width: 50px;
  height: 3px;
  background: #f80;
}

.certificates .cert-desc {
  margin-bottom: 40px;
  color: #666;
  font-size: 15px;
  max-width: 600px;
  line-height: 1.6;
}

.certificates .cert-table {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  width: 100%;
  background: #fff;
}

.certificates .cert-head {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 20px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  background: #f7f7f7;
  border-bottom: 1px solid #e5e5e5;
}

.certificates .cert-row {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 20px;
  color: #444;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.certificates .cert-row:last-child {
  border-bottom: none;
}

.certificates .cert-head div:first-child, .certificates .cert-row div:first-child {
  width: 60%;
  flex-shrink: 0;
  min-width: 180px;
  white-space: normal;
}

.certificates .cert-head div:last-child, .certificates .cert-row div:last-child {
  width: 40%;
  flex-shrink: 0;
  color: #111;
  font-weight: 500;
  min-width: 120px;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .certificates .cert-heading {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .certificates {
    padding: 70px 0;
  }
  .certificates .cert-heading {
    font-size: 28px;
  }
  .certificates .cert-head, .certificates .cert-row {
    padding: 10px 12px;
    font-size: 13px;
  }
  .certificates .cert-head div:first-child, .certificates .cert-row div:first-child {
    width: 55%;
  }
  .certificates .cert-head div:last-child, .certificates .cert-row div:last-child {
    width: 45%;
  }
}
@media (max-width: 480px) {
  .certificates .cert-heading {
    font-size: 24px;
  }
  .certificates .cert-head, .certificates .cert-row {
    padding: 8px 10px;
    font-size: 12px;
  }
  .certificates .cert-head div:first-child, .certificates .cert-row div:first-child {
    width: 55%;
  }
  .certificates .cert-head div:last-child, .certificates .cert-row div:last-child {
    width: 45%;
  }
}

/*# sourceMappingURL=main.css.map */
