.price-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

.price-header {
    background: linear-gradient(180deg, #2a1a0a, #1a0f05);
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.price-header h1 {
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.price-header h2 {
    font-size: 18px;
    color: #ff4500;
    font-weight: normal;
    letter-spacing: 2px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

@media(max-width:900px) {
    .price-grid { grid-template-columns: repeat(4, 1fr); }
}

@media(max-width:600px) {
    .price-grid { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width:450px) {
    .price-grid { grid-template-columns: repeat(2, 1fr); }
}

.price-card {
    background: linear-gradient(180deg, #1a1a2e, #16213e);
    border: 2px solid #d4af37;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.price-card:hover {
    transform: scale(1.05);
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.price-card .item-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.price-card .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.price-card .item-image .placeholder {
    color: #666;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.item-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon.ruby { color: #e74c3c; }
.item-icon.sapphire { color: #3498db; }
.item-icon.emeral { color: #2ecc71; }
.item-icon.amethyst { color: #9b59b6; }
.item-icon.gold { color: #f1c40f; }
.item-icon.diamond { color: #ecf0f1; }

.price-card .item-name {
    font-size: 13px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: bold;
    line-height: 1.3;
}

.price-card .item-price {
    font-size: 12px;
    color: #ffd700;
    font-weight: bold;
}

.price-footer {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 30px;
    font-size: 12px;
    color: #888;
    text-align: center;
    line-height: 1.6;
}

.price-footer .highlight {
    color: #ffd700;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(180deg, #2a1a0a, #1a0f05);
    border: 3px solid #d4af37;
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.modal-content .modal-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content .modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-content .modal-title {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 10px;
}

.modal-content .modal-price {
    font-size: 18px;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.modal-content .modal-desc {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-content .close-btn {
    padding: 10px 30px;
    background: #d4af37;
    color: #111;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

.modal-content .close-btn:hover {
    background: #ffd700;
}
