    .product-section {
        max-width: 1200px;
        margin: 60px auto;
        padding: 0 16px;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .product-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #e5e7eb;
        transition: all 0.3s ease;
        position: relative;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: var(--point-color);
    }

    .product-card .thumb {
        width: 100%;
        height: 400px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
    }

    .product-card .thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* 의료기기 이미지가 잘리지 않도록 설정 */
        padding: 20px;
        transition: transform 0.5s ease;
    }

    .product-card:hover .thumb img {
        transform: scale(1.05);
    }

    .product-card .info {
        padding: 24px;
        border-top: 1px solid #f1f5f9;
    }

    .product-card .info .category {
        display: inline-block;
        font-size: 12px;
        font-weight: 600;
        color: var(--point-color);
        background: rgba(44, 67, 73, 0.1);
        padding: 4px 10px;
        border-radius: 4px;
    }

    .product-card .info h4 {
        font-size: 1.25rem;
        color: #111;
        margin-bottom: 8px;
        font-weight: 700;
        line-height: 1.4;
    }

    .product-card .more-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--point-color);
    }

    .product-card .more-btn::after {
        content: '→';
        transition: transform 0.3s;
    }

    .product-card:hover .more-btn::after {
        transform: translateX(5px);
    }

    /* 반응형 */
    @media (max-width: 1024px) {
        .product-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 640px) {
        .product-grid { grid-template-columns: 1fr; }
        .product-card .thumb { height: 400px; }
    }
	
	/* product_write 전용 스타일 */
.write-container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.write-header {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--point-color);
    padding-bottom: 15px;
}

.write-header h3 {
    font-size: 24px;
    color: var(--point-color);
    font-weight: 700;
}

.write-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.input-group.full-width { grid-column: span 2; }

.input-group label {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.input-group input, .input-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

/* 이미지 업로드 박스 */
.image-upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    background: #f8fafc;
}

.image-upload-box:hover { background: #f1f5f9; border-color: var(--point-color); }

.upload-placeholder .icon { font-size: 40px; display: block; margin-bottom: 10px; }
.upload-placeholder .info { font-size: 12px; color: #94a3b8; margin-top: 5px; }

.preview-container img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 6px;
}

.remove-btn {
    margin-top: 10px;
    background: #ef4444;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
}

/* 버튼 */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.btn-submit {
    flex: 2;
    background: var(--point-color);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cancel {
    flex: 1;
    background: #e2e8f0;
    color: #475569;
    padding: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.hide { display: none; }

/* 반응형 */
@media (max-width: 768px) {
    .write-container { padding: 20px; margin: 20px; }
    .write-form .form-grid { grid-template-columns: 1fr; }
    .input-group.full-width { grid-column: span 1; }
}

/* CSS 파일에 추가하거나 <style> 태그 안에 넣으세요 */
#admin-write-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4f46e5; /* 세련된 인디고 블루 */
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px; /* 부드러운 곡선 */
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: none;
    cursor: pointer;
}

#admin-write-btn:hover {
    background-color: #4338ca;
    transform: translateY(-2px); /* 살짝 위로 이동 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

#admin-write-btn:active {
    transform: translateY(0); /* 클릭 시 다시 내려옴 */
}

/* 버튼 컨테이너: 우측 상단이나 하단 적절한 곳에 배치 */
.actions {
    display: flex;
    justify-content: flex-end; /* 우측 정렬 */
}

.edit-btn {
    /* 카테고리 스타일 계승 */
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    
    /* 색상 설정: 포인트 컬러 활용 */
    color: var(--point-color);
    background-color: #ffffff;
    border: 1px solid var(--point-color);
    
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

/* 마우스 올렸을 때 효과 */
.edit-btn:hover {
    background-color: var(--point-color);
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 클릭했을 때 살짝 눌리는 효과 */
.edit-btn:active {
    transform: scale(0.96);
}

.card-header {
    display: flex;
    justify-content: space-between; /* 양 끝 정렬 */
    align-items: center;            /* 높이 중앙 정렬 */
    margin-bottom: 12px;           /* 아래 요소와의 간격 */
	width:100%;
}

.view-container {
    max-width: 1000px;
    margin: 40px auto;
    background: #fff;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
}

/* 상단 섹션 레이아웃 */
.view-top-section {
    display: flex;
    gap: 40px;
    padding: 40px;
    border-bottom: 1px solid #eee;
}

.view-image-area {
    flex: 1;
    max-width: 400px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
}

.view-image-area img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 이미지 비율 유지 */
}

.view-info-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.category-tag {
    display: inline-block;
    color: var(--point-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    background: rgba(44, 67, 73, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    width: fit-content;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    line-height: 1.2;
}

.view-content-section {
    padding: 40px 0px;
	max-width: none;
	 width: 100%;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid var(--point-color);
}

/* Quill 에디터 내용 스타일 정규화 */
#productContent {
    min-height: 200px;
    line-height: 1.6;
    font-size: 16px;
}
#productContent img {
  cursor: zoom-in;
}
.view-footer {
    padding: 0 40px 40px;
    text-align: center;
}

.btn-list {
    padding: 12px 40px;
    background: #666;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* 반응형 */
@media (max-width: 768px) {
    .view-top-section {
        flex-direction: column;
        padding: 20px;
    }
    .view-image-area {
        max-width: 100%;
    }
    .product-title {
        font-size: 24px;
    }
    .view-content-section {
        padding: 20px;
    }
}