:root {
  --primary-blue: #0a3c94;
  --btn-blue: #134aa2;
  --light-blue: #3e74d2;
  --text-gray: #2a2a2a;
  --bg-gray: #f4f7fb;
  --card-bg: #eaeff9;
}

body {
  font-family: "Inter", sans-serif;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-serif {
  font-family: "Yeseva One", serif;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.navbar-brand img {
  height: 53px;
}

.nav-link {
  color: black;
  font-weight: 400;
  font-size: 20px;
  margin: 0 15px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--btn-blue) !important;
}

.btn-contact {
  background-color: var(--btn-blue);
  color: white;
  border-radius: 12px;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  border: 2px solid var(--btn-blue);
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: transparent;
  color: var(--btn-blue);
}

.nav-item.active .nav-link {
  font-weight: 600;
  color: var(--btn-blue);
}

@media (min-width: 768px) {
  .nav-link {
    border-bottom: 2px solid transparent;
  }

  .nav-item.active .nav-link {
    border-bottom: 2px solid var(--btn-blue);
  }
}

/* ── Mobile Navbar adjustments ── */
@media (max-width: 767px) {
  .navbar-collapse {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 10px;
  }

  .navbar-collapse .nav-link {
    font-size: 18px;
    padding: 12px 0;
  }
}

/* ── Hero ── */
.hero {
  background-image: url("image/hero.png");
  background-size: cover;
  border-radius: 20px;
  padding: 48px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 35px 70px -5px rgba(62, 116, 210, 0.4);
}

.hero h1 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.hero p.subtitle {
  font-style: italic;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 26px;
}

.hero-bags {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.hero p.desc {
  font-size: 24px;
  font-weight: 400;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.btn-white {
  background-color: white;
  color: var(--btn-blue);
  border-radius: 12px;
  padding: 15px 40px;
  font-weight: 800;
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  color: var(--btn-blue);
}

/* ── About Us ── */
.about-section {
  padding: 80px 0 80px;
}

.about-us {
  border: 1px solid #f0f0f0;
  box-shadow: 10px 10px 0 #f5fbff;
  margin: 0;
}

.about-us-div {
  border-right: 1px solid #f0f0f0;
  padding: 30px;
}

.about-section h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-text {
  font-size: 18px;
  font-weight: 400;
  color: #717171;
  line-height: 1.8;
  max-width: 97%;
}

.about-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.about-logo img {
  max-width: 200px;
}

/* ── Scroll Reveal ── */

.why-choose-section {
  overflow-x: hidden;
}

.reveal {
  opacity: 0;
  transform: perspective(1000px) rotateX(15deg) translateY(60px) scale(0.9);
  transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.reveal-left {
  transform: perspective(1000px) rotateY(15deg) translateX(-40px) scale(0.9);
}

.reveal.reveal-right {
  transform: perspective(1000px) rotateY(-15deg) translateX(40px) scale(0.9);
}

.reveal.visible {
  opacity: 1;
  transform: perspective(1000px) rotateX(0) rotateY(0) translate(0, 0) scale(1);
}

.reveal.reveal-slide-left {
  transform: translateX(-50px);
}

.reveal.reveal-slide-right {
  transform: translateX(50px);
}

.reveal.reveal-slide-left.visible,
.reveal.reveal-slide-right.visible {
  transform: translate(0, 0);
}

/* ── Why Choose Section ── */
.why-choose-section {
  padding: 0 0 80px;
}

.why-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  color: black;
  max-width: 410px;
  line-height: 1.3;
}

.why-desc {
  color: #717171;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 90%;
}

.arrow-controls a {
  text-decoration: none;
  font-size: 1.2rem;
  margin-right: 15px;
}

.feature-card-lg {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #f3f3f3;
  padding: 15px 20px;
  background: white;
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform, box-shadow;
}

.feature-card-lg:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(10, 60, 148, 0.15);
}

.feature-card-lg img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 24px;
}

.arrow-controls {
  display: flex;
  justify-content: start;
  gap: 26px;
}

.feature-card-lg .content {
  padding: 25px 0;
}

.feature-card-lg h4 {
  font-size: 26px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card-lg p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

.left-content {
  padding-left: max(20px, calc((100% - 1286px) / 2));
  padding-right: 40px;
}

.right-slider {
  padding-right: 0;
}

/* ── Feature Grid ── */
.feature-grid-section {
  padding: 0 0 80px;
}

.feature-grid-card {
  background: #e8f3fa;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  gap: 20px;
  height: 100%;
  align-items: stretch;
}

.feature-grid-card-img {
  width: 200px;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
}

.feature-grid-card .content {
  display: flex;
  flex-direction: column;
}

.feature-grid-card h4 {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: black;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-grid-card p {
  font-size: 18px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

/* ── Tablet Salt Blue Section ── */
.tablet-section {
  background-image: url("image/slider-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0460b7;
  padding: 100px 0 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tabletSwiper {
  padding: 20px 0;
}
.tabletSwiper .swiper-wrapper {
  align-items: center;
}
.tabletSwiper .swiper-slide {
  transition: all 0.5s ease;
  opacity: 1;
  transform: scale(0.65);
}
.tabletSwiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.tabletSwiper .slider-img {
  max-width: 75%;
  height: auto;
}
.tabletSwiper .bag-img {
  max-height: 480px;
}
.tablet-prev,
.tablet-next {
  color: white;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  opacity: 0.7;
  transition:
    opacity 0.3s,
    background 0.3s;
}
.tablet-prev:hover,
.tablet-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}
.tablet-prev {
  left: 2%;
}
.tablet-next {
  right: 2%;
}
.tablet-prev::after,
.tablet-next::after {
  display: none;
}
.tablet-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0) 70%
  );
}
.tablet-bg-circle-1 {
  top: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
}
.tablet-bg-circle-2 {
  top: -50px;
  right: 5%;
  width: 400px;
  height: 400px;
}
.tablet-bg-circle-3 {
  bottom: -100px;
  left: 15%;
  width: 300px;
  height: 300px;
}
.top-badge-custom {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 5px 25px;
  font-weight: 600;
  font-size: 28px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  z-index: 5;
  position: relative;
}
.thin-arrows {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.thin-arrows i {
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.thin-arrows i:hover {
  opacity: 1;
}
.salt-title {
  font-size: 44px;
  font-weight: 400;
  margin: 0 10px;
}
.salt-desc {
  font-size: 24px;
  font-weight: 400;
  width: 70%;
  margin: 0 auto;
}

/* buy button */

.buy-button {
  display: flex;
  justify-content: center;
  position: relative;
  bottom: -30px;
}

.buy-button a {
  color: white;
  font-size: 20px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 16px;
  background-color: #223f81;
  border: 0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.buy-button a:hover {
  transform: translateY(-1px);
  color: white;
}

.products-split {
  padding: 150px 0 80px;
}

.product-box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 26px;
  margin-bottom: 25px;
}

.product-box h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 15px;
}

.product-box p {
  color: #2a2a2a;
  line-height: 1.7;
  font-size: 20px;
  font-weight: 400;
}

/* ── Contact Form ── */
.contact-wrapper {
  position: relative;
  background-color: #e2f5ff;
  border-radius: 46px;
  padding: 60px;
  margin: 40px 0 80px;
}

/* AFTER shadow */
.contact-wrapper::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 7px;
  right: 1px;
  height: 56px;
  background: #223f81;
  border-bottom-left-radius: 52px;
  border-bottom-right-radius: 47px;
  z-index: -1;
}

.contact-info .title {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-info p.desc {
  color: black;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
  word-spacing: 3px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item .icon {
  background-color: white;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--btn-blue);
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item h6 {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 5px;
}

.contact-item p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 25px;
}

.form-group label {
  font-size: 16px;
  font-weight: 600;
  color: #414141;
  margin-bottom: 8px;
}

.form-control {
  background-color: #f6f6f6;
  border: 1px solid #eaeff9;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: var(--btn-blue);
  box-shadow: none;
}

.input-icon-wrapper {
  position: relative;
}

.input-icon-wrapper i {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #aaa;
}
.name-input {
  display: flex;
  align-items: center;
}

.form-icon {
  color: #a7aebd;
  margin-left: -35px;
}

.btn-submit {
  background-color: #294a92;
  color: white;
  border: none;
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #1e366b;
}

/* ── Newsletter ── */
.newsletter-container {
  margin-bottom: 50px;
  padding: 40px 0;
  background-color: #e2f5ff;
}

.newsletter-box {
  background: white;
  border-radius: 50px;
  padding: 8px 8px 8px 25px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.newsletter-box-span {
  font-weight: 500;
  font-size: 18px;
  margin-right: 20px;
  font-family: "Inter", sans-serif;
}

.newsletter-box input {
  border: none;
  outline: none;
  padding: 10px 0;
  width: 250px;
  font-size: 18px;
  font-weight: 500;
}

.btn-newsletter {
  background-color: #2448b5;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

/* ── Footer ── */
.footer {
  background-color: #f2f8ff;
  padding: 30px 0 40px;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-links {
  margin-bottom: 35px;
}

.footer-links a {
  color: #0a142f;
  text-decoration: none;
  margin: 0 30px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--btn-blue) !important;
}

.footer-social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.footer-socials a {
  color: white;
  padding: 5px 7px 4px;
  border-radius: 50%;
  font-size: 1.2rem;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.copyright {
  font-size: 0.8rem;
  color: #999;
}

.terms-content {
  padding: 30px 0;
}

.popup-content {
  padding: 15px;
}
.close-btn {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  float: right;
}

/* popup */
.loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid white;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hidden {
  display: none;
}
/* Popup Modal Styling */
.popup {
  position: fixed;
  right: 20px;
  top: 20px;
  transform: translateX(120%);
  opacity: 0;
  background: linear-gradient(135deg, #1f8f4e 0%, #146c3b 100%);
  color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  text-align: left;
  z-index: 99999;
  font-size: 15px;
  line-height: 1.45;
  min-width: 320px;
  max-width: 420px;
  pointer-events: none;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
  overflow: hidden;
}
.popup.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.popup-content {
  padding: 14px 42px 14px 16px;
}
.close-btn {
  position: absolute;
  right: 12px;
  top: 10px;
  line-height: 1;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
#popupMessage {
  margin: 0;
}
@media (max-width: 576px) {
  .popup {
    right: 12px;
    left: 12px;
    top: 12px;
    min-width: auto;
    max-width: none;
  }
}

/* popup end */

/* ======================================================
   Responsive — shared / index-page styles only
   ====================================================== */

@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .left-content {
    padding-left: max(20px, calc((100% - 1164px) / 2)) !important;
  }

  .tabletSwiper .slider-img {
    max-width: 70%;
  }

  .nav-link {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 1040px;
  }

  .hero p.subtitle {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .hero p.desc {
    font-size: 26px;
    width: 90%;
  }

  .hero h1 {
    font-size: 48px;
  }

  .left-content {
    padding-left: max(20px, calc((100% - 1014px) / 2)) !important;
  }

  .why-title {
    font-size: 34px;
  }

  .feature-grid-card {
    flex-direction: column;
  }

  .feature-grid-card-img {
    width: 100%;
    height: 370px;
    object-position: center;
  }

  .salt-title {
    font-size: 42px;
  }

  .product-box img {
    height: 350px;
  }

  .products-split {
    padding: 80px 0 60px;
  }

  .contact-info .title {
    font-size: 36px;
  }

  .contact-info p.desc {
    font-size: 18px;
  }

  .contact-item p {
    font-size: 18px;
  }

  .footer-links a {
    margin: 0 20px;
  }
  .buy-button a {
    font-size: 18px;
  }

  .product-box h3 {
    font-size: 28px;
  }

  .about-section h2 {
    font-size: 34px;
  }

  .feature-card-lg h4 {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 860px;
    padding: 0 20px;
  }

  .feature-card-lg img {
    height: 245px;
  }

  .contact-wrapper::after {
    height: 29px;
  }

  .nav-link {
    font-size: 15px;
    margin: 0px 10px;
  }

  .btn-contact {
    font-size: 14px;
    padding: 10px 24px;
  }

  .hero-bags {
    width: 90%;
  }

  .btn-white {
    font-size: 18px;
    padding: 12px 32px;
  }

  .left-content {
    padding-left: max(20px, calc((100% - 830px) / 2)) !important;
    padding: 20px;
  }

  .hero {
    padding: 50px 20px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero p.subtitle {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .hero p.desc {
    font-size: 24px;
  }

  .about-section {
    padding: 40px 0 50px;
  }

  .salt-title {
    font-size: 2rem;
  }

  .salt-desc {
    font-size: 22px;
  }

  .why-title {
    max-width: 70%;
  }

  .about-section h2 {
    font-size: 32px;
  }

  .about-text {
    font-size: 16px;
  }

  .swiper {
    width: 90%;
  }

  .feature-grid-card p {
    font-size: 16px;
    font-weight: 300;
  }

  .cards {
    width: 50%;
  }

  .top-badge-custom {
    font-size: 26px;
  }

  .product-box img {
    height: 300px;
  }

  .product-box h3 {
    font-size: 26px;
  }

  .product-box p {
    font-size: 16px;
  }

  .contact-item p {
    font-size: 16px;
  }

  .contact-wrapper {
    margin: 10px 0 60px;
    padding: 30px;
    border-radius: 20px;
  }

  .contact-info .title {
    font-size: 34px;
  }

  .newsletter-container {
    padding: 30px 0;
  }

  .contact-info p.desc {
    font-size: 16px;
    margin-bottom: 0px;
  }

  .contact-item {
    margin-top: 2rem !important;
  }

  .contact-info {
    margin-bottom: 2rem !important;
  }

  .footer-links a {
    margin: 0 10px;
    text-transform: none;
  }

  .copyright {
    margin-top: 0;
  }

  .footer-links {
    margin-bottom: 25px;
  }

  .why-title {
    font-size: 32px;
  }
  .arrow-controls {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .swiper {
    width: 96%;
  }

  .hero {
    box-shadow: 0 20px 60px -5px rgba(62, 116, 210, 0.4);
  }

  .hero h1 {
    font-size: 32px;
  }

  .why-title {
    font-size: 32px;
  }

  .why-desc {
    font-size: 16px;
  }

  .about-us-div {
    margin-bottom: 0 !important;
    border-bottom: 1px solid #f0f0f0;
    border-right: 0;
  }

  .feature-card-lg img {
    height: 300px;
  }

  .why-choose-section {
    padding: 0 0 50px;
  }

  .hero p.subtitle {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .hero p.desc {
    font-size: 20px;
    margin: 10px auto 22px;
  }

  .btn-white {
    font-size: 14px;
  }

  .about-logo {
    padding: 40px 0;
  }

  .product-box img {
    height: 500px;
  }

  .product-box p {
    font-size: 16px;
  }

  .products-split {
    padding: 80px 0 30px;
  }

  .contact-info .title {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .contact-info p.desc {
    font-size: 16px;
    margin-bottom: 0;
  }

  .contact-item {
    margin: 32px 0 20px !important;
  }

  .contact-item h6 {
    font-size: 20px;
  }

  .btn-submit {
    font-weight: 600;
  }

  .newsletter-box {
    padding: 2px 8px 2px 25px;
    flex-direction: row;
    border-radius: 50px;
    gap: 15px;
  }

  .newsletter-box input {
    font-size: 16px;
    padding: 0;
    width: 100%;
  }

  .newsletter-container {
    padding: 20px 0;
    margin-bottom: 36px;
  }

  .newsletter-box-span {
    display: block;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .btn-newsletter {
    width: 45px;
    height: 40px;
  }

  .footer-links a {
    margin: 0;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .footer-social-media {
    flex-direction: column;
    gap: 14px;
  }

  .thin-arrows {
    display: none;
  }

  .why-title {
    max-width: 90%;
  }
  .feature-grid-card .content {
    padding: 10px;
  }

  .feature-grid-card {
    gap: 14px;
  }

  .feature-grid-section .row {
    gap: 16px;
  }

  .cards {
    width: 100%;
  }

  .buy-button a {
    font-size: 16px;
  }

  .feature-grid-section {
    border-bottom-left-radius: 24px !important;
    border-bottom-right-radius: 24px !important;
  }
  .products-split {
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
  }

  .salt-desc {
    width: 94%;
    margin-bottom: 1.5rem !important;
    font-size: 18px;
  }

  .feature-grid-card-img {
    width: 100%;
    height: 350px;
  }

  .swiper {
    width: 96%;
  }
}

@media (max-width: 576px) {
  .product-box img {
    height: 330px;
  }

  .why-title {
    max-width: 100%;
  }

  .why-desc {
    max-width: 98%;
  }

  .feature-grid-card {
    flex-direction: column;
    padding: 15px;
  }

  .feature-grid-card-img {
    width: 100%;
    height: 234px;
  }
}

@media (max-width: 526px) {
  .swiper {
    width: 100%;
  }

  .product-box h3 {
    font-size: 24px;
  }

  .salt-title {
    font-size: 1.7rem;
  }

  .salt-desc {
    font-size: 16px;
  }

  .why-title {
    max-width: 100%;
  }

  .hero-bags {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero p.subtitle {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .hero p.desc {
    font-size: 16px;
  }

  .about-section h2 {
    font-size: 26px;
  }

  .about-section {
    padding: 24px 0 30px;
  }

  .why-title {
    font-size: 26px;
  }

  .feature-card-lg h4 {
    font-size: 24px;
  }

  .feature-card-lg p {
    font-size: 16px;
  }

  .top-badge-custom {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .salt-desc {
    font-size: 15px;
    margin-bottom: 1.8rem !important;
  }

  .contact-info .title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .contact-info p.desc {
    font-size: 14px;
  }

  .contact-item h6 {
    font-size: 18px;
  }

  .contact-item p {
    font-size: 14px;
  }

  .contact-form h3 {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .btn-submit {
    padding: 12px;
  }

  .footer-logo img {
    max-width: 190px;
  }

  .footer-links {
    padding: 0;
  }

  .btn-white {
    padding: 12px 32px;
    font-size: 14px;
  }
  .contact-form {
    padding: 18px;
  }
  .form-control {
    font-size: 14px;
  }

  .contact-container {
    padding: 0px !important;
  }
  .contact-wrapper {
    border-radius: 0px;
  }
  .contact-wrapper::after {
    display: none;
  }
  .buy-button a {
    font-size: 14px;
  }
}
