.main-page {
  padding-top: 0 !important;
}

.main-banner {
  position: relative;
  left: 50%;
  width: 1200px;
  min-height: 424px;
  transform: translateX(-50%);
  overflow: hidden;
  margin-bottom: 100px;
}

.main-banner img {
  width: 100%;
  height: auto;
  /* object-fit: cover; */
  display: block;
}

.sub-banner {
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-bottom: 70px;
}

.sub-banner img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}


/* PC 오늘 단하루 특가 카운트다운 */
.today-special-countdown-pc {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 16px;
    padding: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 8px 12px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.today-special-countdown-pc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkles-pc" x="0" y="0" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.8" fill="rgba(255,255,255,0.1)"/><circle cx="13" cy="13" r="0.4" fill="rgba(255,255,255,0.15)"/><circle cx="8" cy="11" r="0.6" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkles-pc)"/></svg>') repeat;
    pointer-events: none;
}

.countdown-header-pc {
    display: flex;
	flex-direction: column;
	gap: 8px;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.countdown-title-pc {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.countdown-title-pc i {
    font-size: 20px;
    font-weight: normal;
}

.countdown-header-pc .btn-go {
    display: inline-block;
    padding: 6px 16px;
    color: #fff;
    font-size: 14px;
    border: 1px solid #fff;
    border-radius: 40px;
    text-decoration: none;
}

.countdown-timer-pc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.countdown-item-pc {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number-pc {
    font-size: 28px;
    font-weight: 700;
    padding: 8px 4px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.countdown-separator-pc {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 8px;
}


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.swiper-pagination-bullet-active {
  background-color: #333
}