/* ==========================================================================
메인 페이지 전체 스타일 
========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    padding-top: 220px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1400px;
    margin: 35px auto;
    padding: 50px 20px;
    
}

.section-title {
    font-size: 19px;
    font-weight: bold;
    margin: 90px;
    display: flex;
    align-items: center;
    gap: 5px;
}

header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #f1f3f5;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 9999;
}

.header-top {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo a {
    display: block;
    cursor: pointer;
}

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

/* 1. 검색바 컨테이너 (select가 추가됐으니 너비 살짝 조정하고 gap 추가) */
.search-bar {
    position: relative;
    width: 520px;
    /* 기존 480px에서 살짝 넓혀주면 더 보기 좋아 */
    display: flex;
    align-items: center;
    gap: 8px;
    /* select와 input 사이의 간격 */
}

/* 2. select 박스 예쁘게 꾸미기 (새로 추가) */
.search-bar select {
    padding: 12px 28px 12px 16px;
    /* 우측에 화살표가 들어갈 공간(28px) 확보 */
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    background-color: #f8fafc;
    color: #475569;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    flex-shrink: 0;
    /* 창이 좁아져도 크기가 찌그러지지 않게 방지 */

    /* 기본 화살표 숨기고 예쁜 커스텀 화살표(SVG) 넣기 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    /* 화살표 위치 */
    background-size: 14px;

    transition: all 0.2s;
}

/* select 박스에 마우스 올리거나 클릭(포커스) 시 효과 */
.search-bar select:focus,
.search-bar select:hover {
    border-color: #5a7e4d;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(90, 126, 77, 0.1);
}

/* 3. 기존 input 속성 일부 수정 (width: 100% -> flex-grow: 1) */
.search-bar input {
    flex-grow: 1;
    /* 남은 공간을 input이 모두 차지하도록 설정 */
    width: auto;
    /* 기존 width: 100% 대신 auto 사용 */
    padding: 12px 45px 12px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    outline: none;
    background: #f8fafc;
    font-size: 14px;
    transition: all 0.2s;
}

/* 검색창에 포커스 갔을 때 효과 (기존 코드 유지) */
.search-bar input:focus {
    border-color: #5a7e4d;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(90, 126, 77, 0.1);
}

/* 🔍 새로 추가할 버튼 스타일 */
.search-bar button {
    position: absolute;
    right: 5%;
    top: 45%;
    transform: translateY(-50%);
    background: none;
    border: none;
    outline: none;
    font-size: 18px;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s;
}

/* input에 포커스가 가거나 버튼에 마우스를 올렸을 때 돋보기 색상 변경 */
.search-bar input:focus+button,
.search-bar button:hover {
    color: #5a7e4d;
    /* 테두리 색상과 맞춤 */
}

/* 검색바 여기까지 */

.user-menu {
    display: flex;
    gap: 24px;
    align-items: center;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    color: #475569;
}

.menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

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

.menu-item div {
    font-size: 12px;
    font-weight: 500;
}

/* 네비게이션 바 */
.nav-bar {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 0 80px;
}

.nav-bar li {
    padding: 14px 0;
    font-weight: 700;
    font-size: 15px;
    color: #334155;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.nav-bar li.active,
.nav-bar li:hover {
    color: #5a7e4d;
}

.nav-bar li.active::after,
.nav-bar li:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #5a7e4d;
    animation: fadeInLine 0.2s ease;
}

@keyframes fadeInLine {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================================================
    3. 메인 배너 영역 
   ========================================================================== */
.banner-wrap {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-viewport {
    overflow: hidden;
    width: 100%;
    padding: 0 90px;      /* 양옆 여백 - 이 값으로 옆 이미지 잘리는 정도 조절 */
    box-sizing: border-box;
}

.banner-track {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 0 8px;
}

.banner-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    opacity: 0.5;
    transition: opacity 0.5s;
}

.banner-slide.active img {
    opacity: 1;
}

/* 화살표 */
.banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

/* 패딩값(90px)만큼 안쪽으로 들어와서 현재 이미지 가장자리 위에 걸치도록 */
.banner-btn.prev { left: 82px; }
.banner-btn.next { right: 82px; }

/* ==========================================================================
   4. 카테고리 아이콘 메뉴 
   ========================================================================== */
.category-list {
    display: flex !important;          /* 무조건 박스 유지 */
    flex-direction: row !important;    /* 무조건 가로 방향으로 정렬 고정 */
    justify-content: space-between;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    margin-top: 0px;
    border: 1px solid #f1f5f9;

    flex-wrap: nowrap;                 /* 한 줄에 모두 배치 */
    overflow-x: auto;
}

.category-item {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    outline: none;

    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-icon {
    width: 46px;
    height: 46px;
    background: #f8fafc;
    border-radius: 50%;
    margin: 0 auto 8px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.2s;
    border: 1px solid #f1f5f9;
}

.category-item:hover .category-icon {
    transform: translateY(-2px);
    background: #edf3ea;
}

/* 전체보기 모달 첫 화면 음식명이 길어져도 줄바꿈되지 않게 처리 */
.menu-group .category-search-btn {
    display: inline-block;
    max-width: 115px;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    cursor: pointer;
    text-align: left;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

/* 전체보기 모달 첫 화면 음식명에 마우스를 올렸을 때 효과 */
.menu-group .category-search-btn:hover {
    color: #4a663f;
    font-weight: 700;
    text-decoration: underline;
}

/* 전체보기 모달의 더보기 버튼은 음식명 버튼 스타일 영향을 받지 않도록 분리 */
.menu-group input[type="button"] {
    background: none;
    border: none;
    padding: 0;
    margin-top: 8px;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

/* 더보기 클릭 후 상세 모달 음식명 목록을 왼쪽부터 정렬 */
.main-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 14px;
    align-items: start;
}

/* 더보기 클릭 후 상세 모달 내부 음식명만 버튼처럼 처리 */
.main-list .category-search-btn {
    width: 100%;
    min-height: 50px;
    background: #ffffff;
    border: 1px solid #e7eddf;
    border-radius: 999px;
    padding: 12px 20px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;

    display: flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 더보기 클릭 후 상세 모달 내부 음식명 버튼에 마우스를 올렸을 때 효과 */
.main-list .category-search-btn:hover {
    background: #f3f8ee;
    border-color: #cbdcbd;
    color: #4a663f;
    font-weight: 700;
    transform: translateY(-2px);
}

/* ==========================================================================
   5. 레시피 카드 그리드 레이아웃 
   ========================================================================== */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.recipe-card {
    background: #fff;
    
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* 기본 그림자 투명도를 살짝 높여서 배경과 분리 */
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #cbd5e1; /* 기존 #f1f5f9 보다 확실히 진한 테두리 색상 적용 */
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18); /* 호버 시 그림자를 훨씬 진하고 넓게 퍼지게 수정 */
    
}

/* 기존 .recipe-img 속성 수정 */
.recipe-img {
    width: 100%;
    height: 130px;
    overflow: hidden;
}

/* 새로 추가할 부분: img 태그가 부모 박스에 예쁘게 꽉 차도록 설정 */
.recipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ⭐️ 핵심: 비율을 유지하면서 박스 크기에 맞게 남는 부분을 잘라내줌 */
    display: block;
}

.rank-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #4a663f;
    color: #fff;
    padding: 2px 7px;
    font-weight: 700;
    border-radius: 5px;
    font-size: 11px;
}

.recipe-info {
    padding: 12px;
}

.recipe-name {
    font-weight: 700;
    font-size: 13px;
    color: #1e293b;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recipe-author {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 8px;
}

.recipe-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
    border-top: 1px solid #f1f5f9;
    padding-top: 8px;
}

.star-rating {
    color: #f59e0b;
    font-weight: 700;
}

/* ==========================================================================
   6. 중간 2분할 섹션 
   ========================================================================== */
.mid-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 80px;
}

.mid-box {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.refrigerator-box {
    background: linear-gradient(135deg, #f4f7f2 0%, #fcfdfc 100%);
    border: 1px solid #e6eedf;
}

.refrigerator-box h3 {
    font-size: 18px;
    color: #2b4c1f;
    line-height: 1.4;
    margin-bottom: 8px;
}

.refrigerator-box p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.ref-btn {
    background: #4a663f;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    width: fit-content;
    cursor: pointer;
    margin-top: 15px;
    font-weight: 600;
    font-size: 12px;
    transition: background 0.2s;
}

.ref-btn:hover {
    background: #3b5232;
}

/* 오늘의 추천 섹션 */
.box-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.today-main {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
}

.today-main-img {
    width: 110px;
    height: 80px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.today-main-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.today-main-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.today-main-info p {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 6px;
    line-height: 1.4;
}

.today-main-info .author {
    font-size: 11px;
    color: #94a3b8;
}

.today-sub-list {
    display: flex;
    gap: 8px;
}

.today-sub-thumb {
    height: 40px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    flex: 1;
    cursor: pointer;
    transition: opacity 0.2s;
}

.today-sub-thumb:hover {
    opacity: 0.8;
}

/* ==========================================================================
   7. 하단 안내 아이콘 바 
   ========================================================================== */
.info-bar {
    width: 100%;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 20px;
    display: flex;
    justify-content: space-around;
    margin-top: 40px;

    max-width: 1400px;       
    margin: 100px auto 100px auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
}

.info-item small {
    display: block;
    font-weight: 400;
    color: #64748b;
    margin-top: 2px;
    font-size: 11px;
}

/* ==========================================================================
   8. 푸터 스타일 (2단 좌우 정렬 수정본)
   ========================================================================== */
footer {
    width: 100%;
    background-color: #fff;
    color: #333;
    font-size: 13px;
    line-height: 1.6;
    border-top: 1px solid #e2e8f0;
    margin-top: 40px;
}

/* 전체를 감싸는 바깥 상자 */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;       
    gap: 40px;
}

/* 왼쪽: 고객센터 영역 */
.cs-section {
    flex-shrink: 0; 
}

.cs-section h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.cs-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.cs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 140px;
    height: 40px;
    border: 1px solid #8D7B71;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    background-color: #ffffff;
    color: #000000;
    transition: all 0.25s ease;
}

.cs-btn:hover {
    background-color: #F7F5F4;
    border-color: #7A6A60;
}

.hours-info {
    font-size: 12px;
    color: #444;
}

.hours-info p {
    margin-bottom: 2px;
}

/* 오른쪽: 약관 링크 */
.footer-right-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    flex-grow: 1;
    max-width: 900px; 
    align-items: flex-end;
}

/* 우측 상단: 이용약관 등 메뉴 링크 바 */
.footer-nav-bar {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #475569;
    font-size: 13px;
    font-weight: bold; 
    justify-content: flex-end;
}

.nav-links a {
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #1e293b;
    text-decoration: underline;
}

/* 5. 우측 하단*/
.company-info {
    width: 100%;
    text-align: right;
}

.company-info h4 {
    font-size: 14px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 10px;
}

.company-info p {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
}

.company-info p span {
    margin-right: 15px;
    display: inline-block; 
}

.copyright {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 10px;
}

/* ==========================================================================
   9. 우측 하단 고정 챗봇 스타일 
   ========================================================================== */
.chatbot-fixed-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #8D7B71;
    border: none;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    transform-origin: right bottom; /* 화면을 줌아웃 해도 자기 자리를 유지하도록 브라우저 정렬 기준 강제 */
}

.chatbot-fixed-btn span {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    font-family: sans-serif;
    margin-bottom: 1px;
}

.chatbot-fixed-btn:hover {
    background-color: #7A6A60;
    transform: translateY(-3px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
}

/* ==========================================================================
   10. 이달의 제철 요리 
   ========================================================================== */
/* ===== 제철요리 섹션 ===== */
.seasonal-header {
    margin-bottom: 36px;
}

.seasonal-badge {
    display: inline-block;
    background: #e8f5d6;
    color: #2d6a1e;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.seasonal-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.seasonal-subtitle {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

/* ===== 배너 ===== */
.seasonal-banner {
    background: linear-gradient(135deg, #f0f9e4 0%, #f8fdf4 60%, #ffffff 100%);
    border-radius: 20px;
    padding: 36px 44px;
    margin-bottom: 36px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.banner-badge {
    display: inline-block;
    background: #e8f5d6;
    color: #2d6a1e;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.banner-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.banner-desc {
    font-size: 14px;
    color: #888;
    font-weight: 400;
    line-height: 1.6;
}

/* ===== 계절 탭 ===== */
.seasonal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
}

.season-tab-item {
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: #fff;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: none;
}

.season-tab-item:hover {
    border-color: #b5d99c;
    color: #2d6a1e;
    background: #f8fdf4;
}

.season-tab-item.active {
    background: #2d6a1e;
    color: #fff;
    border-color: #2d6a1e;
    box-shadow: 0 3px 10px rgba(45, 106, 30, 0.25);
}

/* ===== 음식 카드 그리드 ===== */
.seasonal-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.seasonal-card {
    background: #fff;
    border: none;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.seasonal-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.card-badge {
    display: inline-block;
    background: #e8f5d6;
    color: #2d6a1e;
    padding: 4px 14px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    width: fit-content;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.card-info {
    flex: 1;
}

.card-food-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.card-food-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    font-weight: 400;
}

.card-thumb {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 16px;
}

.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-recipe {
    display: block;
    text-align: center;
    background: #e8f5d6;
    color: #2d6a1e;
    padding: 12px 0;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.btn-recipe:hover {
    background: #d4edba;
    box-shadow: 0 2px 8px rgba(45, 106, 30, 0.12);
}

/* ===== 반응형 ===== */
@media (max-width: 992px) {
    .seasonal-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .seasonal-card-grid {
        grid-template-columns: 1fr;
    }
    .seasonal-title {
        font-size: 22px;
    }
    .seasonal-banner {
        padding: 24px 20px;
    }
}



.recommend-slide {
    display: none;
}
.recommend-slide.active{
    display: block;
}
