@charset "UTF-8";
/**
 * VEGAN-LEATHER PAGE SCSS
 * 비건가죽 페이지
 */
/* ========================================
   Sub Tabs (탭메뉴)
   ======================================== */
.sub-tabs {
  background-color: #ffffff;
  border-bottom: 0.0625rem solid #e1e1e4;
}
.sub-tabs-inner {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: 3.75rem;
}
@media only screen and (max-width: 767px) {
  .sub-tabs-inner {
    overflow-x: auto;
    gap: 0.125rem;
  }
  .sub-tabs-inner::-webkit-scrollbar {
    display: none;
  }
}

.sub-tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  font-size: 1rem;
  font-weight: var(--fw-regular);
  color: var(--font1);
  text-decoration: none;
  border-bottom: 0.125rem solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}
.sub-tab-item:hover {
  color: var(--primary);
}
.sub-tab-item.active {
  color: var(--primary);
  font-weight: var(--fw-bold);
  border-bottom-color: var(--primary);
}
@media only screen and (max-width: 767px) {
  .sub-tab-item {
    font-size: 0.875rem;
    padding: 0.5rem;
    white-space: nowrap;
  }
}

/* ========================================
   Vegan Leather Section
   ======================================== */
.vegan-leather-section {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  padding-top: 5rem;
  padding-bottom: 10rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .vegan-leather-section {
    gap: 3rem;
    padding-top: 3.75rem;
    padding-bottom: 7.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .vegan-leather-section {
    gap: 2.5rem;
    padding-top: 2.5rem;
    padding-bottom: 5rem;
  }
}

/* ========================================
   Title Section
   ======================================== */
.vegan-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .vegan-title-wrapper {
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .vegan-title-wrapper {
    gap: 1.5rem;
  }
}

.vegan-title-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--f3);
  line-height: var(--l3);
  color: var(--primary);
}
@media only screen and (max-width: 767px) {
  .vegan-title-top {
    font-size: 1.25rem;
    gap: 0.375rem;
  }
}

.vegan-title-normal {
  font-weight: var(--fw-regular);
}

.vegan-title-bold {
  font-weight: var(--fw-bold);
}

.vegan-title-main {
  font-size: var(--f3);
  line-height: var(--l3);
  font-weight: var(--fw-bold);
  color: var(--font1);
  text-align: center;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .vegan-title-main {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

/* ========================================
   Cards Grid
   ======================================== */
.vegan-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  width: 100%;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .vegan-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .vegan-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.vegan-card {
  display: flex;
  flex-direction: column;
  gap: 2.0625rem;
}
@media only screen and (max-width: 767px) {
  .vegan-card {
    gap: 1.5rem;
  }
}

.vegan-card-image {
  width: 100%;
  height: 27.4375rem;
  border-radius: 1.25rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .vegan-card-image {
    height: 25rem;
  }
}
@media only screen and (max-width: 767px) {
  .vegan-card-image {
    height: 20rem;
    border-radius: 1rem;
  }
}
.vegan-card-image-1 {
  background-image: url("../../../images/application-1.png");
}
.vegan-card-image-2 {
  background-image: url("../../../images/application-2.png");
}
.vegan-card-image-3 {
  background-image: url("../../../images/application-3.png");
}
.vegan-card-image-4 {
  background-image: url("../../../images/application-4.png");
}

.vegan-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1rem;
}
@media only screen and (max-width: 767px) {
  .vegan-card-content {
    padding: 0 0.75rem;
  }
}

.vegan-card-title {
  font-size: var(--f4);
  line-height: var(--l4);
  font-weight: var(--fw-bold);
  color: var(--font1);
  margin: 0;
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .vegan-card-title {
    font-size: 1.125rem;
  }
}

.vegan-card-desc {
  font-size: var(--f6);
  line-height: var(--l6);
  font-weight: var(--fw-regular);
  color: var(--font1);
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .vegan-card-desc {
    font-size: 0.875rem;
  }
}

/* ========================================
   CTA Section
   ======================================== */
.vegan-cta-section {
  position: relative;
  width: 100%;
  height: 27rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .vegan-cta-section {
    height: 24rem;
  }
}
@media only screen and (max-width: 767px) {
  .vegan-cta-section {
    height: auto;
    min-height: 20rem;
    border-radius: 1rem;
  }
}

.vegan-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../images/contact-bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 1;
}

.vegan-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.vegan-cta-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 6.25rem 15rem;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .vegan-cta-content {
    padding: 5rem 8rem;
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .vegan-cta-content {
    padding: 3rem 1.5rem;
    gap: 1.5rem;
  }
}

.vegan-cta-title {
  font-size: 2rem;
  line-height: var(--l3);
  font-weight: var(--fw-bold);
  color: #ffffff;
  text-align: center;
  margin: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .vegan-cta-title {
    font-size: 1.625rem;
  }
}
@media only screen and (max-width: 767px) {
  .vegan-cta-title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.vegan-cta-buttons {
  display: flex;
  gap: 2.5rem;
  width: 100%;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .vegan-cta-buttons {
    gap: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .vegan-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

.vegan-cta-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 3.75rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.vegan-cta-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-0.125rem);
}
.vegan-cta-button span {
  font-size: var(--f5);
  line-height: var(--l5);
  font-weight: var(--fw-bold);
  color: #ffffff;
}
.vegan-cta-button svg {
  flex-shrink: 0;
}
@media only screen and (max-width: 1279px) and (min-width: 768px) {
  .vegan-cta-button {
    padding: 2rem 2.5rem;
  }
  .vegan-cta-button span {
    font-size: 1rem;
  }
  .vegan-cta-button svg {
    width: 2rem;
    height: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .vegan-cta-button {
    padding: 1.5rem 1.875rem;
    border-radius: 1rem;
  }
  .vegan-cta-button span {
    font-size: 0.9375rem;
  }
  .vegan-cta-button svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}