@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #F8F9FA;
    color: #111;
}

/* Custom Colors */
.text-mint { color: #2CBBB6; }
.bg-mint { background-color: #2CBBB6; }
.border-mint { border-color: #2CBBB6; }
.hover-bg-mint:hover { background-color: #25a09c; }
.hover-text-mint:hover { color: #2CBBB6; }
.ring-mint:focus { --tw-ring-color: #2CBBB6; }
.bg-mint-light { background-color: #E0F7F6; }

/* Animation & Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hover-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* Carousel Styles */
.carousel-track { transition: transform 0.5s ease-in-out; }

/* Button Select Styles */
.btn-select.active {
    background-color: #2CBBB6;
    color: white;
    border-color: #2CBBB6;
}

/* Filter Button Styles */
.filter-btn.active {
    background-color: #2CBBB6;
    color: white;
    border-color: #2CBBB6;
}

/* Color Selection Styles */
.color-radio:checked + label {
    ring-width: 2px;
    --tw-ring-color: #2CBBB6;
    --tw-ring-offset-width: 2px;
}

/* Capacity Selection Styles */
.capacity-radio:checked + label {
    background-color: #2CBBB6;
    color: white;
    border-color: #2CBBB6;
}

/* Modal Styles */
.modal-overlay {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.modal-overlay.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

/* Page Transition Utility */
.page-section {
    display: block;
    animation: fadeIn 0.5s ease-out;
}
.page-section.hidden { display: none; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sim Slider Transition */
.sim-product-fade { animation: fadeEffect 0.5s; }
@keyframes fadeEffect {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}