/* =========== articles ============ */

:root {
  /* --bg: #000000; */
  --text: #ffffff;
  --date: #f5b640;
  --overlay-red-1: rgba(110, 0, 0, 0.1);
  --overlay-red-2: rgba(160, 0, 0, 0.28);
  --overlay-red-3: rgba(190, 0, 0, 0.58);
  --overlay-red-4: rgba(210, 0, 0, 0.82);
}

body {
  margin: 0;
  background: white;
  font-family: Arial, Helvetica, sans-serif;
}

.articles-page {
  background: white;
}
.article-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
}

.article-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  min-height: 330px;
  background: #111;
  text-decoration: none;
}

.article-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.article-card:hover img {
  transform: scale(1.04);
}

.article-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--overlay-red-4) 0%,
    var(--overlay-red-3) 22%,
    var(--overlay-red-2) 45%,
    rgba(0, 0, 0, 0.18) 70%,
    rgba(255, 255, 255, 0.1) 100%
  );
  z-index: 1;
}

.article-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 2;
}

.article-content h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 600;
}

.article-content p {
  margin: 0;
  color: #f1bf42;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1399.98px) {
  .article-card,
  .article-card img {
    min-height: 300px;
    height: 300px;
  }

  .article-content h3 {
    font-size: 17px;
  }
}

@media (max-width: 991.98px) {
  .article-card,
  .article-card img {
    min-height: 290px;
    height: 290px;
    border-radius: 22px;
  }

  .article-content {
    left: 18px;
    right: 18px;
    bottom: 16px;
  }

  .article-content h3 {
    font-size: 16px;
  }

  .article-content p {
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  .article-card,
  .article-card img {
    min-height: 270px;
    height: 270px;
    border-radius: 20px;
  }

  .article-content h3 {
    font-size: 15px;
    line-height: 1.3;
  }

  .article-content p {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .article-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .articles-page {
    padding-top: 18px !important;
    padding-bottom: 24px !important;
  }

  .article-card,
  .article-card img {
    min-height: 240px;
    height: 240px;
    border-radius: 18px;
  }

  .article-content {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  .article-content h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .article-content p {
    font-size: 11px;
  }
}
/*  ============== news letter search sec =========== */
.article-newsletter-section {
  background: white;
  padding-top: 30px;
  padding-bottom: 40px;
}

.article-newsletter-row {
  align-items: center;
}

.article-newsletter-text {
  line-height: 1.1;
  max-width: 404px;
}

.article-newsletter-text h3 {
  color: #000000;
  font-size: 28px;
  font-weight: 600;
  /* line-height: 1.1; */
  /* max-width: 650px; */
  letter-spacing: -0.03em;
}

.article-newsletter-text p {
  color: #3b3b3b;
  font-size: 18px;
  font-weight: 400;
  /* line-height: 1.1; */
  /* max-width: 650px; */
  letter-spacing: -0.03em;
}

.article-newsletter-form {
  background: #ffffff;
  border: 1px solid #dfdfdf;
  border-radius: 22px;
  padding: 5px 8px 5px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.14);
}

.article-newsletter-input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  color: #222;
  font-size: 20px;
  font-weight: 400;
  min-width: 0;
}

.article-newsletter-input::placeholder {
  color: #bdbdbd;
}

.article-newsletter-btn {
  border: 0;
  outline: none;
  background: #000;
  color: #fff;
  border-radius: 18px;
  padding: 18px 42px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.article-newsletter-btn:hover {
  background: #111;
}

@media (max-width: 1399.98px) {
  .article-newsletter-text {
    font-size: 24px;
    max-width: 580px;
  }

  .article-newsletter-input {
    font-size: 18px;
  }

  .article-newsletter-btn {
    font-size: 18px;
    padding: 16px 34px;
  }
}

@media (max-width: 991.98px) {
  .article-newsletter-section {
    padding-top: 24px;
    padding-bottom: 34px;
  }

  .article-newsletter-text {
    font-size: 22px;
    max-width: 100%;
    text-align: center;
  }

  .article-newsletter-form {
    border-radius: 20px;
    padding: 12px 12px 12px 18px;
  }

  .article-newsletter-input {
    font-size: 17px;
  }

  .article-newsletter-btn {
    font-size: 17px;
    padding: 15px 28px;
    border-radius: 16px;
  }
}

@media (max-width: 767.98px) {
  .article-newsletter-section {
    padding-top: 20px;
    padding-bottom: 28px;
  }

  .article-newsletter-text {
    font-size: 18px;
    line-height: 1.25;
    text-align: center;
  }

  .article-newsletter-form {
    padding: 10px 10px 10px 14px;
    border-radius: 18px;
    gap: 10px;
  }

  .article-newsletter-input {
    font-size: 15px;
  }

  .article-newsletter-btn {
    font-size: 15px;
    padding: 13px 20px;
    border-radius: 14px;
  }
}

@media (max-width: 575.98px) {
  .article-newsletter-row {
    gap: 16px;
  }

  .article-newsletter-text {
    font-size: 16px;
  }

  .article-newsletter-form {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 16px;
  }

  .article-newsletter-input {
    width: 100%;
    min-height: 46px;
    font-size: 15px;
  }

  .article-newsletter-btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 12px;
  }
}

/* =========  our stores ========== */

body {
  margin: 0;
  background: white;
  font-family: Arial, Helvetica, sans-serif;
}

.stores-banner-wrap {
  /* width: 100%; */
  margin: 20px 45px 30px 45px;
  line-height: 0;
}

.stores-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.stores-page {
  background: #f9f9f9;
  padding: 24px 0 40px;
}

.stores-subheading {
  color: #3b3b3b;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 18px;
}

.stores-search-wrap {
  margin-bottom: 26px;
}

.stores-search {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 0 22px 0 62px;
  /* box-shadow: 0 8px 100px rgba(255, 255, 255, 0.08); */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  min-height: 60px;
  display: flex;
  align-items: center;
}

.stores-search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #111;
}

.stores-search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 18px;
  color: #222;
}

.stores-search input::placeholder {
  color: #b2b2b2;
}

.store-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  /* border: 1px solid #222; */
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.store-image-wrap {
  padding: 18px 18px 0;
}

.store-image {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.store-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.store-title {
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.store-address {
  font-size: 14px;
  color: #888888;
  line-height: 1.7;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.store-address strong {
  color: #5d5d5d;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.store-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.store-btn {
  height: 52px;
  border-radius: 12px;
  border: 1.5px solid #222;
  background: #fff;
  color: #111;
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: 0.2s ease;
}

.store-btn:hover {
  background: #f6f6f6;
  color: #111;
}

.store-btn-red {
  background: #a90808;
  border-color: #a90808;
  color: #fff;
}

.store-btn-red:hover {
  background: #990505;
  border-color: #990505;
  color: #fff;
}

.store-btn i {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 1399.98px) {
  .stores-banner-wrap {
    /* width: 100%; */
    margin: 20px 28px 30px 28px;
    line-height: 0;
  }
  .stores-heading {
    font-size: 30px;
  }

  .store-image {
    height: 220px;
  }

  .store-title {
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
  .stores-page {
    padding: 22px 0 34px;
  }

  .stores-heading {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .stores-search {
    min-height: 68px;
    border-radius: 16px;
    padding-left: 56px;
  }

  .stores-search-icon {
    left: 20px;
    font-size: 24px;
  }

  .stores-search input {
    font-size: 16px;
  }

  .store-image {
    height: 230px;
  }

  .store-title {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  .stores-banner-wrap {
    /* width: 100%; */
    margin: 20px 16px 30px 16px;
    line-height: 0;
  }
  .stores-heading {
    font-size: 24px;
  }

  .stores-search-wrap {
    margin-bottom: 20px;
  }

  .stores-search {
    min-height: 60px;
    padding: 0 16px 0 50px;
  }

  .stores-search-icon {
    left: 18px;
    font-size: 22px;
  }

  .stores-search input {
    font-size: 15px;
  }

  .store-image-wrap {
    padding: 14px 14px 0;
  }

  .store-image {
    height: 210px;
    border-radius: 10px;
  }

  .store-body {
    padding: 16px 14px 18px;
  }

  .store-title {
    font-size: 18px;
  }

  .store-address {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .store-actions {
    grid-template-columns: 1fr;
  }

  .store-btn {
    font-size: 16px;
    height: 48px;
  }
}

@media (max-width: 575.98px) {
  .stores-page {
    padding: 18px 0 26px;
  }

  .stores-heading {
    font-size: 22px;
  }

  .store-image {
    height: 190px;
  }

  .store-title {
    font-size: 17px;
  }

  .store-address {
    font-size: 12.5px;
  }
}

/* =========== corporate client ======= */

body {
  margin: 0;
  background: white;
  font-family: Arial, Helvetica, sans-serif;
}

.corporate-page {
  background: #f9f9f9;
  padding: 28px 0 50px;
  color: #fff;
}

.corporate-heading {
  color: #d00000;
  font-size: 68px;
  font-weight: 400;
  line-height: 0.95;
  margin: 0 0 10px;
}

.corporate-heading-line {
  width: 100%;
  max-width: 650px;
  height: 3px;
  background: #d00000;
  margin-bottom: 32px;
}

.corporate-text {
  color: #2f2f2f;
  font-size: 28px;
  line-height: 1.28;
  font-weight: 500;
  max-width: 980px;
}

.corporate-text p {
  margin-bottom: 28px;
}

.corporate-btn {
  display: inline-block;
  background: #c90000;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  padding: 18px 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  transition: 0.25s ease;
}

.corporate-btn:hover {
  background: #ae0000;
  color: #fff;
}

.corporate-image-wrap {
  display: flex;
  justify-content: flex-end;
}

.corporate-image-card {
  width: 100%;
  max-width: 600px;
  border: 2px solid #d00000;
  border-radius: 24px 90px 24px 90px;
  overflow: hidden;
}

.corporate-image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.section-title {
  color: #d00000;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 10px;
}

.section-line {
  width: 100%;
  max-width: 420px;
  height: 3px;
  background: #d00000;
  margin-bottom: 34px;
}

.benefits-section {
  padding-top: 70px;
  padding-bottom: 60px;
}

.benefit-card {
  position: relative;
  background: #c90000;
  border-radius: 0 38px 0 38px;
  min-height: 270px;
  padding: 36px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.benefit-badge {
  position: absolute;
  top: -24px;
  left: -6px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 6px solid #fff;
  background: #c90000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 500;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 26px;
  object-fit: contain;
}

.benefit-title {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 500;
  color: #fff;
}

.partners-section {
  padding-top: 10px;
}

.partners-row {
  row-gap: 18px;
}

.partner-card {
  background: #fff;
  border-radius: 6px;
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.partner-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  display: block;
}

@media (max-width: 1599.98px) {
  .corporate-heading {
    font-size: 58px;
  }

  .corporate-text {
    font-size: 24px;
  }

  .section-title {
    font-size: 54px;
  }

  .benefit-card {
    min-height: 245px;
  }

  .benefit-title {
    font-size: 22px;
  }

  .corporate-image-card img {
    min-height: 460px;
  }
}

@media (max-width: 1199.98px) {
  .corporate-heading {
    font-size: 48px;
  }

  .corporate-text {
    font-size: 20px;
  }

  .corporate-btn {
    font-size: 20px;
    padding: 16px 30px;
  }

  .section-title {
    font-size: 48px;
  }

  .benefits-section {
    padding-top: 55px;
    padding-bottom: 50px;
  }

  .benefit-card {
    min-height: 230px;
    padding: 32px 18px 24px;
  }

  .benefit-title {
    font-size: 20px;
  }

  .benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .benefit-badge {
    width: 66px;
    height: 66px;
    font-size: 24px;
  }

  .corporate-image-wrap {
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .corporate-page {
    padding: 24px 0 40px;
  }

  .corporate-heading {
    font-size: 42px;
  }

  .corporate-heading-line {
    max-width: 430px;
    margin-bottom: 24px;
  }

  .corporate-text {
    font-size: 18px;
    max-width: 100%;
  }

  .corporate-text p {
    margin-bottom: 22px;
  }

  .corporate-image-card {
    max-width: 100%;
    margin-top: 18px;
  }

  .corporate-image-card img {
    min-height: 400px;
  }

  .section-title {
    font-size: 42px;
  }

  .section-line {
    max-width: 280px;
    margin-bottom: 26px;
  }

  .benefits-section {
    padding-top: 48px;
    padding-bottom: 42px;
  }

  .benefit-card {
    min-height: 210px;
  }

  .partner-card {
    min-height: 110px;
  }
}

@media (max-width: 767.98px) {
  .corporate-heading {
    font-size: 34px;
    line-height: 1.02;
  }

  .corporate-heading-line {
    height: 2px;
    max-width: 300px;
  }

  .corporate-text {
    font-size: 16px;
    line-height: 1.4;
  }

  .corporate-btn {
    width: 100%;
    text-align: center;
    font-size: 17px;
    padding: 14px 20px;
    border-radius: 10px;
  }

  .corporate-image-card {
    border-radius: 18px 50px 18px 50px;
  }

  .corporate-image-card img {
    min-height: 280px;
  }

  .section-title {
    font-size: 34px;
  }

  .section-line {
    max-width: 220px;
    height: 2px;
  }

  .benefit-card {
    min-height: 190px;
    border-radius: 0 28px 0 28px;
  }

  .benefit-title {
    font-size: 18px;
  }

  .benefit-badge {
    width: 58px;
    height: 58px;
    border-width: 4px;
    font-size: 22px;
    top: -18px;
    left: -2px;
  }

  .benefit-icon {
    width: 56px;
    height: 56px;
  }

  .partner-card {
    min-height: 95px;
    padding: 14px;
  }

  .partner-card img {
    max-height: 56px;
  }
}

@media (max-width: 575.98px) {
  .corporate-page {
    padding: 20px 0 32px;
  }

  .corporate-heading {
    font-size: 30px;
  }

  .corporate-text {
    font-size: 15px;
  }

  .corporate-image-card img {
    min-height: 240px;
  }

  .section-title {
    font-size: 30px;
  }

  .benefits-section {
    padding-top: 40px;
    padding-bottom: 36px;
  }

  .benefit-card {
    min-height: 175px;
    padding: 28px 16px 18px;
  }

  .benefit-title {
    font-size: 17px;
  }
}

/* ========================= bottom sec ========= */
.corporate-help-section {
  background: #f9f9f9;
  padding-top: 46px;
  padding-bottom: 50px;
}

.corporate-help-title {
  color: #111;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  margin: 0 0 12px;
}

.corporate-help-subtitle {
  color: #3d3d3d;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 42px;
}

.corporate-help-card {
  min-height: 102px;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 24px;
  color: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
}

.corporate-help-card:hover {
  transform: translateY(-2px);
  color: #111;
}

.corporate-help-card i {
  font-size: 32px;
  color: #7c7c7c;
  line-height: 1;
}

.corporate-help-card span {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

@media (max-width: 1399.98px) {
  .corporate-help-title {
    font-size: 46px;
  }

  .corporate-help-subtitle {
    font-size: 24px;
    margin-bottom: 34px;
  }

  .corporate-help-card span {
    font-size: 24px;
  }

  .corporate-help-card i {
    font-size: 28px;
  }
}

@media (max-width: 991.98px) {
  .corporate-help-section {
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .corporate-help-title {
    font-size: 38px;
  }

  .corporate-help-subtitle {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .corporate-help-card {
    min-height: 84px;
    padding: 16px 20px;
    gap: 14px;
  }

  .corporate-help-card span {
    font-size: 22px;
  }

  .corporate-help-card i {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  .corporate-help-title {
    font-size: 30px;
  }

  .corporate-help-subtitle {
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 22px;
  }

  .corporate-help-card {
    min-height: 74px;
    justify-content: flex-start;
    padding: 14px 16px;
  }

  .corporate-help-card span {
    font-size: 18px;
  }

  .corporate-help-card i {
    font-size: 21px;
  }
}

@media (max-width: 575.98px) {
  .corporate-help-section {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .corporate-help-title {
    font-size: 26px;
  }

  .corporate-help-subtitle {
    font-size: 15px;
  }

  .corporate-help-card {
    min-height: 68px;
  }

  .corporate-help-card span {
    font-size: 17px;
  }
}
