/* 전역 스타일 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  color: #333;
  line-height: 1.6;
}

/* 컨테이너 */
.container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 120px;
}

/* Header */
header {
  background-color: transparent;
  height: 80px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

header.scrolled {
  background-color: rgba(77, 45, 30, 0.95);
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo h1 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.4;
  font-family: serif;
}

.logo img {
  height: 120px;
  width: auto;
  display: block;
  object-fit: contain;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
}

nav li {
  position: relative;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s;
  display: block;
  padding: 10px 5px;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #e2d5b2;
  transition: width 0.3s;
}

.nav-item:hover > a::after {
  width: 100%;
}

.nav-item:hover > a {
  color: #e2d5b2;
}

/* Dropdown Menu - 메가메뉴 스타일 */
.dropdown-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: translateY(-10px);
  box-shadow: none;
  z-index: 999;
}

header.scrolled .dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu ul {
  list-style: none;
  padding: 15px 0;
  display: flex;
  flex-direction: row;
  gap: 15px;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  justify-content: center;
}

.dropdown-menu li {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
  text-align: center;
  position: relative;
}

/* 히어로 섹션에서의 호버 효과 */
.dropdown-menu li:hover {
  color: #e2d5b2;
  border-bottom-color: #e2d5b2;
  transform: translateY(-2px);
}

/* 스크롤 후 드롭다운 메뉴 색상 */
header.scrolled .dropdown-menu li {
  color: #4d2d1e;
}

/* 스크롤 후 호버 효과 */
header.scrolled .dropdown-menu li:hover {
  color: #8b5a3c;
  border-bottom-color: #8b5a3c;
  transform: translateY(-2px);
}

/* Language Selector */
.lang-selector {
  color: #ffffff;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-selector span {
  cursor: pointer;
  transition: opacity 0.3s;
}

.lang-selector span:hover {
  opacity: 0.7;
}

.lang-selector .active {
  font-weight: bold;
}

.lang-separator {
  cursor: default;
}

/* 햄버거 버튼 - 데스크탑에서 기본 숨김 */
.hamburger {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  height: 1080px;
  overflow: hidden;
  background-color: #2a1810;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Product Section */
.product-section {
  background-color: #4d2d1e;
  height: 1080px;
  display: flex;
  align-items: center;
}

.product-section h2 {
  color: #f6eed7;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 3px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px 40px 40px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image-wrapper {
  background: white;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

/* 두 번째 카드 이미지 크기 조정 */
.product-card:nth-child(2) .product-image {
  transform: scale(1.5);
}

/* 세 번째 카드 이미지 크기 조정 (조금 작게) */
.product-card:nth-child(3) .product-image {
  transform: scale(1.2);
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.detail-button {
  background-color: #f6eed7;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 13px;
  color: #4d2d1e;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Noto Sans KR", sans-serif;
  width: 100%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.button-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.detail-button:hover .button-arrow {
  transform: translateX(5px);
}

.detail-button:hover {
  background-color: #e8d7b8;
  transform: translateY(-2px);
}

.view-more-wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.view-more-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #f6eed7;
  background: transparent;
  color: #f6eed7;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1.5;
  font-family: "Noto Sans KR", sans-serif;
}

.view-more-btn:hover {
  background-color: #f6eed7;
  color: #4d2d1e;
  transform: scale(1.05);
}

/* Be Better Section */
.be-better {
  background-color: #e2d5b2;
  height: 1080px;
  display: flex;
  align-items: center;
}

.be-better .container {
  width: 100%;
}

.be-better h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.5px;
  color: #4d2d1e;
  margin-bottom: 20px;
  text-align: center;
}

.be-better > .container > p {
  color: #4d2d1e;
  font-size: 24px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0px;
  margin-bottom: 80px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  text-align: center;
  cursor: pointer;
}

.value-icon {
  width: 330px;
  height: 330px;
  background-color: #4d2d1e;
  border-radius: 50%;
  margin: 0 auto 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-item:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0px;
  color: #4d2d1e;
}

/* Season Product Section */
.season-product {
  background-color: #f6eed7;
  height: 1080px;
  display: flex;
  align-items: center;
}

.season-product .container {
  width: 100%;
}

.season-product h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.5px;
  color: #4d2d1e;
  margin-bottom: 80px;
  text-align: center;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.season-card {
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.season-card:hover {
  transform: translateY(-8px);
}

.season-image-wrapper {
  width: 330px;
  height: 300px;
  border-radius: 50% 50% 0 0;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px;
}

/* 1번, 3번 카드 배경색 */
.season-image-wrapper.type1 {
  background-color: #d5c9a6;
}

/* 2번, 4번 카드 배경색 */
.season-image-wrapper.type2 {
  background-color: #c9b88f;
}

.season-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.season-title {
  font-size: 16px;
  font-weight: 600;
  color: #4d2d1e;
  margin-bottom: 15px;
}

.season-divider {
  width: 100%;
  max-width: 330px;
  height: 1px;
  margin: 0 auto 15px;
}

/* 1번, 3번 카드 라인 색상 */
.season-divider.type1 {
  background-color: #d5c9a6;
}

/* 2번, 4번 카드 라인 색상 */
.season-divider.type2 {
  background-color: #c9b88f;
}

.season-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0px;
  color: #4d2d1e;
}

/* Brands Section */
.brands {
  background-color: #e2d5b2;
  height: 540px;
  display: flex;
  align-items: center;
}

.brands .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brands h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.5px;
  color: #4d2d1e;
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
  max-width: 1400px;
}

.brands-subtitle {
  text-align: left;
  color: #4d2d1e;
  font-size: 24px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0px;
  margin-bottom: 70px;
  width: 100%;
  max-width: 1400px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1400px;
  width: 100%;
}

.brand-card {
  background: #f5f0e8;
  padding: 50px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  transition: transform 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
}

.brand-card img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

/* Footer */
footer {
  background-color: #4d2d1e;
  color: #f6eed7;
  padding: 60px 0 30px;
}

footer .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 260px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
}

.footer-logo h2 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.5;
  font-family: serif;
}

.footer-logo img {
  height: 150px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-top: -45px;
}

.footer-logo a {
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.3s;
}

.footer-logo a:hover {
  opacity: 0.8;
}

.footer-social {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: -10px;
}

.social-label {
  font-size: 18px;
  margin-bottom: 20px;
  color: #f6eed7;
  font-weight: 600;
  line-height: 1;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4d2d1e;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-links {
  display: flex;
  gap: 100px;
  justify-content: center;
  flex: 1;
  margin: 0 80px;
}

.footer-column {
  text-align: center;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-column li {
  margin-bottom: 15px;
}

.footer-column a {
  font-size: 14px;
  color: #d4c5a0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(246, 238, 215, 0.2);
}

.footer-bottom p {
  font-size: 13px;
  color: #d4c5a0;
}

/* 데스크탑 중간 크기 (1025px ~ 1440px) */
@media (max-width: 1440px) and (min-width: 1025px) {
  /* Be Better Section */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 900px;
  }

  .value-icon {
    width: 280px;
    height: 280px;
    padding: 50px;
  }

  .value-text {
    font-size: 22px;
  }

  /* Season Product */
  .season-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
  }

  .season-image-wrapper {
    width: 100%;
    max-width: 350px;
    height: 300px;
  }

  .season-divider {
    max-width: 350px;
  }

  /* Footer - 가로 레이아웃 유지 */
  footer .container {
    padding: 0 80px;
  }

  .footer-links {
    gap: 60px;
    margin: 0 40px;
  }
}

/* 데스크탑 작은 크기 (1025px ~ 1280px) */
@media (max-width: 1280px) and (min-width: 1025px) {
  /* Be Better Section */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
  }

  .value-icon {
    width: 250px;
    height: 250px;
    padding: 45px;
  }

  .value-text {
    font-size: 20px;
  }

  /* Season Product */
  .season-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 750px;
  }

  .season-image-wrapper {
    width: 100%;
    max-width: 320px;
    height: 280px;
  }

  .season-divider {
    max-width: 320px;
  }

  /* Footer - 가로 레이아웃 유지 */
  footer .container {
    padding: 0 60px;
  }

  .footer-links {
    gap: 50px;
    margin: 0 30px;
  }
}

/* 태블릿 및 작은 화면 (769px ~ 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  /* Header 추가 */
  .header-container {
    padding: 0 40px;
  }

  nav ul {
    gap: 30px;
  }

  nav a {
    font-size: 14px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 100%;
  }

  .value-icon {
    width: 250px;
    height: 250px;
    padding: 40px;
  }

  .value-text {
    font-size: 20px;
  }

  .season-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 100%;
  }

  .season-image-wrapper {
    width: 100%;
    max-width: 330px;
    height: 280px;
  }

  .season-divider {
    max-width: 100%;
  }

  /* Product Section 추가 */
  .product-section {
    height: auto;
    padding: 80px 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
  }

  .product-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 350px;
    margin: 0 auto;
  }

  /* Our Brands 추가 */
  .brands {
    height: auto;
    padding: 60px 0;
  }

  .brands h2 {
    font-size: 36px;
    text-align: center;
  }

  .brands-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }

  .brand-card {
    padding: 35px 25px;
    min-height: 140px;
  }

  .brand-card img {
    max-height: 50px;
  }

  /* Footer 추가 */
  footer .container {
    padding: 0 60px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
  }

  .footer-logo {
    order: 1;
  }

  .footer-logo img {
    margin: 0 auto;
    margin-top: 0;
  }

  .footer-links {
    order: 2;
    flex-direction: row;
    gap: 60px;
    margin: 0;
    width: auto;
    justify-content: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column h3 {
    font-size: 16px;
  }

  .footer-column a {
    font-size: 13px;
  }

  .footer-social {
    order: 3;
    align-items: center;
    margin-top: 0;
  }

  .social-label {
    font-size: 16px;
  }

  .social-icons {
    justify-content: center;
  }
}

/* 모바일 (767px 이하) */
@media (max-width: 767px) {
  .be-better h2 {
    font-size: 32px;
  }

  .be-better > .container > p {
    font-size: 18px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .value-icon {
    width: 200px;
    height: 200px;
    padding: 30px;
  }

  .value-text {
    font-size: 18px;
  }

  .season-product h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .season-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .season-image-wrapper {
    width: 100%;
    max-width: 280px;
    height: 250px;
    margin: 0 auto 20px;
  }
}

/* 모바일 전용 (320px ~ 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* 헤더 - 햄버거 메뉴 */
  header {
    height: 60px;
  }

  .header-container {
    padding: 0 20px;
  }

  .logo img {
    height: 80px;
  }

  /* 햄버거 버튼 표시 */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  nav {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: rgba(77, 45, 30, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0;
    transition: left 0.3s ease;
    z-index: 999;
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  nav li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav a {
    padding: 20px 30px;
    font-size: 16px;
    display: block;
  }

  .lang-selector {
    display: none;
  }

  /* 드롭다운 메뉴 모바일 */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-item.active .dropdown-menu {
    max-height: 500px;
  }

  .dropdown-menu ul {
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
  }

  .dropdown-menu li {
    padding: 15px 50px;
    font-size: 14px;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.8);
  }

  .dropdown-menu li:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* Hero Section */
  .hero {
    height: 60vh;
    min-height: 400px;
  }

  /* Product Section - 세로 1열 */
  .product-section {
    height: auto;
    padding: 80px 0;
  }

  .product-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
  }

  .product-card {
    padding: 40px 30px 30px;
  }

  .product-image-wrapper {
    min-height: 280px;
    padding: 20px;
  }

  .product-image {
    height: 250px;
  }

  .view-more-wrapper {
    margin-top: 40px;
  }

  /* Be Better Section - 세로 1열 */
  .be-better {
    height: auto;
    padding: 80px 0;
  }

  .be-better h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .be-better > .container > p {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-icon {
    width: 200px;
    height: 200px;
    padding: 40px;
  }

  .value-text {
    font-size: 18px;
  }

  /* Season Product - 좌우 스와이프 */
  .season-product {
    height: auto;
    padding: 80px 0;
    overflow: hidden;
  }

  .season-product h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .season-product .container {
    padding: 0;
  }

  .season-grid {
    display: flex;
    gap: 20px;
    max-width: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 20px 20px;
    scrollbar-width: none;
  }

  .season-grid::-webkit-scrollbar {
    display: none;
  }

  .season-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .season-image-wrapper {
    width: 280px;
    height: 260px;
    margin-bottom: 20px;
    padding: 25px;
  }

  .season-title {
    font-size: 15px;
  }

  .season-divider {
    max-width: 280px;
  }

  .season-desc {
    font-size: 14px;
  }

  /* Our Brands - 2열 정렬 */
  .brands {
    height: auto;
    padding: 80px 0;
  }

  .brands h2 {
    font-size: 32px;
    text-align: center;
  }

  .brands-subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
  }

  .brands .container {
    align-items: stretch;
  }

  .brands h2,
  .brands-subtitle {
    max-width: 100%;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 100%;
  }

  .brand-card {
    padding: 30px 20px;
    min-height: 120px;
  }

  .brand-card img {
    max-height: 50px;
  }

  /* Footer */
  footer {
    padding: 40px 0 20px;
  }

  footer .container {
    padding: 0 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 0;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    order: 1;
  }

  .footer-logo img {
    height: 100px;
    margin: 0 auto;
    margin-top: 0;
  }

  .footer-links {
    order: 2;
    flex-direction: row;
    gap: 40px;
    margin: 0;
    width: 100%;
    justify-content: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column h3 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer-column ul {
    gap: 8px;
  }

  .footer-column li {
    margin-bottom: 8px;
  }

  .footer-column a {
    font-size: 12px;
  }

  .footer-social {
    order: 3;
    text-align: center;
    align-items: center;
    width: 100%;
    margin-top: 0;
  }

  .social-label {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }

  .footer-bottom {
    margin-top: 25px;
    padding-top: 20px;
  }

  .footer-bottom p {
    font-size: 11px;
  }
}
