/* vanthucac.css */

.vtc-fullscreen-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    background-image: url('/assets/chua.jpg');
    background-size: cover;
    background-position: center;
    z-index: 200;
    display: flex;
    flex-direction: column;
}

.vtc-header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(15, 15, 15, 0.8);
    border-bottom: 1px solid #995A3A;
    flex-shrink: 0;
}

.vtc-main-title {
    margin: 0;
    flex-grow: 1;
    text-align: center;
    color: #E48F45;
    font-size: 1.8em;
}

.vtc-content-wrapper {
    display: flex;
    flex-grow: 1;
    gap: 20px;
    padding: 20px;
    overflow: hidden;
}

.vtc-mount-list {
    flex: 0 0 40%;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 10px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    align-content: start;
}

.vtc-mount-item {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #555;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.vtc-mount-item:hover {
    background-color: rgba(228, 143, 69, 0.1);
    border-color: #E48F45;
    transform: translateY(-3px);
}

.vtc-mount-item.active {
    background-color: rgba(228, 143, 69, 0.25);
    border-color: #E48F45;
    box-shadow: 0 0 10px rgba(228, 143, 69, 0.5);
}

.vtc-mount-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 4px;
}

.vtc-mount-item h5 {
    margin: 5px 0;
    color: #e0e0e0;
    font-size: 0.95em;
}

.vtc-price-tag {
    font-size: 0.9em;
    color: #ffde7a; /* Màu vàng cho Linh Thạch */
}

.vtc-price-tag.tien-ngoc {
    color: #63ff63; /* Màu xanh cho Tiên Ngọc */
}

.vtc-mount-details {
    flex: 1;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 25px;
    overflow-y: auto;
}

.vtc-details-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #777;
    text-align: center;
}

.vtc-details-placeholder i {
    font-size: 4em;
    margin-bottom: 20px;
}

.vtc-details-placeholder p {
    font-size: 1.2em;
}

.vtc-details-header {
    text-align: center;
    margin-bottom: 20px;
}

#vtc-details-name {
    font-size: 1.8em;
    color: #E48F45;
    margin: 0 0 10px 0;
}

.rarity-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.9em;
    color: #111;
}

.vtc-details-body {
    text-align: center;
}

#vtc-details-img {
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #555;
    margin-bottom: 15px;
}

.vtc-details-body h4 {
    color: #E48F45;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0 15px 0;
}

.vtc-details-body h4 .decorator {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(to right, transparent, #7c5942, transparent);
}


#vtc-details-attributes {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    display: inline-block;
}

#vtc-details-attributes li {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 5px;
    font-size: 0.95em;
    color: #ccc;
}

#vtc-details-attributes li b {
    color: #fff;
    font-weight: normal;
}

.vtc-buy-button {
    width: 100%;
    max-width: 300px;
    padding: 15px;
    background-color: #995A3A;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.vtc-buy-button:hover {
    background-color: #E48F45;
}

.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .vtc-content-wrapper {
        flex-direction: column;
    }
    .vtc-mount-list {
        flex: 0 0 250px; /* Chiều cao cố định trên mobile */
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}




