/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1c1c1c;
    line-height: 1.5;
    padding-top: 140px;
    /* 고정된 네비게이션 높이만큼 패딩 추가 */
}

/* Event List Page */
.event-list-page {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
}
.top-bar {
    background-color: #f5f5f5;
    padding: 0;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-content {
    display: flex;
    gap: 0px;
    align-items: center;
    justify-content: flex-end;
    width: 1440px;
}

.region-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.region-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #1c1c1c;
    text-transform: uppercase;
    margin-left: 33.5px;
}

.country-flag {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.divider {
    width: 2px;
    height: 16px;
    background-color: #1c1c1c;
    opacity: 0.2;
}

.login-section {
    display: grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    align-items: start;
    opacity: 0.6;
    position: relative;
}

.login-text {
	border:0;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #1c1c1c;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    white-space: nowrap;
    line-height: 18px;
}

.login-text.header-login:hover{background:transparent;}
.account-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-top: 1px;
    position: relative;
    grid-area: 1 / 1;
}

.account-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.account-icon .account-inner {
    position: absolute;
    inset: 12.5% 15.63% 6.25% 15.63%;
}

.account-icon .account-inner .account-img {
    position: absolute;
    bottom: 0;
    left: -9.09%;
    right: -9.09%;
    top: -7.69%;
}

.account-icon .account-inner .account-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-nav {
    background-color: #ffffff;
    padding: 28px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 1440px;
    margin: 0 auto;
}

.nav-content {
    position: relative;
    display: flex;
    gap: 120px;
    align-items: center;
    width: 100%;
}

.logo {
    width: 64px;
    height: 64px;
    position: relative;
}

.logo-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff4e7a, #ff6b8a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    line-height: 15px;
}

.logo-text p {
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 0;
    align-items: center;
    height: 40px;
    width: 890px;
    position: relative;
}

.nav-item {
    border-bottom: 2px solid #fff;
    padding: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item a {
    width: 100%;
    text-align: center;
}

.nav-item:nth-child(1) {
    left: 0;
    width: 130px;
}

.nav-item:nth-child(2) {
    left: 140px;
    width: 140px;
}

.nav-item:nth-child(3) {
    left: 290px;
    width: 140px;
}

.nav-item:nth-child(4) {
    left: 440px;
    width: 140px;
}

.nav-item:nth-child(5) {
    left: 590px;
    width: 140px;
}

.nav-item:nth-child(6) {
    left: 740px;
    width: 150px;
}
.nav-item._02{position: absolute;right: -100px;}
.nav-item.active {
    border-bottom: 2px solid #ff4e7a;
}

.nav-item.active .nav-text {
    color: #ff4e7a;
    font-weight: 700;
}

.nav-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #9e9e9e;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-item:hover .nav-text {
    color: #ff4e7a;
}

/* Main Content */
.main-content {
    width: 1440px;
    margin: 0 auto;
    padding: 45px 0 0 0;
    min-height: calc(100vh - 140px);
    display: flex;
    gap: 140px;
    align-items: flex-start;
}

/* Left Sidebar */
.left-sidebar {
    width: 221px;
    background-color: #ffffff;
    flex-shrink: 0;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 203px;
}

.user-badge {
    background-color: #ffffff;
    border-radius: 9px;
    padding: 9px 0 9px 0;
    display: flex;
    align-items: center;
    gap: 9px;
    width: 202.5px;
}

.user-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.user-name {
	margin-left:1px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15.75px;
    color: #1c1c1c;
    width: 112.5px;
    line-height: 22.5px;
}

.menu-sections {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.menu-section {
    display: flex;
    flex-direction: column;
    gap: 4.5px;
    width: 100%;
    padding-bottom: 13.5px;
}

.section-name {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #a4a4a4;
    padding: 4.5px 13.5px;
    width: 100%;
    line-height: 22.5px;
}

.sidebar-tab {
    display: flex;
    align-items: center;
    gap: 4.5px;
    padding: 9px;
    border-radius: 13.5px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-tab.active {
    background-color: #f4f4f4;
    border-radius: 0 10px 10px 0;
}

.sidebar-tab:hover {
    background-color: #f8f8f8;
}

.tab-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tab-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tab-content {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 1;
    min-width: 0;
}

.tab-icon-large {
    width: 22.5px;
    height: 22.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tab-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tab-name {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
    flex: 1;
    min-width: 0;
    line-height: 22.5px;
}

/* Main Area */
.main-area {
    flex: 1;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    gap: 57px;
}

.page-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #8d8d8d;
    line-height: normal;
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

/* Filter Section */
.filter-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.filter-tabs {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 40px;
}

.filter-tab {
    padding: 4.5px 9px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.filter-tab.active {
    border-bottom: 2px solid #ff4e7a;
}

.filter-tab.active .tab-text {
    color: #ff4e7a;
    font-weight: 500;
}

.tab-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: rgba(28, 28, 28, 0.4);
    text-align: center;
    transition: color 0.3s ease;
}

.filter-divider {
    font-family: 'Inter', sans-serif;
    font-size: 15.75px;
    color: rgba(28, 28, 28, 0.2);
    line-height: 22.5px;
}

.search-section {
    display: flex;
    align-items: flex-start;
    gap: 22.5px;
}

.search-box {
    background-color: rgba(28, 28, 28, 0.03);
    border-radius: 9px;
    padding: 4.5px 13.5px;
    height: 40px;
    width: 337px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.search-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.search-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.search-placeholder {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15.75px;
    color: rgba(28, 28, 28, 0.3);
    flex: 1;
    min-width: 0;
    line-height: 22.5px;
}

/* Table Container */
.table-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.table-header {
    background-color: #f9f9f9;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 0 10px;
}

.table-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.header-cell {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
}

.header-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1c1c1c;
    white-space: nowrap;
    line-height: normal;
}

.name-col {
    width: 120px;
    justify-content: flex-start;
    margin-right: 20px;
}

.country-col {
    width: 100px;
    margin-right: 20px;
}

.category-col {
    width: 100px;
    margin-right: 20px;
}

.event-col {
    width: 120px;
    margin-right: 20px;
}

.detail-col {
    width: 250px;
    margin-right: 20px;
}

.amount-col {
    width: 120px;
}

/* Table Body */
.table-body {
    display: flex;
    flex-direction: column;
}

.table-row {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    position: relative;
    border-bottom: 1px solid #dfe1e3;
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background-color: #f8f8f8;
}

.table-row.highlighted {
    background-color: #f9f9f9;
}

.table-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #dfe1e3;
    pointer-events: none;
}

.table-cell {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
}

.cell-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #8d8d8d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
}

.table-cell.name-col .cell-text {
    color: #1c1c1c;
    font-weight: 500;
}

.table-cell.amount-col .cell-text {
    font-weight: 400;
}

.table-cell.detail-col .cell-text {
    max-width: 175px;
    white-space: normal;
    line-height: 1.4;
}

/* Country Flag in Table */
.table-cell.country-col .country-flag {
    width: 24px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 0;
    overflow: hidden;
}

.table-cell.country-col .country-flag img {
    width: 24px;
    height: 18px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .top-content {
        width: 100%;
        max-width: 1200px;
    }

    .nav-content {
        max-width: 1200px;
    }

    .main-content {
        padding: 0 120px;
        gap: 100px;
    }
}

@media (max-width: 1440px) {
    .main-content {
        width: 100%;
        padding: 0 20px;
        gap: 100px;
    }
}

@media (max-width: 1200px) {
    .main-content {
        padding: 0 20px;
        gap: 60px;
    }

    .left-sidebar {
        width: 200px;
    }

    .sidebar-content {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }

    .left-sidebar {
        width: 100%;
        height: auto;
    }

    .sidebar-content {
        width: 100%;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 10px;
        position: static;
        width: 100%;
        height: auto;
    }

    .nav-item {
        position: static;
        width: auto;
        min-width: 80px;
        flex: 1;
    }

    .table-header,
    .table-body {
        min-width: auto;
    }
}

/* Event Detail Page Styles */
.event-detail-page {
    background-color: #ffffff;
    min-height: 100vh;
}

/* Content Wrapper - removed for consistent layout */
.detail-content {
	position:relative;
    display: block;
}

.customer-info-section,
.detail-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #8d8d8d;
    line-height: normal;
}

.info-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    overflow: hidden;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    min-height: 80px;
    gap: 68px;
}

.info-row:first-child {
    border-bottom: 1px solid #e9e9e9;
}

.info-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-label {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #9d9d9d;
    white-space: nowrap;
}

.info-value {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #1c1c1c;
    white-space: nowrap;
}

.country-flag {
    width: 24px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-table {
    display: flex;
    flex-direction: column;
    border: 1px solid #dfe1e3;
    border-radius: 10px;
    overflow: hidden;
}

.table-header {
    background-color: #f9f9f9;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-cell {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    flex-shrink: 0;
}

.header-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1c1c1c;
    white-space: nowrap;
}

.product-col {
    width: 360px;
    justify-content: flex-start;
}

.quantity-col {
    width: 360px;
    justify-content: center;
}

.amount-col {
    width: 360px;
    justify-content: center;
}

.table-body {
    display: flex;
    flex-direction: column;
}

.table-row {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid #dfe1e3;
    transition: background-color 0.3s ease;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background-color: #f8f8f8;
}

.table-cell {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    flex-shrink: 0;
}

.cell-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #1c1c1c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.total-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 62px;
    margin-top: 49px;
}

.total-label {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #9d9d9d;
    white-space: nowrap;
}

.total-amount {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #1c1c1c;
    white-space: nowrap;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .detail-content {
        padding: 40px 20px 0 20px;
    }

    .info-row {
        gap: 40px;
    }

    .product-col,
    .quantity-col,
    .amount-col {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .detail-content {
        padding: 20px;
    }

    .info-row {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .detail-table {
        overflow-x: auto;
    }

    .table-header,
    .table-body {
        min-width: 1080px;
    }

    .total-section {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

/* Profile Page Styles */
.profile-page {
    background-color: #ffffff;
    min-height: 100vh;
}

.profile-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 424px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 34px;
}

.profile-image {
    width: 78px;
    height: 78px;
    border-radius: 45px;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.update-btn {
    background-color: #efefef;
    border: none;
    border-radius: 999px;
    padding: 6px 13.266px;
    height: 42px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1c1c1c;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.update-btn:hover {
    background-color: #e0e0e0;
}

.delete-btn {
    background: none;
    border: none;
    border-radius: 10px;
    padding: 10px;
    height: 42px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1c1c1c;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.delete-btn:hover {
    background-color: #f5f5f5;
}

.delete-btn img {
    width: 16px;
    height: 16px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-row {
    display: flex;
    gap: 22px;
}

.form-row .form-group {
    flex: 1;
}

.form-label {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #1c1c1c;
    line-height: normal;
}

.required {
    color: #ff2b00;
}

.input-wrapper {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #b2b2b2;
    border-radius: 8px;
    padding: 11px 15px;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.select-wrapper {
    padding-right: 40px;
}

.form-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
    line-height: 24px;
}

.form-input::placeholder {
    color: #9c9c9c;
}

.select-arrow {
    width: 24px;
    height: 24px;
    pointer-events: none;
    flex-shrink: 0;
}

/* Custom Select Dropdown */
.select-container {
    position: relative;
    width: 100%;
}

.select-value {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #999999;
    line-height: 20px;
    letter-spacing: -0.112px;
}

.select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #ececec;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.select-dropdown.show {
    display: block;
}

.select-option {
    padding: 10px 30px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #1c1c1c;
    line-height: normal;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #ececec;
    display: flex;
    align-items: center;
    gap: 9px;
}

.select-option:last-child {
    border-bottom: none;
}

.select-option:hover {
    background-color: #f5f5f5;
}

.select-option.selected {
    background-color: #ffe7ed;
}

.select-option.selected:hover {
    background-color: #ffe7ed;
}

.button-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 95px;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-primary {
    background-color: #ff86a4;
    border: none;
    border-radius: 6px;
    padding: 0;
    height: 45px;
    width: 106px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff6b8a;
}

.btn-secondary {
    background: none;
    border: 1px solid #b2b2b2;
    border-radius: 6px;
    padding: 0;
    height: 45px;
    width: 106px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #b2b2b2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    color: #1c1c1c;
}

.btn-danger {
    background-color: #9e9e9e;
    border: none;
    border-radius: 6px;
    padding: 0;
    height: 45px;
    width: 107px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-danger:hover {
    background-color: #8a8a8a;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .profile-content {
        max-width: 100%;
        padding: 40px 20px 0 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .button-section {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .profile-content {
        padding: 20px;
    }

    .profile-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .profile-actions {
        width: 100%;
        justify-content: space-between;
    }

    .action-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .btn-primary,
    .btn-secondary,
    .btn-danger {
        flex: 1;
        max-width: 120px;
    }
}

/* Event Form Page Styles */
.event-form-page {
    background-color: #ffffff;
    min-height: 100vh;
}

.form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 40px 0;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: #1c1c1c;
    line-height: normal;
    letter-spacing: -0.114px;
}

.form-row {
    display: flex;
    gap: 80px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.form-label {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #1c1c1c;
    line-height: normal;
    letter-spacing: -0.114px;
}

.required {
    color: #ff2b00;
}

.input-wrapper {
    position: relative;
    background-color: #f7f7f7;
    border: none;
    border-radius: 10px;
    padding: 10px 30px;
    min-height: 60px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    background-color: #ffffff;
    border: 1px solid #d8daeb;
}

.form-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
    line-height: 24px;
    letter-spacing: -0.112px;
}

.form-input::placeholder {
    color: #999999;
}

.form-textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #1c1c1c;
    line-height: 24px;
    resize: vertical;
    min-height: 100px;
}

.input-suffix {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
    margin-left: 8px;
}

.date-range-wrapper {
    position: relative;
    background-color: #f7f7f7;
    border: none;
    border-radius: 10px;
    padding: 10px 30px;
    min-height: 60px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.date-range-wrapper:focus-within {
    background-color: #ffffff;
    border: 1px solid #d8daeb;
}

.date-range-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
    line-height: 24px;
    cursor: pointer;
    letter-spacing: -0.112px;
}

.date-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.country-flag {
    width: 24px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Category Buttons */
.category-buttons {
    display: flex;
    gap: 20px;
    width: 100%;
}

.category-btn {
    background-color: #f7f7f7;
    border: 1px solid #d8daeb;
    border-radius: 10px;
    padding: 10px 30px;
    height: 60px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #999999;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.112px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-btn.active {
    background-color: #ff4e7a;
    color: #ffffff;
    border-color: #ff4e7a;
}

.category-btn:hover {
    background-color: #e63e6a;
    color: #ffffff;
    border-color: #e63e6a;
}

/* Tax Buttons */
.tax-buttons {
    display: flex;
    gap: 20px;
    width: 100%;
}

.tax-btn {
    background-color: #f7f7f7;
    border: 1px solid #d8daeb;
    border-radius: 10px;
    padding: 10px 30px;
    height: 60px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #999999;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.112px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tax-btn.active {
    background-color: #ff4e7a;
    color: #ffffff;
    border-color: #ff4e7a;
}

.tax-btn:hover {
    background-color: #e63e6a;
    color: #ffffff;
    border-color: #e63e6a;
}

/* Option Inputs */
.option-inputs {
    margin-bottom: 40px;
}

.option-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.option-row .input-wrapper {
    flex: 1;
}

.register-btn {
    background-color: #575757;
    border: none;
    border-radius: 10px;
    padding: 10px 30px;
    min-height: 60px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: -0.112px;
    min-width: 199px;
}

.register-btn:hover {
    background-color: #4a4a4a;
}

/* Option Table */
.option-table {
    border: none;
    border-radius: 0;
}

.table-header {
    background-color: #f7f7f7;
    height: 80px;
    display: flex;
    align-items: center;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.header-cell {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    flex-shrink: 0;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
    letter-spacing: 0.64px;
}

.option-col {
    width: 426px;
    justify-content: flex-start;
    padding-left: 40px;
}

.price-col {
    width: 254px;
}

.action-col {
    width: 254px;
    justify-content: flex-end;
    padding-right: 10px;
}

.table-body {
    display: flex;
    flex-direction: column;
}

.table-row {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #f3f3f3;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

.table-row:last-child {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.table-row:hover {
    background-color: #f8f8f8;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
    letter-spacing: 0.64px;
}

.table-cell input {
    width: 100%;
    border: 1px solid #b2b2b2;
    border-radius: 4px;
    padding: 8px 12px;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
}

.currency {
    color: #999999;
    margin-right: 4px;
}

.amount {
    color: #1c1c1c;
}

.option-col {
    justify-content: flex-start;
    padding-left: 40px;
    width: 426px;
}

.price-col {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
    letter-spacing: 0.64px;
    width: 254px;
}

.total-amount {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1c1c1c;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed #d8daeb;
    border-radius: 10px;
    padding: 48px;
    text-align: center;
    background-color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.file-upload-area:hover {
    border-color: #ff4e7a;
    background-color: #fff5f7;
}

.file-upload-area.dragover {
    border-color: #ff4e7a;
    background-color: #fff5f7;
}

.upload-icon {
    margin-bottom: 36px;
}

.upload-icon img {
    width: 52px;
    height: 52px;
    opacity: 0.6;
}

.upload-text {
    margin-bottom: 36px;
}

.upload-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
    margin-bottom: 8px;
    letter-spacing: 0.16px;
}

.upload-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #7d7d7d;
}

.upload-btn {
    background-color: #ffffff;
    border: 1px solid #d5d3e0;
    border-radius: 11px;
    padding: 0;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.64px;
    box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.02);
    height: 54px;
    min-width: 233px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-btn:hover {
    background-color: #f5f5f5;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.uploaded-files {
    margin-bottom: 50px;
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 16px 25px;
    background-color: #fefefe;
    border-radius: 10px;
    border: 1px solid #d8daeb;
    margin-bottom: 0;
}

.file-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 8px;
    border: none;
}

.file-icon img {
    width: 45px;
    height: 45px;
    opacity: 1;
    border: none;
}

.file-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.file-name {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
    letter-spacing: 0.64px;
}

.file-progress {
    display: flex;
    align-items: center;
    gap: 9px;
}

.progress-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #949fb1;
}

.progress-separator {
    width: 0px;
    height: 15px;
    background-color: #949fb1;
    transform: rotate(90deg);
}

.progress-dot {
    width: 9px;
    height: 9px;
    background-color: #a305c6;
    border-radius: 50%;
}

.loading-icon {
    width: 21px;
    height: 21px;
}

.delete-btn {
    background-color: #ffffff;
    border: 1px solid #d5d3e0;
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 5.981px 23.922px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
}

.delete-btn:hover {
    background-color: #f5f5f5;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.delete-btn img {
    width: 24px;
    height: 24px;
}

/* Button Section */
.button-section {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
}

.btn-primary {
    background-color: #6f6f6f;
    border: none;
    border-radius: 10px;
    padding: 0;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 214px;
    height: 64px;
    letter-spacing: -0.112px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: #5a5a5a;
}

.btn-secondary {
    background-color: #ffffff;
    border: 1px solid #d8daeb;
    border-radius: 10px;
    padding: 0;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1c1c1c;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 214px;
    height: 64px;
    letter-spacing: -0.112px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

/* Date Range Picker Custom Styles */
.daterangepicker {
    border: 1px solid #ececec;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Pretendard', sans-serif;
    width: 640px !important;
}

.daterangepicker .ranges {
    display: none;
}

.daterangepicker .drp-calendar {
    width: 100% !important;
    max-width: 320px !important;
}

.daterangepicker .drp-calendar.left {
    display: block !important;
    width: 50% !important;
    max-width: 320px !important;
}

.daterangepicker .drp-calendar.right {
    display: block !important;
    width: 50% !important;
    max-width: 320px !important;
}

.daterangepicker .drp-calendar {
    width: 100% !important;
    max-width: 320px !important;
}

.daterangepicker .calendar-table {
    background-color: #ffffff;
    border: none;
    width: 100% !important;
}

.daterangepicker .calendar-table th {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
    padding: 8px 4px;
    border: none;
}

.daterangepicker .calendar-table th.weekend {
    color: #f36a6a;
}

.daterangepicker .calendar-table th.weekend:last-child {
    color: #6a7af3;
}

.daterangepicker .calendar-table td {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #858585;
    padding: 8px;
    border: none;
    text-align: center;
}

.daterangepicker .calendar-table td.available:hover {
    background-color: #ffeaef;
    color: #1c1c1c;
    border-radius: 8px;
}

.daterangepicker .calendar-table td.in-range {
    background-color: #ffeaef;
    color: #1c1c1c;
}

.daterangepicker .calendar-table td.start-date {
    background-color: #ff86a4;
    color: #ffffff;
    border-radius: 8px 0 0 8px;
}

.daterangepicker .calendar-table td.end-date {
    background-color: #ff86a4;
    color: #ffffff;
    border-radius: 0 8px 8px 0;
}

.daterangepicker .calendar-table td.start-date.end-date {
    border-radius: 8px;
}

.daterangepicker .drp-selected {
    display: none !important;
}

/* Month/Year Header */
.daterangepicker .calendar-table .month {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1c1c1c;
    text-align: left;
    padding: 15px 20px;
}

.daterangepicker .calendar-table .next {
    text-align: right;
    padding: 0 15px 0 0;
}

.daterangepicker .calendar-table .prev {
    text-align: left;
    padding: 0 0 0 15px;
}

.daterangepicker .calendar-table .prev:before {
    content: '‹';
    font-size: 24px;
    color: #1c1c1c;
}

.daterangepicker .calendar-table .next:before {
    content: '›';
    font-size: 24px;
    color: #1c1c1c;
}

/* Buttons */
.daterangepicker .drp-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-top: 1px solid #ececec;
    flex-wrap: nowrap;
}

.daterangepicker .drp-buttons .btn {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #ff86a4;
    background-color: #ffffff;
    color: #ff86a4;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 42px;
    width: 93px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.daterangepicker .drp-buttons .btn:hover {
    background-color: #fff5f7;
}

.daterangepicker .drp-buttons .btn.btn-primary {
    background-color: #ff86a4;
    color: #ffffff;
    border-color: #ff86a4;
    width: 96px;
}

.daterangepicker .drp-buttons .btn.btn-primary:hover {
    background-color: #ff6b8a;
}

.daterangepicker .drp-buttons {
    border-top: 1px solid #ececec;
    padding: 15px 20px;
    text-align: right;
}

.daterangepicker .drp-buttons .btn {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
    margin-left: 8px;
}

.daterangepicker .drp-buttons .btn.btn-sm.btn-default {
    background-color: #ffffff;
    border: 1px solid #ff86a4;
    color: #ff86a4;
}

.daterangepicker .drp-buttons .btn.btn-sm.btn-primary {
    background-color: #ff86a4;
    border: 1px solid #ff86a4;
    color: #ffffff;
}

.daterangepicker .calendar-table .month {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1c1c1c;
    padding: 10px 19px 10px 19px;
}

.daterangepicker .calendar-table .prev,
.daterangepicker .calendar-table .next {
    width: 20px;
    height: 20px;
    margin: 10px 5px;
}

.daterangepicker .calendar-table .prev:before,
.daterangepicker .calendar-table .next:before {
    content: '';
    display: none;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.daterangepicker .calendar-table .prev:before {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjUgMTUuNUw3LjUgMTAuNUwxMi41IDUuNSIgc3Ryb2tlPSIjMWMxYzFjIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=');
}

.daterangepicker .calendar-table .next:before {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuNSAxNS41TDEyLjUgMTAuNUw3LjUgNS41IiBzdHJva2U9IiMxYzFjMWMiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==');
}

.daterangepicker .calendar-table table {
    border-collapse: unset !important;
    border-spacing: 0px 8px !important;
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    height: 10px !important;
    line-height: 10px !important;
}

.daterangepicker.show-calendar .drp-buttons {
    display: flex !important
}

/* Date Picker Modal */
.date-picker-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.date-picker-modal.show {
    display: flex;
}

.date-picker-content {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.date-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9e9e9;
}

.date-picker-header h3 {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1c1c1c;
    margin: 0;
}

.daterangepicker .calendar-table th:nth-child(1),
.daterangepicker .calendar-table td:nth-child(1) {
    color: #f36a6a !important
}

.daterangepicker .calendar-table th:nth-child(7),
.daterangepicker .calendar-table td:nth-child(7) {
    color: #6a7af3 !important
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #8d8d8d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #1c1c1c;
}

.date-picker-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9e9e9;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .form-content {
        padding: 40px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .product-col {
        width: 35%;
    }

    .price-col,
    .quantity-col,
    .total-col,
    .action-col {
        width: 15%;
    }
}

@media (max-width: 768px) {
    .form-content {
        padding: 20px;
    }

    .table-header,
    .table-row {
        flex-wrap: wrap;
        height: auto;
        padding: 10px;
    }

    .header-cell,
    .table-cell {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 10px;
    }

    .button-section {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Ing List Page Styles */
.ing-content {
    flex: 1;
    padding: 40px 0;
    max-width: 1080px;
}

.page-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #8d8d8d;
    margin-bottom: 48px;
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 41px;
}

.search-section {
    display: flex;
    justify-content: flex-end;
}

.search-box {
    background-color: rgba(28, 28, 28, 0.03);
    border-radius: 9px;
    height: 40px;
    width: 337px;
    padding: 4.5px 13.5px;
    display: flex;
    align-items: center;
}
.controls-search{display:flex}

.search-placeholder {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.search-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon img {
    width: 100%;
    height: 100%;
}

.search-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15.75px;
    color: rgba(28, 28, 28, 0.3);
}

.table-container {
    width: 100%;
    background-color: #ffffff;
    border-radius: 0;
}

.table-header {
    background-color: #f3f3f3;
    height: 70px;
    display: flex;
    align-items: center;
    width: 100%;
}

.header-cell {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1c1c1c;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-name-col {
    width: 300px;
    justify-content: flex-start;
}

.country-col {
    width: 120px;
}

.category-col {
    width: 130px;
}

.period-col {
    width: 200px;
}

.status-col {
    width: 188px;
}

.action-col {
    width: 80px;
}

.table-body {
    width: 100%;
}

.table-row {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f3f3f3;
    width: 100%;
}

.table-cell {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.event-name {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #1c1c1c;
    white-space: nowrap;
}

.country-flag {
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-flag img {
    width: 24px;
    height: 18px;
}

.category-text,
.period-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #8d8d8d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Status Select Box Styles */
.status-select-container {
    position: relative;
    width: 100%;
    max-width: 120px;
}

.status-select-trigger {
    background-color: #f7f7f7;
    border: 1px solid #ececec;
    border-radius: 5px;
    height: 39px;
    padding: 0 15px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.status-select-trigger:hover {
    background-color: #f0f0f0;
}

.status-select-trigger.active {
    background-color: #ffe7ed;
    border-color: #ececec;
}

.status-select-trigger.inactive {
    background-color: #f7f7f7;
    border-color: #ececec;
}

.status-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #1c1c1c;
}

.status-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
    transition: transform 0.2s ease;
}

.status-arrow img {
    width: 18px;
    height: 18px;
}

.status-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #ececec;
    border-top: none;
    border-radius: 0 0 5px 5px;
    z-index: 1000;
    display: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-select-container.open .status-dropdown {
    display: block;
}

.status-select-container.open .status-arrow {
    transform: rotate(270deg);
}

.status-select-container.open .status-select-trigger {
    background-color: #ffe7ed;
    border-color: #ff4e7a;
}

.status-select-container.open .status-arrow img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(118%) contrast(119%);
}

.status-option {
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #ececec;
}

.status-option:last-child {
    border-bottom: none;
}

.status-option:hover {
    background-color: #ffe7ed;
    color: #ff4e7a;
}

.action-btn {
    background-color: #ffffff;
    border: 0.921px solid #d5d3e0;
    border-radius: 7.704px;
    box-shadow: 0px 4.607px 18.429px 0px rgba(0, 0, 0, 0.02);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background-color: #f8f8f8;
    transform: translateY(-1px);
}

.action-btn img {
    width: 18px;
    height: 18px;
}

/* Trend Page Styles */
.trend-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 0;
}

.category-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.tab-item {
    padding: 10px 10px 20px 10px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1c1c1c;
    transition: color 0.3s ease;
}

.tab-item.active .tab-text {
    color: #ff668c;
}

.tab-item:hover .tab-text {
    color: #ff668c;
}

.main-banner {
    border-radius: 10px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.controls-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
	
    margin-bottom: 80px;
}

.sort-buttons {
	margin-left:40px;
    display: flex;
    gap: 10px;
}

.sort-btn {
    padding: 0 17px;
	height:40px;line-height:40px;
    border: none;
    background: transparent;
    border-radius: 5px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #999999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-btn.active {
    background-color: #ff668c;
    color: white;
}

.sort-btn:hover {
    color: #ff668c;
}

.search-section {
    display: flex;
    width: 360px;
    gap: 0;
}

.search-input {
    flex: 1;
}

.search-field {
    width: 100%;
	height:40px;
    background-color: #f5f5f5;
    border-radius: 60px 0 0 60px;
    border: none;
    font-weight: 500;
    font-size: 14px;
	padding:0 0 0 16px;
    color: #999999;
    outline: none;
}

.search-field::placeholder {
    color: #999999;
}

.search-btn {
    color: white;
	border:0;
    padding: 0 14px 0 0;
    height: 40px;
    box-sizing: border-box;
	border-radius:0 60px 60px 0;
	background-color:#f5f5f5;
}

.search-btn:hover {
}

.trend-grid {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.trend-row {
    display: flex;
    gap: 53px;
}

.trend-card {
    width: 320px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
		position:relative;
}
.trend-card .ad-icon{position:absolute;right:24px;top:22px;}

.trend-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

._review .card-image {
    height: 320px;
}

.card-image img {
    width: 100%;
    height: 100%;
/*    object-fit: cover;*/
    object-position: top
}

.card-content {
    background-color: #f8f8f8;
    padding: 18px 25px;
    height: 110px;

}

.card-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #383838;
    margin: 0;

	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;

  
}

.card-author {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #666666;
    margin: 0;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .trend-content {
        padding: 60px 20px;
    }

    .trend-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .trend-card {
        width: calc(50% - 10px);
        max-width: 320px;
    }

    .controls-section {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .search-section {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .trend-card {
        width: 100%;
        max-width: 320px;
    }

    .category-tabs {
        justify-content: center;
    }
}

/* Detail Page Styles */
.detail-content {
    gap: 181px;
    align-items: flex-start;
    padding: 0px 0;
    width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 140px);
    flex-direction: row;
}

.detail-main {
    width: 720px;
    flex-shrink: 0;
}

.detail-image {
    width: 100%;
    height: 367px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 50px;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-body {

    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-text {
	position:relative;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.detail-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.detail-description {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #2b2b2b;
    letter-spacing: -0.27px;
}

.detail-description p {
    margin: 0 0 18px 0;
}

.detail-description p:last-child {
    margin-bottom: 0;
}

/* Comment Section */
.comment-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 60px;
}

.comment-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    letter-spacing: -0.36px;
    margin: 0;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item,
.comment-reply-item {
    display: flex;
    gap: 33px;
    padding: 10px 0 20px 0;
    border-bottom: 1px solid #f2f2f2;
    position: relative;
}

.comment-reply-item {
    padding-left: 65px;
}

.comment-avatar {
    width: 37px;
    height: 37px;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.comment-header {
    display: flex;
    gap: 14px;
    align-items: center;
}

.comment-header small {
    color: #FF4072;
    font-size: 10px;
    font-weight: 500;
    width: 40px;
    border-radius: 30px;
    background-color: #ffeaef;
    text-align: center;
    padding: 2px 0;
}

.comment-author {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #222222;
}

.author-badge {
    background-color: #ffeaef;
    color: #ff4072;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 10px;
    padding: 5px 7px;
    border-radius: 999px;
}

.comment-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    letter-spacing: -0.32px;
}

.comment-meta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.comment-date,
.comment-time {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

.comment-reply {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #999999;
    cursor: pointer;
}

.comment-reply:hover {
    color: #ff779a;
}

.comment-remove {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #999999;
    cursor: pointer;
}

.comment-remove:hover {
    color: #ff779a;
}

/* Comment Form */
.comment-form {
    margin-top: 20px;
}

.comment-input-wrapper {
    position: relative;
    display: flex;
    align-items: end;
}

.comment-input {
    border: 2px solid #eeeeee;
    border-radius: 10px;
    height: 97px;
    flex: 1;
    outline: none;
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    color: #1e293b;
    letter-spacing: -0.3px;
    background: transparent;
    padding: 20px 100px 20px 20px;
    resize: none;
}

.comment-input::placeholder {
    color: #999999;
}
.comment-input:focus{border-color: #FF6F91}

.comment-submit-btn,
.detail-content .login_chk {
    background-color: #ff779a;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.3px;
    cursor: pointer;
    width: 70px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
	position:absolute;right:15px;bottom:20px;
}

.comment-submit-btn:hover,
.detail-content .login_chk:hover {
    background-color: #ff4e7a;
}

/* Detail Sidebar */
.detail-sidebar {
	position:absolute;right:0;top:0;
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 97px;
}

/* Popular Tabs */
.popular-tabs {
    display: flex;
    gap: 0;
    border-radius: 999px;
    overflow: hidden;
}

.tab-btn {
    flex: 1;
    height: 35px;
    border: none;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    letter-spacing: -0.5857px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: #ff779a;
    color: white;
    font-weight: 700;
}

.tab-btn:not(.active) {
    background-color: transparent;
    color: silver;
    font-weight: 600;
}

.tab-btn:hover:not(.active) {
    background-color: #f5f5f5;
}

/* Popular List */
.popular-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 0 10px;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 20px;
}

.popular-item .rank {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ff779a;
    letter-spacing: -0.5857px;
    flex-shrink: 0;
}

.popular-item:nth-child(n+4) .rank {
    color: silver;
}

.popular-item .title {
    flex: 1;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    letter-spacing: -0.5857px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ad Banner */
.ad-banner {
    max-width: 1440px;
    width: 100%;
    max-height: 450px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 72px;
    margin: 0 auto
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 33px;
    align-items: center;
    text-align: center;
}

.banner-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 33.516px;
    line-height: 1.16;
    color: #ebebeb;
    letter-spacing: -1.3407px;
    margin: 0;
}

.banner-btn {
    background: transparent;
    border: 1.057px solid white;
    border-radius: 859.237px;
    color: white;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16.45px;
    line-height: 1.2;
    padding: 8.601px;
    cursor: pointer;
    width: 136.755px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Medical Detail Page Styles */
.medical-detail-content {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 0;
}

.medical-header {
    margin-bottom: 21px;
}

.hospital-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.hospital-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hospital-icon img {
    width: 100%;
    height: 100%;
}

.hospital-name {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #000000;
    letter-spacing: -0.132px;
    margin: 0;
}

.medical-banner {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 9px;
}

.banner-image {
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    padding-left: 42px;
}

.banner-text h2 {
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 102.859px;
    color: white;
    margin: 0;
    line-height: 1;
}

.banner-text h3 {
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
    font-size: 102.859px;
    color: white;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

.medical-tabs {
    margin-bottom: 0;
}

.tab-row {
    display: flex;
    height: 64px;
}

.tab-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13.889px;
    border: 1px solid #eaeaea;
    border-right: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.108px;
    color: #313131;
}

.tab-item:last-child {
    border-right: 1px solid #eaeaea;
}

.tab-item.active {
    background-color: #313131;
    color: white;
}

.tab-item:hover {
    background-color: #f5f5f5;
    color: #313131;
}



.medical-main {
    position: relative;
    padding-top: 38px;
    display: flex;
    gap: 37px;
    align-items: flex-start;
    justify-content: space-between;
}

.medical-left {
    flex: 1;
    max-width: 700px;
    min-width: 0;
    padding-top: 51px;
}

.medical-sidebar {
    z-index: 2;
    position: absolute;
    right: 0;
    width: 600px;
    flex-shrink: 0;
}

.event-info {
    margin-bottom: 41px;
}

.event-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #000000;
    letter-spacing: -0.192px;
    margin: 0 0 15px 0;
}

.event-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 11px;
}

.meta-label {
    background-color: #f5f6f6;
    color: #848484;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.084px;
    padding: 0 9.421px;
    height: 25px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-value {
    color: #848484;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.084px;
}

.event-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 33px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-list {
    display: flex;
    flex-direction: column;
    gap: 33px;
}

.treatment-item {
	position:relative;
    padding-bottom: 53px;
    border-bottom: 1px solid #e0e0e0;
}



.treatment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.treatment-name {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #000000;
    letter-spacing: -0.108px;
    margin: 0;
    flex: 1;
}

.treatment-toggle {
    background-color: black;
    color: white;
    border: 0.732px solid black;
    border-radius: 0;
    padding: 7.322px 29.29px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.096px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 39.541px;
    min-width: 134px;
	border-radius:5px;
    position: absolute;
    bottom: 53px;
}

.treatment-toggle.selected {
    background-color: black;
    color: white;
}

.treatment-toggle:not(.selected) {
    background-color: white;
    color: black;
}

.treatment-pricing {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 220px;
    margin-left: auto;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #bbb;
    letter-spacing: -0.12px;
}
.price-label._02{color:#333}

.price-value.original {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #bbb;
    letter-spacing: -0.132px;
}

.price-value.discount {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #333;
    letter-spacing: -0.132px;
}

.selected-treatments {
    background-color: #f9f9f9;
    padding: 41px 32px;
    border-radius: 10px;
    margin-bottom: 37px;
}

.sidebar-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #797979;
    letter-spacing: -0.078px;
    margin: 0 0 23px 0;
}

.treatment-summary {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10px 25px 10px;
    border-bottom: 1px solid #acacac;
	
}



.summary-name {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    letter-spacing: -0.0962px;
}

.summary-price {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    letter-spacing: -0.108px;
}

.payment-summary {
    display: flex;
    flex-direction: column;
    gap: 37px;
}

.total-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.total-label span:first-child {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    letter-spacing: -0.132px;
}

.vat-note {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #999999;
    letter-spacing: -0.132px;
}

.total-amount {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #000000;
    letter-spacing: -0.192px;
}

.apply-btn,.apply-btn-off {
    background-color: black;
    color: white;
    border: none;
    border-radius: 0;
    padding: 17px 0;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.132px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 72px;
    width: 100%;
	border-radius:10px;
}

.apply-btn {
    background-color: #F2789F;
}
.apply-btn:hover {
    background-color: #F2789F;
}

/* Signup Page Styles */
.signup-page {
    background-color: #ffffff;
    min-height: 100vh;
}

.signup-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 0;
    min-height: calc(100vh - 140px);
}

.signup-form {
    width: 399px;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.form-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 38px;
    color: #383838;
    letter-spacing: -1.52px;
    margin: 0;
    line-height: 1;
}

.form-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #999999;
    letter-spacing: -0.64px;
    margin: 0;
    line-height: 1;
}

.signup-form-content {
    display: flex;
    flex-direction: column;
    gap: 49px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 59px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
    margin: 0;
}

.form-input {
    width: 100%;
    height: 45px;
    padding: 0 16px;
    border: 1.5px solid #d9d9d9;
    border-radius: 5px;
    background-color: #ffffff;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #000000;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #999999;
}

.form-input:focus {
    outline: none;
    border-color: #ff779a;
}

/* 생년월일 입력 */
.birthday-inputs {
    display: flex;
    gap: 12px;
}

.birthday-field {
    position: relative;
    flex: 1;
}

.birthday-field .form-input {
    padding-right: 40px;
}

.birthday-field .form-select {
    width: 100%;
    height: 48px;
    padding: 0 40px 0 16px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #ffffff;
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    color: #333333;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.birthday-field .form-select:disabled {
	background-color:#E0E0E0
}
.birthday-field .form-select:focus {
    outline: none;
    border-color: #ff668c;
}

.birthday-field .form-select option {
    padding: 10px;
    color: #333333;
}

.dropdown-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    pointer-events: none;
}

/* 성별 선택 */
.select-field {
    position: relative;
}

.select-field .form-input {
    padding-right: 40px;
    cursor: pointer;
}

.select-field .form-select {
    width: 100%;
    height: 52px;
    padding: 0 40px 0 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    color: #333333;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select-field .form-select:focus {
    outline: none;
    border-color: #ff668c;
}

.select-field .form-select option {
    padding: 10px;
    color: #333333;
}

/* 휴대전화 인증 */
.phone-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.country-select {
    position: relative;
}

.country-select .form-input {
    padding-right: 40px;
    cursor: pointer;
}

.country-select .form-select {
    width: 100%;
    height: 52px;
    padding: 0 40px 0 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    color: #333333;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.country-select .form-select:focus {
    outline: none;
    border-color: #ff668c;
}

.country-select .form-select option {
    padding: 10px;
    color: #333333;
}

.phone-inputs {
    display: flex;
    gap: 9px;
}

.phone-input {
    flex: 1;
}

.verify-btn {
    width: 135px;
    height: 48px;
    background-color: #ff779a;
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.verify-btn:hover {
    background-color: #ff668c;
}

.verify-input {
    background-color: #f1f1f1;
}

/* 가입 버튼 */
.signup-btn {
    width: 100%;
    height: 60px;
    background-color: #ff779a;
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-btn:hover {
    background-color: #ff668c;
}

/* 로그인 링크 */
.login-link {
    text-align: center;
}

.login-link p {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #6c6c6c;
    margin: 0;
}

.login-link-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    color: #ff779a;
    text-decoration: underline;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.login-link-text:hover {
    color: #ff668c;
}

/* Login Page Styles */
.login-page {
    background-color: #ffffff;
    min-height: 100vh;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 0;
    min-height: calc(100vh - 140px);
}

.login-form {
    width: 395px;
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.login-form .form-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-form .form-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #383838;
    letter-spacing: -1.12px;
    margin: 0;
    line-height: 1;
}

.login-form .form-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #999999;
    letter-spacing: -0.6px;
    margin: 0;
    line-height: 1;
}

.login-form-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.login-form .form-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-form .form-label {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #333333;
    letter-spacing: 0.3px;
    margin: 0;
}

.input-wrapper {
    position: relative;
    height: 48px;
    padding: 0;
    border: 0.5px solid #e5e5e5;
    border-radius: 6px;
    background-color: #fff;
}

.input-wrapper .form-input {
    width: 100%;
    height: 100%;
    padding: 0 16px;
    border: none;
    border-radius: 6px;
    background-color: transparent;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #000000;
    box-sizing: border-box;
}

.input-wrapper .password-input {
    padding: 0 40px 0 16px;
}

.input-wrapper .form-input::placeholder {
    color: #999999;
}

.input-wrapper .form-input:focus {
    outline: none;
}

.input-wrapper:focus-within {
    border-color: #ff779a;
    background-color: #ffffff;
}

.input-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.password-toggle {
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.password-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.input-icon img {
    width: 100%;
    height: 100%;
}

/* 로그인 옵션 */
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.switcher {
    position: relative;
    width: 40px;
    height: 20px;
}

.switcher-input {
    display: none;
}

.switcher-label {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    border: 0.5px solid #e5e5e5;
    border-radius: 36.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.switcher-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 1px 1px 2px -1px rgba(51, 51, 51, 0.3);
    transition: all 0.3s ease;
}

.switcher-input:checked+.switcher-label {
    background-color: #ff779a;
    border-color: #ff779a;
}

.switcher-input:checked+.switcher-label .switcher-knob {
    transform: translateX(20px);
}

.remember-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    line-height: 20px;
}

.forgot-password {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #ff779a;
    letter-spacing: 0.3px;
    line-height: 20px;
    text-decoration: none;
    text-align: right;
}

.forgot-password:hover {
    color: #ff668c;
}

/* 로그인 버튼 */
.login-btn {
    width: 100%;
    height: 40px;
    background-color: #ff779a;
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-btn:hover {
    background-color: #ff668c;
}

/* 회원가입 링크 */
.signup-link {
    text-align: center;
}

.signup-link p {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    line-height: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.signup-link-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    color: #ff779a;
    text-decoration: none;
}

.signup-link-text:hover {
    color: #ff668c;
}

/* Footer Styles */


.wave-footer {
    width: 100%;
    height: 255px;
    pointer-events: none;
}

.wave-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    vertical-align: middle;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 0 0 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 31px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.footer-logo .logo-bg {
    width: 100%;
    height: 100%;
    background-color: #ff4e7a;
    border-radius: 7.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 8px;
    color: white;
    text-align: center;
    line-height: 1;
}

.footer-logo .logo-text p {
    margin: 0;
}

.brand-name {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #383838;
    letter-spacing: -0.96px;
    margin: 0;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
    margin-bottom: 0;
    padding-bottom: 80px;
}

.footer-description {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    text-align: center;
    margin: 0;
}

.contact-btn {
    background-color: #eb6390;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 5px 26px;
    height: 50px;
    width: 203px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #ff4e7a;
}

.footer-copyright {
    position: absolute;
    bottom: 41px;
    left: 32px;
}

.footer-copyright p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: white;
    margin: 0;
}

.scroll-to-top {
    position: absolute;
    bottom: 41px;
    right: 40px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
}

.scroll-arrow {
    width: 32px;
    height: 32px;
    transform: rotate(270deg);
}

/* Company Page Styles */
.company-page {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 80px 0;
}

.company-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 240px;
    display: flex;
    justify-content: center;
}

.company-form {
    width: 100%;
    max-width: 399px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.form-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 38px;
    color: #383838;
    letter-spacing: -1.52px;
    margin: 0;
    line-height: 1;
}

.form-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #999999;
    letter-spacing: -0.6px;
    line-height: 1.6;
    margin: 0;
}

.company-form-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #1a1a1a;
    margin: 0;
    line-height: 1;
}

.section-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #1a1a1a;
    margin: 0;
    line-height: 1;
}

.note {
    color: #999999;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
    margin: 0;
    line-height: 1;
}

.label-note {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #999999;
}

.input-wrapper {
    position: relative;
    height: 45px;
}

.form-input {
    width: 100%;
    height: 100%;
    padding: 0 21px;
    border: 1.5px solid #d9d9d9;
    border-radius: 5px;
    background-color: #ffffff;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #1a1a1a;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #b5b5b5;
}

.form-input:focus {
    outline: none;
    border-color: #ff779a;
}

.input-with-button {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}

.add-item-btn {
    background-color: #eeeeee;
    color: #999999;
    border: none;
    border-radius: 999px;
    padding: 4px 7px;
    height: 30px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.add-item-btn:hover {
    background-color: #e0e0e0;
}

.checkbox-group {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.checkbox-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.checkbox-item {
	position:relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-input {
    display: block;
	opacity:0;
	width:100%;
	position:absolute;
	left:0;top:0;
	height:100%;
}
.checkbox-input:focus + .checkbox-label .checkbox-custom{
	border:1px solid #ff779a;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #333333;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #d9d9d9;
    border-radius: 50%;
    background-color: #ffffff;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-input:checked+.checkbox-label .checkbox-custom {
    background-color: #ff779a;
    border-color: #ff779a;
}

.checkbox-input:checked+.checkbox-label .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
}

.textarea-wrapper {
    height: 105px;
}

.form-textarea {
    width: 100%;
    height: 100%;
    padding: 13px 21px;
    border: 1.5px solid #d9d9d9;
    border-radius: 5px;
    background-color: #f5f5f5;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #1a1a1a;
    resize: none;
    box-sizing: border-box;
}

.form-textarea::placeholder {
    color: #b5b5b5;
}

.form-textarea:focus {
    outline: none;
    border-color: #ff779a;
    background-color: #ffffff;
}

.submit-btn {
    width: 100%;
    height: 60px;
    background-color: #ff779a;
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn:hover {
    background-color: #ff668c;
}

/* Trend Page Tab Styles */
.trend-category-tabs {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
	padding-top:10px
}

.trend-tab-item {
    position: relative;
    height: 40px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    flex-shrink: 0;
    border-bottom: 3px solid #fff;
}

.trend-tab-item.active,
.trend-tab-item:hover {
    border-bottom: 3px solid #ff668c;
}

.trend-tab-item.active .trend-tab-text {
    color: #ff668c;
    font-weight: 600;
}

.trend-tab-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #000000;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    margin: 0;
}

/* Home Page Styles */
.home-page {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
}

/* 메인 배너 섹션 */
.main-banner-section {
    width: 100%;
    padding: 0 240px;
    margin-bottom: 130px;
}

.banner-container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.banner-image {
    width: 100%;
    height: 540px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #e3e3e3;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #eeeeee;
    padding: 10px 13px;
    border-radius: 939.06px;
    height: 41px;
}

.pagination-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.pagination-btn img {
    width: 100%;
    height: 100%;
}

.pagination-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #999999;
    margin: 0 10px;
}

/* 공지사항 섹션 */
.notice-section {
    width: 100%;
    padding: 0 240px;
    margin-bottom: 80px;
}

.notice-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.notice-content {
    background-color: #f8f8f8;
    padding: 17px 41px;
    border-radius: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notice-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    margin: 0;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;	
}

.notice-btn {
    background-color: #e36586;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0 26.889px;
    height: 40px;
    min-width: 110px;
	
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.notice-btn:hover {
    background-color: #d55a7a;
}

/* 섹션 공통 스타일 */
.section-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #1a1a1a;
    margin: 0 0 60px 0;
    line-height: 1;
}

.section-title .highlight {
    color: #ff779a;
}

/* 클리닉 섹션 */
.clinic-section {
    width: 100%;
    padding: 0 0;
    margin-bottom: 112px;
}

.clinic-grid {
    display: flex;
    gap: 53.037px;
    justify-content: center;
}

.clinic-card {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 21.015px;
}

.clinic-card .card-image {
    width: 100%;
    height: 180.125px;
    border-radius: 10.007px;
    overflow: hidden;
    background-color: #e3e3e3;
}

.clinic-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clinic-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 10.007px;
    width: 280px;
}

.clinic-card .card-category {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15.01px;
    color: #999999;
    margin: 0;
}

.clinic-card .card-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #383838;
    margin: 0;
    line-height: 25px;
}

/* 딜 섹션 */
.deal-section {
    width: 100%;
    padding: 0 0;
    margin-bottom: 60px;
}

.deal-grid {
    display: flex;
    gap: 53.037px;
    justify-content: center;
}

.deal-card {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 21.015px;
}

.deal-card .card-image {
    width: 100%;
    height: 180.125px;
    border-radius: 10.007px;
    overflow: hidden;
    background-color: #e3e3e3;
}

.deal-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 10.007px;
    width: 280px;
}

.deal-card .card-category {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15.01px;
    color: #999999;
    margin: 0;
}

.deal-card .card-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #383838;
    margin: 0;
    line-height: 25px;
}

/* 광고 배너 */
.ad-banner {
    width: 100%;
    padding: 0 0;
    margin-bottom: 60px;
}

.ad-placeholder {
    width: 100%;
    max-width: 1440px;
    height: 250px;
    background-color: #d9d9d9;
    border-radius: 10px;
    margin: 0 auto;
}

/* 트렌드 섹션 */
.trend-section {
    width: 100%;
    padding: 0 0px;
    margin-bottom: 60px;
}

.trend-content {
    display: flex;
    gap: 197px;
    align-items: flex-start;
}

.trend-left {
    width: 581px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.trend-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trend-item {
    display: flex;
    gap: 41px;
    align-items: center;
}

.trend-rank {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #ff779a;
    margin: 0;
    min-width: 50px;
}

.trend-item:nth-child(4) .trend-rank,
.trend-item:nth-child(5) .trend-rank {
    color: #1a1a1a;
}

.trend-image {
    width: 160px;
    height: 90px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #e3e3e3;
}

.trend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trend-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 340px;
}

.trend-category {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #999999;
    margin: 0;
}

.trend-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #383838;
    margin: 0;
    line-height: 20px;
}

.trend-right {
    width: 662px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.new-content-grid {
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.new-content-card {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.new-content-card .card-image {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e3e3e3;
}

.new-content-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-content-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.new-content-card .card-category {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #999999;
    margin: 0;
}

.new-content-card .card-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #383838;
    margin: 0;
}

/* 인사이트 섹션 */
.insight-section {
    width: 100%;
    padding: 0 0px;
    margin-bottom: 60px;
}

.insight-grid {
    display: flex;
    gap: 53px;
    justify-content: center;
}

.insight-column {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.insight-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.insight-card .card-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e3e3e3;
}

.insight-card .card-image.large {
    height: 458px;
}

.insight-card .card-image.small {
    height: 320px;
}

.insight-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-card .card-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #383838;
    margin: 0;
}

/* 리뷰 섹션 */
.review-section {
    width: 100%;
    padding: 0 0px;
    margin-bottom: 60px;
}

.review-card {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 21.015px;
}

.review-card .card-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e3e3e3;
}

.review-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 10.007px;
    width: 280px;
}

.review-card .card-category {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 15.01px;
    color: #999999;
    margin: 0;
}

.review-card .card-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #383838;
    margin: 0;
    line-height: 25px;
}