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

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif !important;
}

html {
  overflow-x: hidden;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}


.site-header {
  border-bottom: 4px solid #000;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  padding: 10px 0;
}

.site-header .nav-site {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .site-menu ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header .site-menu a,
.site-header .mobile-menu a {
  text-decoration: none;
  color: #4b4b4b;
  font-size: 28px;
  letter-spacing: 1px;
  font-weight: 400;
}

.site-header .logo img {
  width: 150px;
}

/* Hamburger */
.site-header .menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Mobile Menu */
.site-header .mobile-menu {
  display: none;
  flex-direction: column;
  padding: 15px;
  border-top: 4px solid #000;
  margin-top: 20px;
}

.site-header .mobile-menu a {
  padding: 10px 0;
}




.hero-slider-section {
  padding: 60px 0px;
  background: #fff;
}

.hero-slider-section .inner-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* GRID */
  gap: 40px;
  align-items: center;
}

/* Left Image */
.hero-slider-section .grid-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider */
.hero-slider-section .slider {
  position: relative;
  overflow: hidden;
}

.hero-slider-section .slide {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-section .slide.active {
  display: block;
}




.hero-slider-section .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 22px;
  user-select: none;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.hero-slider-section .prev {
  left: 10px;
}

.hero-slider-section .next {
  right: 10px;
}






.about-section-001 {
  background: #fff;
  padding: 60px 0;
}

.about-section-001 .inner-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.about-section-001 .inner-content:nth-of-type(2) {
  grid-template-columns: 2fr 1fr;
}

.about-section-001 .about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.about-section-001 .about-content h2 {
  font-size: 48px;
  line-height: 48px;
  font-weight: 400;
  color: #383938;
  border-bottom: 2px solid #383938;
  padding-bottom: 5px;
  width: 50%;
  margin: 0 auto 30px;
}

.about-section-001 .about-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 30px;
  color: #888;
  font-weight: 500;
}



.about-section-001 .bottom-text {
  font-size: 16px;
  line-height: 30px;
  color: #888;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-section-001 .quote {
  font-style: italic;
  color: #800000;
  font-weight: bold;
  margin: 20px 0;
  font-size: 26px;
  line-height: 26px;
  font-weight: 400;
}

.about-section-001 .quote span {
  font-style: normal;
  font-weight: bold;
  margin-left: 10px;
}




.press-section {
  background: #fff;
  padding: 40px 0;
}

.press-section h2 {
  font-size: 48px;
  line-height: 48px;
  font-weight: 400;
  color: #383938;
  margin-bottom: 20px;
}

.press-line {
  width: 220px;
  height: 2px;
  background: #333;
  margin-bottom: 40px;
}

.press-slider .item {
  text-align: center;
}


.press-slider .owl-dots {
  display: block !important;
  text-align: center;
  margin-top: 30px;
}

.press-slider .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
}

.press-slider .owl-dot.active span {
  background: #000;
}







.contact-section {
  padding: 60px 0px;
  background: #ffffff;
}

.contact-section .contact-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}


.contact-section .contact-left img {
  width: 100%;
}

.contact-section .quote {
  margin: 15px 0 40px 0;
  color: #b33;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
}

.contact-section .contact-info p,
.contact-section .contact-info a {
  color: #888;
  font-size: 30px;
}

.contact-section .contact-right h2 {
  font-size: 48px;
  line-height: 48px;
  font-weight: 400;
  color: #383938;
  margin: 0 auto 30px;
}

.contact-section .intro-text {
  font-size: 18px;
  line-height: 30px;
  color: #888;
  font-weight: 500;
  margin-bottom: 20px;
}


.contact-section form input,
.contact-section form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #383938;
  font-size: 18px;
  border-radius: 5px;
}

.contact-section form input {
  height: 60px;
}

.contact-section form textarea {

  height: 330px;
}


.contact-section .recaptcha-error {
  display: flex;
  align-items: flex-start;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  font-family: Arial, sans-serif;
  font-size: 12px;
  border-radius: 4px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  width: 100%;
}

.contact-section .recaptcha-logo img {
  width: 48px;
  height: 48px;
  margin-right: 10px;
}

.contact-section .recaptcha-message p {
  margin: 2px 0;
}

.contact-section .recaptcha-message a {
  color: #555;
  text-decoration: none;
  font-size: 11px;
}

.contact-section .recaptcha-message a:hover {
  text-decoration: underline;
}


.contact-section button {
  width: 100%;
  padding: 14px;
  background: #383938;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}

.contact-section button:hover {
  background: #000;
}

.contact-section .stay-touch {
  margin-top: 40px;
}

.contact-section .stay-touch h3 {
  font-size: 48px;
  line-height: 48px;
  font-weight: 400;
  color: #383938;
  margin: 0 auto 30px;
}

.contact-section .social-icons ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-section .social-icons a {
  margin-right: 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #383938;
}

.contact-section .social-icons a i {
  color: #fff;
  font-size: 18px;
}

.contact-section .social-icons a:hover {
  background: #000;
}





.gallery-section {
    padding: 60px 0px;
    background: #ffffff;
}

.gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-section .gallery-card {
    cursor: pointer;
}

.gallery-section .gallery-card img {
    width: 100%;
    transition: transform 0.4s ease;
}

.gallery-section .gallery-card:hover img {
    transform: scale(1.05);
    opacity: 0.7;
}

.gallery-section .gallery-card h3 {
    font-size: 24px;
    line-height: 45px;
    font-weight: 500;
    color: #0056b3;
    font-family: Arial, Helvetica, sans-serif;
}





.shop-banner-section{
  background: #0E0B0B;
    opacity: 0.57;
    padding: 100px 0;
}


.shop-banner-section .inner-content h1{
  font-size: 39px;
  line-height: 49px;
  color: #eaefea;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}


p#showingInfo {
    line-height: 30px;
    margin-bottom: 30px !important;
}





.shop-section {
    padding: 60px 0px;
    background: #fff;
}


.shop-section .shop-top {
   display: grid;
    grid-template-columns: 1fr 2fr 1fr 0.5fr;
    gap: 15px;
    margin-bottom: 30px;
    background: #cccccc6e;
    padding: 18px;
    border-radius: 10px;
    align-items: center;
}

.shop-section button.cart-icon {
    text-align: center;
    display: block;
    border-radius: 10px;
    font-size: 18px;
    height: 48px;
}

.shop-section .shop-top h2 {
    font-size: 19px;
    color: #383938;
    line-height: 29px;
    font-weight: 600;
}

.shop-section .shop-top input,
.shop-section .shop-top select {
    padding: 10px;
    border: 1px solid #383938;
    font-size: 16px;
    outline: none;
    border-radius: 5px;
    height: 48px;
}

.shop-section .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.shop-section .product-card {
    text-align: center;
}

.shop-section .product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.shop-section .product-card h3 {
    font-size: 16px;
    margin: 12px 0 6px;
}

.shop-section .price {
    color: #555;
    margin-bottom: 10px;
}

.shop-section button {
    background: #383938;
    color: #fff;
    padding: 8px 14px;
    border: none;
    cursor: pointer;
}

.shop-section button:hover {
    background: #333;
}


.shop-section .product-card {
    position: relative;
    text-align: center;
}

.shop-section .sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #2ecc71;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 3px;
}

.shop-section .price del {
    color: #999;
    margin-right: 5px;
}

.shop-section .price span {
    font-weight: bold;
}

/* Pagination */
.shop-section .pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 6px;
}

.shop-section .pagination button {
    border: 1px solid #383938;
    background: #fff;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 18px;
    color: #383938;
}

.shop-section .pagination button.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    border-color: #007bff;
}

.shop-section .pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}



/* .cart-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 22px;
    z-index: 999;
} */

.cart-icon span {
    background: #383938;
    color: #fff;
    padding: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
}

.cart-icon {
    display: flex;
    justify-content: flex-start;
    font-size: 28px;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 998;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: #fff;
    transition: 0.4s;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay.active {
    display: block;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.cart-items {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.cart-footer {
    padding: 15px;
    border-top: 1px solid #eee;
}

.cart-footer .btn {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    background: #383938;
    color: #fff;
    border: none;
    cursor: pointer;
}

.cart-footer .checkout {
    background: #383938;
}

button.cart-close {
    border: none;
    background: #383938;
    color: #fff;
    width: 35px;
    height: 35px;
    font-size: 16px;
    border-radius: 100%;
    cursor: pointer;
}

button.remove-btn {
  border: none;
    background: rgba(255, 0, 0, 0.822);
    color: #fff;
    width: 35px;
    height: 35px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}


.cart-header .left-002 {
    display: flex;
    align-items: center;
    gap: 20px;
}




.section-service-001{
  background: #fff;
  padding: 60px 0;
}


.section-service-001 .inner-content{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 40px;
}






.site-footer {
  background: linear-gradient(to right, #1f1f1f, #2b2b2b);
  padding: 26px 0;
}

.site-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer .footer-left {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
}

.site-footer .footer-right {
  display: flex;
  gap: 20px;
}

.site-footer .footer-right a {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
}

.site-footer .footer-right a:hover {
  opacity: 0.7;
}









@media (max-width: 767px) {
  .hero-slider-section .inner-content {
    grid-template-columns: 100%;
  }

  .site-footer .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .press-section .slide {
    min-width: 100%;
  }

  .about-section-001 .inner-content {
    grid-template-columns: 100%;
  }

  .about-section-001 .about-content h2 {
    font-size: 30px;
    line-height: 30px;
    width: 100%;
  }

  .about-section-001 .inner-content:nth-of-type(2) {
    grid-template-columns: 100%;
  }

  .about-section-001 .inner-content .about-image:nth-of-type(2) {
    order: -1;
  }

  .about-section-001 .quote {
    font-size: 22px;
  }

  .press-section h2 {
    font-size: 30px;
    line-height: 30px;
  }

  .press-section .slide img {
    width: 100%;
    object-fit: cover;
  }


  .contact-section {
    padding: 40px 0px;
  }

  .contact-section .contact-inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .contact-section .contact-right h2 {
    width: 100%;
    font-size: 30px;
    line-height: 30px;
    margin: 0 auto 22px;
  }

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

  .contact-section form input {
    height: 50px;
  }

  .contact-section form input,
  .contact-section form textarea {
    font-size: 16px;
  }

  .contact-section .stay-touch h3 {
    width: 100%;
    font-size: 30px;
    line-height: 30px;
    margin: 0 auto 22px;
  }

  .contact-section .intro-text {
    font-size: 16px;
    line-height: 26px;
  }


.gallery-section {
    padding: 40px 0px;
}
  .gallery-section .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
}

 .shop-section .shop-top {
        grid-template-columns: 1fr;
    }
    .shop-section .product-grid {
        grid-template-columns: 1fr;
    }
}




@media (min-width:767px) and (max-width:1024px){
  .gallery-section .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
}
.shop-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}





@media (max-width: 1024px) {
  .site-header .site-menu {
    display: none;
  }

  .site-header .menu-toggle {
    display: block;
  }

  .site-header .logo img {
    width: 140px;
  }

  .site-header .nav-site {
    padding: 0 15px;
  }

  .site-header .container {
    padding: 0;
  }

  .site-header .mobile-menu a {
    font-size: 18px;
  }
}

@media (min-width: 1025px) and (max-width:1199px) {

  .site-header .site-menu a,
  .site-header .mobile-menu a {
    font-size: 24px;
  }

  .site-header .site-menu ul {
    gap: 20px;
  }
}