/* Samsung One Regular */

@font-face {
  font-family: "SamsungOne";
  src: url("../assets/fonts/SamsungOne-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Samsung One Bold */

@font-face {
  font-family: "SamsungOne";
  src: url("../assets/fonts/SamsungOne-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Samsung Sharp Sans Bold */

@font-face {
  font-family: "Samsung Sharp Sans";
  src:
    url("../assets/fonts/SamsungSharpSans-Bold.woff2") format("woff2"),
    url("../assets/fonts/SamsungSharpSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

#samsung-lp-s26 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#samsung-lp-s26 section {
  max-width: 1400px;
  width: 100%;
}
/* ================= HERO ================= */

#samsung-lp-s26 #hero {
  background: #fff;
  padding: 60px 20px;
}

#samsung-lp-s26 #hero .hero__container {
  margin: 0 auto;
}

/* phone */

#samsung-lp-s26 #hero .hero__image {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

#samsung-lp-s26 #hero .hero__image img {
  max-width: 320px;
  width: 100%;
}

/* features */

#samsung-lp-s26 #hero .hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: center;
}

#samsung-lp-s26 #hero .feature img {
  width: 148px;
  margin-bottom: 12px;
}

#samsung-lp-s26 #hero .feature p {
  font-family: "Samsung Sharp Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.33;
}

#samsung-lp-s26 #hero .feature {
  transition: transform 0.2s ease;
}

#samsung-lp-s26 #hero .feature:hover {
  transform: translateY(-6px);
}

/* hero desktop */

@media (min-width: 1024px) {
  #samsung-lp-s26 #hero .hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  #samsung-lp-s26 #hero .hero__image {
    flex: 1;
    margin-bottom: 0;
  }

  #samsung-lp-s26 #hero .hero__image img {
    max-width: 620px;
  }

  #samsung-lp-s26 #hero .hero__features {
    flex: 1;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

/* ================= KV ================= */

#samsung-lp-s26 #kv {
  width: 100%;
  overflow: hidden;
}

#samsung-lp-s26 #kv .kv__img {
  width: 100%;
  display: block;
}

/* mobile default */

#samsung-lp-s26 #kv .kv__img--desktop {
  display: none;
}

@media (min-width: 768px) {
  #samsung-lp-s26 #kv .kv__img--mobile {
    display: none;
  }

  #samsung-lp-s26 #kv .kv__img--desktop {
    display: block;
  }
}

/* ================= FEATURES GRID ================= */

#samsung-lp-s26 #features {
  background: #000;
  padding: 24px;
}

#samsung-lp-s26 #features .features__container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

#samsung-lp-s26 #features .feature-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

#samsung-lp-s26 #features .feature-card img {
  width: 100%;
  /* display:block; */
}

/* image switch */

#samsung-lp-s26 #features .img-desktop {
  display: none;
}

@media (min-width: 768px) {
  #samsung-lp-s26 #features .features__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  #samsung-lp-s26 #features .img-mobile {
    display: none;
  }

  #samsung-lp-s26 #features .img-desktop {
    display: block;
  }
}

/* card text */

#samsung-lp-s26 #features .feature-card .feature-card--text {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;

  color: #fff;
  font-family: SamsungOne;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  line-height: normal;
  text-align: center;
  text-wrap: nowrap;
  z-index: 2;
}

/* ================= DETAILS ================= */

#samsung-lp-s26 .details {
  background: #000;
  color: #fff;
  padding: 24px;
  text-align: center;
}

#samsung-lp-s26 .details .details__container {
  max-width: 900px;
  margin: 0 auto 40px;
}

#samsung-lp-s26 .details .details__title {
  font-family: "Samsung Sharp Sans";
  font-size: clamp(32px, 2.5vw, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

#samsung-lp-s26 .details .details__text {
  font-family: SamsungOne;
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 400;
  line-height: normal;
  opacity: 0.9;
}

/* image */

#samsung-lp-s26 .details .details__image {
  width: 100%;
}

#samsung-lp-s26 .details .details__image img {
  width: 100%;
}

/* mobile */

#samsung-lp-s26 .details .details-img-desktop {
  display: none;
}

#samsung-lp-s26 .details .details-img-mobile {
  border-radius: 28px;
  overflow: hidden;
}

/* desktop */

@media (min-width: 768px) {
  #samsung-lp-s26 .details .details__title {
    font-size: 52px;
  }

  #samsung-lp-s26 .details .details-img-mobile {
    display: none;
  }

  #samsung-lp-s26 .details .details-img-desktop {
    display: block;
  }
}

/* ================= PRIVACY ================= */

#samsung-lp-s26 #main-img {
  width: 100%;
  overflow: hidden;
  padding: 24px;
  background-color: #fff;
}

#samsung-lp-s26 #main-img .kv__img {
  width: 100%;
  display: block;
}

/* mobile default */

#samsung-lp-s26 #main-img .kv__img--desktop {
  display: none;
}

@media (min-width: 768px) {
  #samsung-lp-s26 #main-img .kv__img--mobile {
    display: none;
  }

  #samsung-lp-s26 #main-img .kv__img--desktop {
    display: block;
  }
}

#samsung-lp-s26 #galaxy-ai2 {
  background-color: #fff;
  color: #000;
}
#samsung-lp-s26 #galaxy-ai2 .details__image {
  padding: 24px;
}

#samsung-lp-s26 #galaxy-ai2 .details__container .details__title {
  padding-top: 30px;
}

/* ================= EXPERIENCE ================= */

#samsung-lp-s26 #experience {
  background: #fff;
  padding: 0 24px;
}

#samsung-lp-s26 #experience .experience__container {
  max-width: 1400px;
  margin: auto;
}

/* cards */

#samsung-lp-s26 #experience .exp-card {
  background: #fff;
  border-radius: 28px;
  padding: 20px;
  text-align: center;
}

#samsung-lp-s26 #experience .exp-card img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

#samsung-lp-s26 #experience .exp-card h3 {
  font-family: "Samsung Sharp Sans";
  font-weight: 700;
  font-size: clamp(26px, 2.5vw, 32px);
  line-height: clamp(1.2, 1.25vw, 1.33);
  margin-bottom: 16px;
}

#samsung-lp-s26 #experience .exp-card p {
  font-family: "SamsungOne";
  font-style: normal;
  font-weight: 400;

  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.33;
  margin-bottom: 20px;
}

#samsung-lp-s26 #experience .exp-card a {
  font-family: "SamsungOne";
  font-style: normal;
  font-weight: 700;

  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.33;
  text-decoration: none;
  color: #000;
}
#samsung-lp-s26 #experience .swiper-pagination {
  position: relative;
  margin-top: 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 10px;
  max-width: 90px;
  background: #e6e6e6;
  border-radius: 30px;
}
#samsung-lp-s26 #experience .swiper-pagination-bullet {
  width: 12px;
  height: 12px;

  margin: 0 6px;

  background: #bfbfbf;
  opacity: 1;

  border-radius: 50%;

  transition: all 0.25s ease;
}
#samsung-lp-s26 #experience .swiper-pagination-bullet-active {
  background: #000;
}
#samsung-lp-s26 #experience .swiper-pagination-bullet-active {
  transform: scale(1.1);
}
/* pagination */

#samsung-lp-s26 #experience .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

/* desktop */

@media (min-width: 768px) {
  #samsung-lp-s26 #experience .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  #samsung-lp-s26 #experience .swiper-pagination {
    display: none;
  }
}
/* arrows */

#samsung-lp-s26 #experience .experience-arrow img {
  width: 7px;
}

/* remove default swiper arrows */

#samsung-lp-s26 #experience .experienceSwiper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#samsung-lp-s26 #experience .experience-arrow {
  position: absolute;
  top: 35%; /* aligns with image center */
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(228, 228, 228, 0.53);
  border-style: solid 1px;
  z-index: 10;
}

#samsung-lp-s26 #experience .experience-arrow-prev {
  left: 10px;
  transform: translateY(-50%) rotate(180deg);
}

#samsung-lp-s26 #experience .experience-arrow-next {
  right: 10px;
}

#samsung-lp-s26 #experience .swiper-button-prev::after,
#samsung-lp-s26 #experience .swiper-button-next::after {
  display: none;
}

@media (min-width: 768px) {
  #samsung-lp-s26 #experience .experience-arrow {
    display: none;
  }
}

/* ================= PRODUCTS ================= */

#samsung-lp-s26 #products {
  background: #fff;
  padding: 24px;
}

#samsung-lp-s26 #products .products__container {
  max-width: 1400px;
  margin: auto;
}

/* ---------------- MAIN PRODUCT ---------------- */

#samsung-lp-s26 #products .products__main {
  text-align: center;
  margin-bottom: 60px;
}

/* mobile image default */

#samsung-lp-s26 #products .products-img-desktop {
  display: none;
}

#samsung-lp-s26 #products .products-img-mobile {
  max-width: 600px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

/* title */

#samsung-lp-s26 #products .products__main h3 {
  font-family: "Samsung Sharp Sans";
  font-style: normal;
  font-weight: 700;

  font-size: clamp(16px, 2vw, 20px);
  line-height: clamp(1, 1.03vw, 1.064);
  margin-bottom: 16px;
  font-weight: 700;
}

/* button */

#samsung-lp-s26 #products .products__btn {
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid #000;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-family: "SamsungOne";
  font-style: normal;
  font-weight: 700;

  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.33;
  transition: all 0.25s ease;
}

#samsung-lp-s26 #products .products__btn:hover {
  background: #000;
  color: #fff;
}

/* ---------------- GRID ---------------- */
#samsung-lp-s26 #products .products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

/* card */

#samsung-lp-s26 #products .product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* image switching */

#samsung-lp-s26 #products .product-card .img-desktop {
  display: none;
}

#samsung-lp-s26 #products .product-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-bottom: 12px;
}

/* title */

#samsung-lp-s26 #products .product-card h4 {
  font-family: "Samsung Sharp Sans";
  font-style: normal;
  font-weight: 700;

  font-size: clamp(16px, 2vw, 20px);
  line-height: clamp(1, 1.03vw, 1.064);
  margin-bottom: 12px;
  font-weight: 700;
}

/* card button */

#samsung-lp-s26 #products .product-card a {
  display: inline-block;
  padding: 8px 22px;
  border: 1px solid #000;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-family: "SamsungOne";
  font-style: normal;
  font-weight: 700;

  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.33;
  transition: all 0.25s ease;
}

#samsung-lp-s26 #products .product-card a:hover {
  background: #000;
  color: #fff;
}

/* ---------------- DESKTOP ---------------- */

@media (min-width: 768px) {
  #samsung-lp-s26 #products {
    padding: 120px 20px;
  }

  #samsung-lp-s26 #products .products__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 24px;
  }

  /* image switch */

  #samsung-lp-s26 #products .products-img-mobile {
    display: none;
  }

  #samsung-lp-s26 #products .products-img-desktop {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  /* grid */

  #samsung-lp-s26 #products .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* card images */

  #samsung-lp-s26 #products .product-card .img-mobile {
    display: none;
  }

  #samsung-lp-s26 #products .product-card .img-desktop {
    display: block;
  }
}

/* ================= BUSINESS ================= */

#samsung-lp-s26 #why_business {
  position: relative;
  width: 100%;
  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("../assets/img/buisness-pc.png");
  background-size: cover;
  background-position: center;
}

/* overlay */

/* content */

#samsung-lp-s26 #why_business .why_business__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  color: #fff;
}

/* title */

#samsung-lp-s26 #why_business h2 {
  font-family: "Samsung Sharp Sans";
  font-style: normal;
  font-weight: 700;

  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.25;
  margin-bottom: 20px;
}

/* text */

#samsung-lp-s26 #why_business p {
  font-family: "SamsungOne";
  font-style: normal;
  font-weight: 400;

  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.33;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* button */

#samsung-lp-s26 #why_business .why_business__btn {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid #fff;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  font-family: "SamsungOne";
  font-style: normal;
  font-weight: 700;

  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 16px;
  transition: all 0.25s ease;
}

#samsung-lp-s26 #why_business .why_business__btn:hover {
  background: #fff;
  color: #000;
}

/* ================= PERFORMANCE ================= */

#samsung-lp-s26 #performance {
  background: #000;
  color: #fff;
  padding: 80px 20px 0;
  text-align: center;
}

#samsung-lp-s26 #performance .performance__container {
  max-width: 900px;
  margin: 0 auto;
}

#samsung-lp-s26 #performance .performance__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Samsung Sharp Sans";
}

/* tabs */

#samsung-lp-s26 #performance .performance__tabs {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 10px;
  font-family: SamsungOne;
  margin-bottom: 40px;
}

#samsung-lp-s26 #performance .performance__tab:first-child {
  grid-column: 1 / -1;
  justify-self: center;
}

#samsung-lp-s26 #performance .performance__tab {
  background: transparent;
  color: #fff;
  font-family: SamsungOne;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

#samsung-lp-s26 #performance .performance__tab:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

#samsung-lp-s26 #performance .performance__tab--active {
  border-color: #2e82ff;
  background: linear-gradient(
    135deg,
    rgba(41, 88, 255, 0.15),
    rgba(100, 60, 255, 0.15)
  );
}

/* content panels */

#samsung-lp-s26 #performance .performance__content {
  display: none;
}

#samsung-lp-s26 #performance .performance__content--active {
  display: block;
}

#samsung-lp-s26 #performance .performance__content-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Samsung Sharp Sans";
}

#samsung-lp-s26 #performance .performance__content-text {
  font-size: 16px;
  line-height: 1.35;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 40px;
  font-family: SamsungOne;
}

#samsung-lp-s26 #performance .performance__image {
  width: 100%;
  display: none;
}

#samsung-lp-s26 #performance .performance__image--active {
  display: block;
}

#samsung-lp-s26 #performance .performance__image img {
  width: 100%;
  display: block;
}

#samsung-lp-s26 #performance .performance__image[data-image="processor"] img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (min-width: 768px) {
  #samsung-lp-s26 #performance .performance__image[data-image="processor"] img {
    aspect-ratio: auto;
    object-fit: initial;
  }
}

/* desktop */

@media (min-width: 768px) {
  #samsung-lp-s26 #performance {
    padding: 120px 20px 0;
  }

  #samsung-lp-s26 #performance .performance__title {
    font-size: 52px;
  }

  #samsung-lp-s26 #performance .performance__content-title {
    font-size: 40px;
  }

  #samsung-lp-s26 #performance .performance__content-text {
    font-size: 18px;
  }

  #samsung-lp-s26 #performance .performance__tab {
    font-size: 16px;
    padding: 12px 32px;
  }

  #samsung-lp-s26 #performance .performance__tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  #samsung-lp-s26 #performance .performance__tab:first-child {
    grid-column: auto;
    justify-self: auto;
  }

  #samsung-lp-s26 #performance .mobile-br {
    display: none;
  }
}

/* ================= CAMERA (APARAT) ================= */

#samsung-lp-s26 #camera {
  background: #000;
  color: #fff;
  padding: 80px 20px 0;
  text-align: center;
}

#samsung-lp-s26 #camera .camera__container {
  max-width: 900px;
  margin: 0 auto;
}

#samsung-lp-s26 #camera .camera__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Samsung Sharp Sans";
}

/* tabs */

#samsung-lp-s26 #camera .camera__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

#samsung-lp-s26 #camera .camera__tab {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: SamsungOne;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

#samsung-lp-s26 #camera .camera__tab:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

#samsung-lp-s26 #camera .camera__tab--active {
  border-color: #2e82ff;
  background: linear-gradient(
    135deg,
    rgba(41, 88, 255, 0.15),
    rgba(100, 60, 255, 0.15)
  );
}

/* content panels */

#samsung-lp-s26 #camera .camera__content {
  display: none;
}

#samsung-lp-s26 #camera .camera__content--active {
  display: block;
}

#samsung-lp-s26 #camera .camera__content-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Samsung Sharp Sans";
}

#samsung-lp-s26 #camera .camera__content-text {
  font-size: 16px;
  line-height: 1.35;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 40px;
  font-family: SamsungOne;
}

#samsung-lp-s26 #camera .camera__image {
  width: 100%;
  display: none;
}

#samsung-lp-s26 #camera .camera__image--active {
  display: block;
}

#samsung-lp-s26 #camera .camera__image img {
  width: 100%;
  display: block;
}

/* desktop */

@media (min-width: 768px) {
  #samsung-lp-s26 #camera {
    padding: 120px 20px 0;
  }

  #samsung-lp-s26 #camera .camera__title {
    font-size: 52px;
  }

  #samsung-lp-s26 #camera .camera__content-title {
    font-size: 40px;
  }

  #samsung-lp-s26 #camera .camera__content-text {
    font-size: 18px;
  }

  #samsung-lp-s26 #camera .camera__tab {
    font-size: 16px;
    padding: 12px 32px;
  }
}

/* ================= GALAXY AI ================= */

#samsung-lp-s26 #galaxy-ai {
  background: #000;
  color: #fff;
  padding: 80px 20px 0;
  text-align: center;
}

#samsung-lp-s26 #galaxy-ai .galaxy-ai__container {
  max-width: 900px;
  margin: 0 auto;
}

#samsung-lp-s26 #galaxy-ai .galaxy-ai__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Samsung Sharp Sans";
}

/* tabs */

#samsung-lp-s26 #galaxy-ai .galaxy-ai__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

#samsung-lp-s26 #galaxy-ai .galaxy-ai__tab {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: "SamsungOne";
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

#samsung-lp-s26 #galaxy-ai .galaxy-ai__tab:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

#samsung-lp-s26 #galaxy-ai .galaxy-ai__tab--active {
  border-color: #2e82ff;
  background: linear-gradient(
    135deg,
    rgba(41, 88, 255, 0.15),
    rgba(100, 60, 255, 0.15)
  );
}

/* content panels */

#samsung-lp-s26 #galaxy-ai .galaxy-ai__content {
  display: none;
}

#samsung-lp-s26 #galaxy-ai .galaxy-ai__content--active {
  display: block;
}

#samsung-lp-s26 #galaxy-ai .galaxy-ai__content-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Samsung Sharp Sans";
}

#samsung-lp-s26 #galaxy-ai .galaxy-ai__content-text {
  font-size: 16px;
  line-height: 1.35;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 40px;
  font-family: "SamsungOne";
}

#samsung-lp-s26 #galaxy-ai .galaxy-ai__image {
  width: 100%;
  display: none;
}

#samsung-lp-s26 #galaxy-ai .galaxy-ai__image--active {
  display: block;
}

#samsung-lp-s26 #galaxy-ai .galaxy-ai__image img {
  width: 100%;
}

/* desktop */

@media (min-width: 768px) {
  #samsung-lp-s26 #galaxy-ai {
    padding: 120px 20px 0;
  }

  #samsung-lp-s26 #galaxy-ai .galaxy-ai__title {
    font-size: 52px;
  }

  #samsung-lp-s26 #galaxy-ai .galaxy-ai__content-title {
    font-size: 40px;
  }

  #samsung-lp-s26 #galaxy-ai .galaxy-ai__content-text {
    font-size: 18px;
  }

  #samsung-lp-s26 #galaxy-ai .galaxy-ai__tab {
    font-size: 16px;
    padding: 12px 32px;
  }

  #samsung-lp-s26 #galaxy-ai .galaxy-ai__tabs {
    display: flex;
    flex-wrap: wrap;
  }
}

/* mobile default */
#samsung-lp-s26 #galaxy-ai .galaxy-ai__img-desktop {
  display: none;
}

/* desktop */
@media (min-width: 768px) {
  #samsung-lp-s26 #galaxy-ai .galaxy-ai__img-mobile {
    display: none;
  }

  #samsung-lp-s26 #galaxy-ai .galaxy-ai__img-desktop {
    display: block;
  }
}
/* ================= BUSINESS (ROZWIJAJ SWÓJ BIZNES) ================= */

#samsung-lp-s26 #business {
  background: #fff;
  color: #000;
  padding: 60px 20px 40px;
  text-align: center;
  position: relative;
}

/* TITLE */

#samsung-lp-s26 #business .business__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
  font-family: "Samsung Sharp Sans";
}

/* ================= MOBILE CAROUSEL ================= */

#samsung-lp-s26 #business .business__cards {
  position: relative;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 20px;
}

#samsung-lp-s26 #business .business__cards::-webkit-scrollbar {
  display: none;
}

#samsung-lp-s26 #business .business__card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  text-align: center;
}

/* CARD IMAGE */

#samsung-lp-s26 #business .business__card-image {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#samsung-lp-s26 #business .business__card-image img {
  max-width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
}

/* CARD TEXT */

#samsung-lp-s26 #business .business__card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Samsung Sharp Sans";
}

#samsung-lp-s26 #business .business__card-text {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.7;
  margin-bottom: 12px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  font-family: "SamsungOne";
}

#samsung-lp-s26 #business .business__card-link {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  font-family: "SamsungOne";
}

/* ================= CONTROLS ================= */

#samsung-lp-s26 #business .business__controls {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ARROWS */

#samsung-lp-s26 #business .business__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 37px;
  height: 37px;

  border-radius: 50%;
  border: none;
  background: #e6e6e6;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

#samsung-lp-s26 #business .business__arrow img {
  width: 10px;
}

#samsung-lp-s26 #business .business__arrow--prev {
  left: 0;
}

#samsung-lp-s26 #business .business__arrow--next {
  right: 0;
}

#samsung-lp-s26 #business .business__arrow--prev img {
  transform: rotate(180deg);
}

/* DOT PAGINATION */

#samsung-lp-s26 #business .business__dots-wrapper {
  background: #e6e6e6;
  border-radius: 30px;
  padding: 6px 14px;
}

#samsung-lp-s26 #business .business__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

#samsung-lp-s26 #business .business__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bfbfbf;
  cursor: pointer;
}

#samsung-lp-s26 #business .business__dot--active {
  background: #000;
}

/* ================= DESKTOP ================= */

@media (min-width: 768px) {
  #samsung-lp-s26 #business {
    padding: 80px 20px 60px;
  }

  #samsung-lp-s26 #business .business__title {
    font-size: 42px;
    margin-bottom: 40px;
  }

  #samsung-lp-s26 #business .business__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 0;
  }

  #samsung-lp-s26 #business .business__card {
    flex: none;
  }

  #samsung-lp-s26 #business .business__card-image {
    padding: 32px;
  }

  #samsung-lp-s26 #business .business__card-image img {
    max-height: 300px;
  }

  #samsung-lp-s26 #business .business__card-title {
    font-size: 26px;
  }

  #samsung-lp-s26 #business .business__card-text {
    font-size: 15px;
  }

  /* hide mobile carousel controls */

  #samsung-lp-s26 #business .business__controls {
    display: none;
  }
}

/* ================= DISCLAMIER ================= */

.samsung-lp-s26-disclaimer {
  background: #f4f4f4;
  padding: 50px 0;
}

.samsung-lp-s26-disclaimer-text {
  width: 100%;
  max-width: 1392px;
  margin: 0 auto;
  font-family: 'SamsungOne', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.83333333vw;
  line-height: 1.33;
  color: #000000;
}

.samsung-lp-s26-disclaimer-text p {
  line-height: 1.33;
}

.samsung-lp-s26-disclaimer-text p:last-child {
  margin-bottom: 0;
}

/* Disclaimer Section Responsive */
@media (max-width: 960px) {
  .samsung-lp-s26-disclaimer {
    padding: 40px 0;
  }

  .samsung-lp-s26-disclaimer-text {
    font-size: 10px;
    line-height: 18px;
  }

  /* .samsung-lp-s26-disclaimer-text p {
    margin-bottom: 12px;
  } */
}

