@charset "utf-8";

/* 내용관리 */
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero2 {
  padding-top: 70px;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 85%) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-bottom: 50px;
}

.hero2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 94%) 0%, color-mix(in srgb, var(--heading-color), transparent 98%) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.hero2 .hero2-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 992px) {
  .hero2 .hero2-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.hero2 .hero2-content {
  z-index: 2;
}

.hero2 .hero2-content .content-wrapper {
  max-width: 600px;
}

.hero2 .hero2-content .hero2-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero2 .hero2-content .hero2-title {
    font-size: 2.2rem;
  }
}

.hero2 .hero2-content .hero2-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .hero2 .hero2-content .hero2-description {
    font-size: 1.1rem;
  }
}

.hero2 .hero2-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero2 .hero2-actions .btn-primary,
.hero2 .hero2-actions .btn-kakao,
.hero2 .hero2-actions .btn-secondary {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}


@media (max-width: 768px) {
.hero2 .hero2-actions .btn-primary,
.hero2 .hero2-actions .btn-kakao,
.hero2 .hero2-actions .btn-secondary {
  padding: 16px 32px;
  font-size: 1.1rem;
  width: 100%;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

}


.hero2 .hero2-actions .btn-primary::before,
.hero2 .hero2-actions .btn-kakao::before,
.hero2 .hero2-actions .btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero2 .hero2-actions .btn-primary:hover::before,
.hero2 .hero2-actions .btn-kakao:hover::before,
.hero2 .hero2-actions .btn-secondary:hover::before {
  left: 100%;
}

.hero2 .hero2-actions .btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  color: var(--contrast-color);
  border: none;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero2 .hero2-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero2 .hero2-actions .btn-kakao {
  background: linear-gradient(135deg, #F7D700 0%, color-mix(in srgb, #F7D700, #221715 10%) 100%);
  color: #221715;
  border: none;
  box-shadow: 0 8px 25px color-mix(in srgb, #F7D700, transparent 70%);
}

.hero2 .hero2-actions .btn-kakao:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb,#F7D700, transparent 60%);
}

.hero2 .hero2-actions .btn-secondary {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--heading-color), transparent 80%);
}

.hero2 .hero2-actions .btn-secondary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.hero2 .hero2-content .features-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hero2 .hero2-content .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero2 .hero2-content .features-list .feature-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.hero2 .hero2-content .features-list .feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
}

.hero2 .hero2-visuals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero2 .hero2-visuals .product-showcase {
  position: relative;
  max-width: 500px;
}

.hero2 .hero2-visuals .product-showcase .product-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero2 .hero2-visuals .product-showcase .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 98%) 0%, transparent 50%);
  border-radius: 24px;
  z-index: -1;
}

.hero2 .hero2-visuals .product-showcase .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero2 .hero2-visuals .product-showcase .product-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  margin-bottom: 20px;
}

.hero2 .hero2-visuals .product-showcase .product-card .product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000 20%) 100%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero2 .hero2-visuals .product-showcase .product-card .product-info h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.hero2 .hero2-visuals .product-showcase .product-card .product-info .price {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero2 .hero2-visuals .product-showcase .product-card .product-info .price .sale-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
}

.hero2 .hero2-visuals .product-showcase .product-card .product-info .price .original-price {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
}

.hero2 .hero2-visuals .product-showcase .product-grid {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 992px) {
  .hero2 .hero2-visuals .product-showcase .product-grid {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
    transform: none;
  }
}

.hero2 .hero2-visuals .product-showcase .product-grid .product-mini {
  width: 120px;
  height: 120px;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 92%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.hero2 .hero2-visuals .product-showcase .product-grid .product-mini:hover {
  transform: scale(1.1);
}

.hero2 .hero2-visuals .product-showcase .product-grid .product-mini img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}

.hero2 .hero2-visuals .product-showcase .product-grid .product-mini .mini-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
}

.hero2 .hero2-visuals .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero2 .hero2-visuals .floating-elements .floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.hero2 .hero2-visuals .floating-elements .floating-icon i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.hero2 .hero2-visuals .floating-elements .floating-icon .notification-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #ff4757;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.hero2 .hero2-visuals .floating-elements .floating-icon.cart {
  top: 10%;
  left: 30px;
  animation-delay: 0s;
}

.hero2 .hero2-visuals .floating-elements .floating-icon.wishlist {
  bottom: 3%;
  right: 20px;
  animation-delay: 1s;
}

.hero2 .hero2-visuals .floating-elements .floating-icon.search {
  bottom: 20%;
  left: 10px;
  animation-delay: 2s;
}

.hero2 .hero2-visuals .floating-elements .floating-icon:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .hero2 .hero2-visuals .floating-elements .floating-icon {
    display: none;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .hero2 {
    padding: 80px 0;
  }

  .hero2 .hero2-container {
    padding: 0 15px;
  }

  .hero2 .hero2-actions .btn-primary,
  .hero2 .hero2-actions .btn-kakao,
  .hero2 .hero2-actions .btn-secondary {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .hero2 .hero2-content .features-list {
    gap: 20px;
  }

  .hero2 .hero2-content .features-list .feature-item span {
    font-size: 0.9rem;
  }
}
