/**
 * Jewellery Table Styles (Gold, Silver, Platinum)
 */

.gold-jewellery-wrapper {
    max-width: 1200px;
    margin: 30px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.gold-jewellery-error {
    background: #dc3545;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}

.jewellery-main-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.jewellery-tables-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.jewellery-table-section {
    margin-bottom: 15px;
}

.side-by-side-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.jewellery-table-section.half-width {
    margin-bottom: 0;
}

.gold-jewellery-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Gold Section Styling */
.gold-jewellery-table.gold-section thead {
    background: #3d4f5d;
}

.gold-jewellery-table.gold-section thead th {
    color: #fff;
}

/* Silver Section Styling */
.gold-jewellery-table.silver-section thead {
    background: #9ba82e;
}

.gold-jewellery-table.silver-section thead th {
    color: #fff;
}

/* Platinum Section Styling */
.gold-jewellery-table.platinum-section thead {
    background: #9ba82e;
}

.gold-jewellery-table.platinum-section thead th {
    color: #fff;
}

.gold-jewellery-table thead th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.gold-jewellery-table thead th:last-child {
    text-align: right;
}

.gold-jewellery-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.gold-jewellery-table tbody tr:last-child {
    border-bottom: none;
}

.gold-jewellery-table tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}

.gold-jewellery-table tbody tr:hover {
    background-color: #e9ecef;
}

.gold-jewellery-table tbody tr.special-item {
    background-color: #fff9e6;
}

.gold-jewellery-table tbody tr.special-item:hover {
    background-color: #fff3cc;
}

.gold-jewellery-table tbody td {
    padding: 12px 20px;
    font-size: 14px;
}

.gold-jewellery-table tbody td.item-name {
    color: #495057;
    font-weight: 500;
}

.gold-jewellery-table tbody td.item-price {
    text-align: right;
    font-weight: 700;
    font-size: 15px;
    color: #2c3e50;
}

.table-disclaimer {
    margin-top: 10px;
    padding: 10px 15px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    font-size: 12px;
    line-height: 1.5;
    color: #856404;
    border-radius: 4px;
}

.main-disclaimer {
    margin-top: 25px;
    padding: 15px 20px;
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
    font-size: 13px;
    line-height: 1.6;
    color: #0c5460;
    border-radius: 4px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .side-by-side-tables {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .gold-jewellery-wrapper {
        margin: 20px 10px;
    }

    .jewellery-main-title {
        font-size: 24px;
    }

    .gold-jewellery-table thead th,
    .gold-jewellery-table tbody td {
        padding: 10px 15px;
        font-size: 13px;
    }

    .gold-jewellery-table tbody td.item-price {
        font-size: 14px;
    }

    .table-disclaimer,
    .main-disclaimer {
        font-size: 12px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .jewellery-main-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .gold-jewellery-table thead th,
    .gold-jewellery-table tbody td {
        padding: 8px 10px;
        font-size: 12px;
    }

    .gold-jewellery-table tbody td.item-name {
        font-size: 11px;
    }

    .gold-jewellery-table tbody td.item-price {
        font-size: 13px;
    }

    .table-disclaimer,
    .main-disclaimer {
        font-size: 11px;
        padding: 8px 12px;
    }
}
