/* ===========================================
   Buttons
   버튼 공통 스타일
   =========================================== */

/* Slide Button */
.slide-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    animation: slideUp 1s ease-out 0.6s both;
}

.slide-button:hover {
    background: #fff;
    color: var(--theme-accent);
}

/* Slider Buttons (dots) */
.slider-buttons {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-btn {
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn.active {
    background: #fff;
}

/* Slider Arrows */
.slider-arrows {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    color: #fff;
    outline: none !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: "PT Serif", "Noto Sans KR", sans-serif !important;
    margin: 0;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    font-size: 2em !important;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: all;
}

.slider-arrow.prev {
    left: 1%;
}

.slider-arrow.next {
    right: 1%;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* More Button */
.btn-more {
    display: inline-block;
    padding: 14px 40px;
    border: 1.5px solid var(--theme-accent);
    color: var(--theme-accent);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.btn-more:hover {
    background: var(--theme-accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(67, 97, 238, 0.3);
}

/* Product List Section Button */
.product-list-section .btn-more {
    display: inline-block;
    padding: 14px 40px;
    border: 1.5px solid var(--theme-accent);
    color: var(--theme-accent);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.product-list-section .btn-more:hover {
    background: var(--theme-accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(67, 97, 238, 0.3);
}

/* View All Button (News Section) */
.news-view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8C8C8C;
    font-family: "Noto Sans KR";
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.news-view-all:hover {
    color: var(--theme-accent);
}

.news-view-all-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.news-view-all-icon rect[fill="#8C8C8C"] {
    transition: fill 0.3s ease;
}

.news-view-all:hover .news-view-all-icon rect[fill="#8C8C8C"] {
    fill: var(--theme-accent);
}

/* Generic Button Styles */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--theme-accent);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--theme-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--theme-accent);
    border: 2px solid var(--theme-accent);
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--theme-accent);
    color: #fff;
}

/* Toggle Buttons */
.toggle-btn,
.footer-toggle-btn,
.mobile-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}
