/* Live Time Indicator */
.live-indicator-prices {
    color: #4caf50;
    font-weight: 600;
    animation: pulse-prices 2s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes pulse-prices {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.updated-date {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #888;
    margin: 10px 0 20px;
}

.diamond-type-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    display: none;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: #f5f5f5;
}

.tab-button.active {
    background: #007bff;
    color: white;
    border-color: #0056b3;
}

.diamond-shape-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    display: none;
}

.shape-tab-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 24px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.shape-tab-button .shape-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.shape-tab-button:hover {
    background: #f8f9fa;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.15);
}

.shape-tab-button:hover .shape-icon {
    filter: grayscale(0%);
}

.shape-tab-button.active {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.shape-tab-button.active .shape-icon {
    /* filter: brightness(0) invert(1); */
}

.snapshot-container {
    background: white;
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.snapshot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.snapshot-header h4 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.update-date {
    color: #666;
    font-size: 0.9rem;
}

.price-index-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 14px;
}

.price-index-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #333;
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

.price-index-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.price-index-table tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.price-index-cell {
    padding: 16px !important;
}

.index-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.index-shape {
    font-size: 14px;
    color: #888;
}

.chart-cell {
    padding: 12px 16px !important;
    text-align: center;
    vertical-align: middle;
}

.mini-chart-prices {
    display: block;
    margin: 0 auto;
    max-width: 150px;
    height: 50px;
}

.price-cell {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.best-deal-cell {
    text-align: left;
}

.best-deal-price {
    font-weight: 600;
    color: #2e7d32;
    font-size: 16px;
    margin-bottom: 4px;
}

.discount-badge {
    display: inline-block;
    background-color: #e6f7ee;
    color: #00a651;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.clickable-price-row {
    cursor: pointer;
}

/* Primary CTA Button - Best Deal */
.best-deal-button {
    padding: 10px 20px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

.best-deal-button:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.live-data-cell {
    text-align: center;
}

/* Secondary Button - View Details (less prominent) */
.quality-button-secondary {
    padding: 6px 12px;
    background: transparent;
    color: #6c757d;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.quality-button-secondary:hover {
    background: #f8f9fa;
    color: #495057;
    border-color: #adb5bd;
}

/* Legacy quality button (keep for backwards compatibility) */
.quality-button {
    padding: 8px 16px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quality-button:hover {
    background: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

/* Color-coded trend indicators */
.trend-down-green {
    color: #00a651;
    background-color: #e6f7ee;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.trend-up-orange {
    color: #ff6f00;
    background-color: #fff3e0;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.trend-neutral {
    color: #757575;
    background-color: #f5f5f5;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Quality Levels Modal - Professional Design */
.quality-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quality-modal.active {
    opacity: 1;
}

.quality-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.quality-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.quality-modal.active .quality-modal-content {
    transform: scale(1);
}

.quality-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    border-bottom: 2px solid #e0e0e0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.quality-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2024;
    font-family: 'PT Sans', sans-serif;
}

.close-modal {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    color: #666;
}

.close-modal:hover {
    background: #f0f0f0;
    color: #333;
    transform: rotate(90deg);
}

.quality-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.quality-modal-description {
    margin: 0 0 1.5rem 0;
    color: #666;
    font-size: 0.95rem;
    text-align: center;
}

.quality-modal-body .error-message {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
}

.quality-modal-body .error-message p {
    margin: 0;
    font-size: 1rem;
}

.quality-modal-body .error-message p:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.quality-levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.quality-level-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.quality-level-card:hover {
    border-color: #007bff;
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.15);
    transform: translateY(-4px);
}

.quality-level-highlight {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border-color: #007bff;
    border-width: 2px;
}

.quality-level-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.quality-level-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.quality-level-title h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f2024;
}

.quality-badge {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quality-level-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quality-level-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: #007bff;
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
}

.quality-info-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    color: #007bff;
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 99999999;
}

.quality-info-icon:hover {
    color: #0056b3;
    transform: scale(1.1);
}

.quality-info-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% - 80px);
    left: 0%;
    transform: translateX(-92%);
    background: #202024db;
    backdrop-filter: blur(1px);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.3;
    white-space: normal;
    width: 280px;
    max-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    backdrop-filter: blur(11px);
}

.quality-info-icon::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    /* border-top-color: #1f2024; */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 9999999999999;
}

.quality-info-icon:hover::before,
.quality-info-icon:hover::after,
.quality-info-icon.tooltip-active::before,
.quality-info-icon.tooltip-active::after {
    opacity: 1;
    visibility: visible;
}

.quality-level-desc {
    margin: 0.75rem 0 0 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 3px solid #007bff;
}

.quality-level-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.quality-stat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.quality-stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.quality-stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2024;
}

.price-highlight {
    color: #007bff;
    font-size: 1.25rem;
}

/* Responsive Design for Quality Modal */
@media (max-width: 768px) {
    .quality-modal-content {
        width: 98%;
        max-height: 95vh;
        border-radius: 12px;
    }

    .quality-modal-header {
        padding: 1.25rem 1.5rem;
    }

    .quality-modal-header h3 {
        font-size: 1.25rem;
    }

    .quality-modal-body {
        padding: 1.5rem;
    }

    .quality-levels-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quality-level-card {
        padding: 1.25rem;
    }

    .quality-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .quality-stat-value {
        font-size: 1.1rem;
    }

    .price-highlight {
        font-size: 1.15rem;
    }

    /* Adjust tooltip for mobile */
    .quality-info-icon::before {
        width: 240px;
        font-size: 0.8rem;
        padding: 0.65rem 0.85rem;
        left: auto;
        right: 0;
        transform: none;
    }

    .quality-info-icon::after {
        /* left: auto; */
        /* right: 10px; */
        /* transform: none; */
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .quality-modal-header h3 {
        font-size: 1.1rem;
    }

    .quality-modal-body {
        padding: 1rem;
    }

    .quality-level-card {
        padding: 1rem;
    }
}

.error-message {
    color: #dc3545;
    text-align: center;
    padding: 2rem;
    font-size: 1.1rem;
}
.diamond-prices-hero {
    /* background-color: #f8f9fa; */
    padding: 120px 0px 0px 0px!important;
    text-align: center;
}

.diamond-prices-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-transform: capitalize;
}

.diamond-prices-hero .lead {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

.price-charts {
    padding: 60px 0;
    padding-top: 0px!important;
}

.price-chart-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin: 30px 0;
}

.snapshot-container {
    background: white;
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
    margin-bottom: 30px;
    overflow: hidden;
}

.snapshot-header {
    /* background: #f8f9fa; */
    padding: 15px 20px;
    /* border-bottom: 1px solid #e9ecef; */
}

.snapshot-header h4 {
    margin: 0;
    color: #2c3e50;
}

.update-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.price-index-table {
    width: 100%;
    border-collapse: collapse;
}

.price-index-table th,
.price-index-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.price-index-table th {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
}

.price-index-table td {
    color: #495057;
}

.quality-button {
    padding: 6px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.quality-button:hover {
    background-color: #0056b3;
}

/* Duplicate quality modal styles removed - see lines 318-506 for the main styles */

.quality-button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.quality-button:hover {
    background-color: #0056b3;
}

.snapshot-container {
    margin-bottom: 30px;
}

.price-index-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.price-index-table th,
.price-index-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.price-index-table th {
    background-color: #f5f5f5;
}
.price-index-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.diamond-type-section {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.diamond-type-section h3 {
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: none;
}

.snapshot-container {
    margin-bottom: 30px;
}

.snapshot-container:last-child {
    margin-bottom: 0;
}

.price-index-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.price-index-table th,
.price-index-table td {
    padding: 12px;
    border: 1px solid #eee;
    text-align: center;
}

.price-index-table th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.price-index-table tr:hover {
    background: #f8f9fa;
}

.quality-button {
    padding: 6px 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.quality-button:hover {
    background: #0056b3;
}
.price-overview {
    margin-top: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.price-header {
    margin-bottom: 32px;
    text-align: center;
}

.price-header h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin: 8px 0;
}

.time-period {
    color: #666;
    font-size: 0.95em;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.price-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.price-grid::-webkit-scrollbar {
    height: 6px;
}

.price-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.price-grid::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}

.price-grid::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

.price-card {
    padding: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    flex-shrink: 0;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-color: #007bff;
}

.price-card:hover::before {
    opacity: 1;
}

.price-info h3 {
    margin: 0 0 12px 0;
    font-size: 1.15em;
    color: #2c3e50;
    font-weight: 600;
}

.price-value {
    display: block;
    font-size: 2.2em;
    font-weight: 700;
    color: #007bff;
    margin: 12px 0;
    letter-spacing: -0.5px;
}

.price-change {
    display: inline-block;
    font-size: 0.9em;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-change.negative {
    background-color: #e6f7ee;
    color: #00a651;
}

.price-change.positive {
    background-color: #fff3e0;
    color: #ff6f00;
}

.trend-text.negative {
    color: #00a651;
}

.trend-text.positive {
    color: #ff6f00;
}

.price-stats {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .label {
    font-size: 0.8em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.stat-item .value {
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3e50;
}
span.trend-shapeName {
    font-weight: 700;
}
.mainStructure {
    /* padding: 0px 95px 0px 100px; */
    background-color: #ffffff;
}

section.section.diamond-guides {
    background: white;
    /* padding: 60px 0; */
}

section.section.diamond-guides h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-transform: capitalize;
    font-weight: 700;
    text-align: center;
}

section.section.diamond-guides > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.guide-item {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.guide-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.guide-item h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.25rem;
    font-weight: 700;
    padding-bottom: 16px;
    border-bottom: 3px solid #007bff;
}

.guide-shape-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.guide-summary {
    margin-bottom: 1.5rem;
}

.guide-summary p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.guide-summary a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.guide-summary a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.guide-highlight {
    color: #007bff !important;
    font-weight: 600 !important;
}

.guide-price-link strong {
    color: #2e7d32;
    font-size: 1.1em;
}

.guide-deal-link strong {
    color: #00a651;
    font-size: 1.05em;
}

.guide-trend {
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.guide-trend.trend-down {
    color: #00a651;
    background-color: #e6f7ee;
}

.guide-trend.trend-up {
    color: #ff6f00;
    background-color: #fff3e0;
}

.guide-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.guide-cta-button:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(0,123,255,0.4);
}

section.section.diamond-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-transform: capitalize;
}

section.section.diamond-faq h4 {
    font-size: 20px;
    font-weight: 400;
}

.faq-item p {
    margin-bottom: 10px;
}

.mainStructure section {
    /* padding: 140px 45px 0px 318px; */
}
p.updated-date span {
    color: #28a745;
}

p.updated-date {
    margin-top: 30px;
}

/* ========================================
   MOBILE SUB-HEADER (Mobile Only)
   ======================================== */

.mobile-sub-header {
    display: none; /* Hidden on desktop */
    position: fixed;
    top: 77px; /* Below main header */
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 20px;
    z-index: 999998;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.mobile-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #264265;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.mobile-filter-btn:hover {
    background: #0056b3;
}

.mobile-filter-btn svg {
    flex-shrink: 0;
}

.mobile-active-selection {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   BREADCRUMB NAVIGATION STYLES
   ======================================== */

.breadcrumb-nav {
    background: white;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    /* margin-top: 280px; */ /* Push below hero section (header ~63px + hero padding 120px + content ~100px) */
    position: relative;
    z-index: 999999; /* Below header but above content */
    padding-top: 75px;
    margin-bottom: 28px;
    position: fixed;
    width: 100%;
}

.breadcrumb-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-item:not(:last-child)::after {
    content: "Ã¢â‚¬Âº";
    margin-left: 8px;
    color: #999;
    font-size: 1.1rem;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-item:last-child {
    color: #333;
    font-weight: 500;
}

/* ========================================
   FAQ SECTION STYLES
   ======================================== */

section.section.diamond-faq {
    /* background: #f8f9fa; */
    /* padding: 60px 0; */
    margin-bottom: 120px;
}

section.section.diamond-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-color: #007bff;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ========================================
   SHAPE HERO CONTENT STYLES
   ======================================== */

.shape-hero-content,
.shape-hero-content-section {
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
    padding: 40px 0 60px;
    margin-bottom: 0;
}

.hero-content-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

/* Section 1: Merged Title and Price Highlight */
.hero-price-highlight {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    /* border: 2px solid #e8f4f8; */
}

.hero-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.hero-main-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.live-indicator-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #666;
}

.price-cards-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
}

.price-main, .price-best-deal {
    text-align: center;
    flex: 1;
}

.price-value, .deal-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 8px;
    line-height: 1;
}

.price-value-wrapper {
    position: relative;
    display: inline-block;
}

.deal-discount-badge {
    position: absolute;
    top: -12px;
    right: -29px;
    background: linear-gradient(135deg, #00c853 0%, #00a843 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 200, 83, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 200, 83, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 200, 83, 0.6);
    }
}

.deal-value {
    color: #00a651;
}

.price-label, .deal-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 16px;
}

.btn-price-action {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-view-all-price {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.btn-view-all-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,123,255,0.4);
}

.btn-best-deal {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
}

.btn-best-deal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40,167,69,0.4);
}

.live-dot {
    color: #28a745;
    font-size: 1.2rem;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.live-text {
    font-weight: 600;
    color: #28a745;
}

.live-date {
    color: #888;
}

/* Section 2: Active Shape Details */
.hero-shape-details {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #007bff;
}

.hero-shape-details h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.shape-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
}

.shape-description strong {
    color: #007bff;
    font-weight: 600;
}

.best-deal-highlight {
    background: #f0f8ff;
    border-left: 4px solid #00a651;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 24px;
}

.deal-link {
    color: #00a651;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.deal-link:hover {
    color: #007a3d;
    text-decoration: underline;
}

.discount-badge-hero {
    display: inline-block;
    background-color: #e6f7ee;
    color: #00a651;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 600;
    margin-left: 6px;
}

.hero-cta-single {
    text-align: center;
}

.btn-view-all {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,123,255,0.4);
}

/* Section 3: Price Trend Summary */
.hero-price-trends {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.trend-header {
    margin-bottom: 30px;
}

.trend-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.trend-summary {
    font-size: 1.2rem;
    color: #444;
}

.trend-summary .trend-down {
    color: #00a651;
    font-weight: 700;
}

.trend-summary .trend-up {
    color: #ff6f00;
    font-weight: 700;
}

.carat-trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.carat-trend-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.carat-trend-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.carat-trend-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
}

.carat-trend-header h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.trend-badge-small {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.trend-badge-small.negative {
    background-color: #e6f7ee;
    color: #00a651;
}

.trend-badge-small.positive {
    background-color: #fff3e0;
    color: #ff6f00;
}

.carat-trend-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-value-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #007bff;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.stat-value.positive {
    color: #00a651;
}

.stat-value.negative {
    color: #dc3545;
}

/* Section 4: Educational Section (Expandable) */
.hero-education-section {
    background: white;
    border-radius: 16px;
    margin-top: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid #264264;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-education-section.expanded {
    border-color: #007bff;
}

.education-toggle {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
}

.education-toggle::before {
    content: "Ã°Å¸â€™Â¡";
    font-size: 1.5rem;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.hero-education-section.expanded .education-toggle::before {
    transform: scale(1.2);
}

.education-toggle:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.education-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.education-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #007bff; */
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3); */
    transform: rotate(-180deg);
}


.hero-education-section.expanded .education-icon {
    transform: rotate(-90deg);
    /* background: #00a651; */
    /* box-shadow: 0 2px 8px rgba(0, 166, 81, 0.3); */
}

.education-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                padding 0.4s ease;
    padding: 0 30px;
    opacity: 0;
}

.hero-education-section.expanded .education-content {
    max-height: 2000px;
    padding: 30px;
    opacity: 1;
}

.education-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.education-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.education-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.education-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #007bff;
}

.education-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.education-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Hide mobile cards on desktop */
.mobile-only {
    display: none;
}

.desktop-only {
    display: table;
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    /* Show mobile cards, hide desktop table */
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    /* Mobile Price Cards */
    .mobile-price-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0;
    }

    .price-card-mobile {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .price-card-mobile:active {
        transform: scale(0.98);
        box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }

    .card-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 2px solid #f0f0f0;
    }

    .card-header-mobile h4 {
        font-size: 1.2rem;
        color: #2c3e50;
        margin: 0;
        font-weight: 700;
    }

    .trend-badge {
        padding: 4px 10px;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .trend-badge.trend-down {
        background-color: #e6f7ee;
        color: #00a651;
    }

    .trend-badge.trend-up {
        background-color: #fff3e0;
        color: #ff6f00;
    }

    .card-body-mobile {
        margin-bottom: 16px;
    }

    .card-row-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #f5f5f5;
    }

    .card-row-mobile:last-child {
        border-bottom: none;
    }

    .label-mobile {
        font-weight: 600;
        color: #666;
        font-size: 0.95rem;
    }

    .value-mobile {
        font-weight: 600;
        color: #333;
        font-size: 1rem;
        text-align: right;
    }

    .value-mobile.price-highlight {
        color: #007bff;
        font-size: 1.2rem;
    }

    .value-mobile.deal-highlight {
        color: #00a651;
        font-size: 1.1rem;
    }

    .discount-badge-mobile {
        display: inline-block;
        background-color: #e6f7ee;
        color: #00a651;
        padding: 2px 6px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-left: 6px;
    }

    .card-chart-mobile {
        margin: 16px 0;
        padding: 12px;
        background: white;
        border-radius: 8px;
    }

    .card-chart-mobile canvas {
        width: 100% !important;
        height: auto !important;
    }

    .card-actions-mobile {
        display: flex;
        gap: 10px;
        margin-top: 16px;
    }

    .best-deal-button-mobile,
    .quality-button-mobile {
        flex: 1;
        padding: 12px 16px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .best-deal-button-mobile {
        background: #28a745;
        color: white;
        box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
    }

    .best-deal-button-mobile:active {
        transform: scale(0.96);
    }

    .quality-button-mobile {
        background: white;
        color: #007bff;
        border: 2px solid #007bff;
    }

    .quality-button-mobile:active {
        background: #007bff;
        color: white;
    }

    /* Shape Hero Content - Mobile */
    .hero-content-wrapper {
        padding: 0 20px;
    }

    .hero-price-highlight {
        padding: 24px;
    }

    .hero-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .hero-main-title {
        font-size: 1.5rem;
    }

    .live-indicator-wrapper {
        flex-direction: row;
        gap: 6px;
        font-size: 0.85rem;
    }

    .price-cards-wrapper {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .price-value, .deal-value {
        font-size: 2.5rem;
    }

    .price-label, .deal-label {
        font-size: 0.9rem;
    }

    .deal-discount-badge {
        font-size: 0.75rem;
        padding: 3px 8px;
    }

    .btn-price-action {
        padding: 10px 24px;
        font-size: 0.95rem;
        width: 100%;
    }

    .hero-shape-details {
        padding: 24px;
    }

    .hero-shape-details h2 {
        font-size: 1.5rem;
    }

    .education-toggle {
        padding: 16px 20px;
    }

    .education-question {
        font-size: 1rem;
    }

    .education-content h3 {
        font-size: 1.4rem;
    }

    .education-intro {
        font-size: 1rem;
    }

    .education-details {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .education-item {
        padding: 16px;
    }

    .education-item h4 {
        font-size: 1rem;
    }

    .education-item p {
        font-size: 0.9rem;
    }

    .shape-description,
    .best-deal-highlight {
        font-size: 1rem;
    }

    .hero-price-trends {
        padding: 24px;
    }

    .trend-header h3 {
        font-size: 1.3rem;
    }

    .trend-summary {
        font-size: 1.05rem;
    }

    .carat-trends-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .carat-trend-card {
        padding: 20px;
    }

    .stat-value-large {
        font-size: 1.5rem;
    }

    /* Hide breadcrumb on mobile, show mobile sub-header instead */
    .breadcrumb-nav {
        display: none;
    }

    .mobile-sub-header {
        display: flex;
        top: 56px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-page-description h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-shape-details h2 {
        font-size: 1.3rem;
    }

    .trend-header h3 {
        font-size: 1.2rem;
    }

    .carat-trend-card {
        padding: 16px;
    }

    .stat-value-large {
        font-size: 1.3rem;
    }
}
header.headerStructure {
    position: fixed;
    z-index: 9999999;
}

/* ========================================
   PREMIUM HERO SECTION - dp-* prefix
   ======================================== */

.dp-hero-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

/* Live Badge Row */
.dp-hero-live-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.dp-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.dp-live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: dp-pulse 2s ease-in-out infinite;
}

@keyframes dp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.dp-live-time {
    color: #64748b;
    font-size: 0.9rem;
}

/* Price Section */
.dp-hero-price-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 48px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.dp-hero-price-main,
.dp-hero-price-deal {
    text-align: center;
    padding: 32px 48px;
    border-radius: 16px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.dp-hero-price-main {
    background: linear-gradient(135deg, #264265 0%, #1e3a5f 100%);
    color: white;
}

.dp-hero-price-deal {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #10b981;
}

.dp-price-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 8px;
    font-weight: 600;
}

.dp-price-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    font-family: 'Nunito Sans', sans-serif;
}

.dp-price-context {
    font-size: 1rem;
    opacity: 0.85;
}

.dp-deal-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.dp-deal-value {
    font-size: 3rem;
    font-weight: 800;
    color: #059669;
    line-height: 1.1;
    margin-bottom: 12px;
    font-family: 'Nunito Sans', sans-serif;
}

.dp-deal-savings {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dp-savings-tag {
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
}

.dp-savings-amount {
    color: #059669;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Trust Row */
.dp-hero-trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.dp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

.dp-trust-item svg {
    flex-shrink: 0;
}

/* CTA Row */
.dp-hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.dp-cta-primary,
.dp-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dp-cta-primary {
    background: linear-gradient(135deg, #264265 0%, #1e3a5f 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(38, 66, 101, 0.3);
}

.dp-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(38, 66, 101, 0.4);
}

.dp-cta-secondary {
    background: white;
    color: #264265;
    border: 2px solid #264265;
}

.dp-cta-secondary:hover {
    background: #264265;
    color: white;
    transform: translateY(-2px);
}

/* Stats Grid */
.dp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.dp-stat-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.dp-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #264265;
}

.dp-stat-carat {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dp-stat-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    font-family: 'Nunito Sans', sans-serif;
}

.dp-stat-change {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 16px;
    display: inline-block;
}

.dp-stat-change.down {
    background: #f0fdf4;
    color: #10b981;
}

.dp-stat-change.up {
    background: #fef3c7;
    color: #d97706;
}

/* Market Insight */
.dp-market-insight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 16px;
    padding: 24px;
    border-left: 4px solid #3b82f6;
    margin-bottom: 32px;
}

.dp-insight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dp-insight-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1e40af;
}

.dp-insight-content strong {
    color: #1e3a8a;
}

/* ========================================
   PREMIUM HERO - RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .dp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dp-hero-premium {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .dp-hero-live-row {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 24px;
    }

    .dp-hero-price-section {
        flex-direction: column;
        gap: 20px;
    }

    .dp-hero-price-main,
    .dp-hero-price-deal {
        padding: 24px;
        min-width: auto;
        max-width: none;
    }

    .dp-price-value {
        font-size: 2.5rem;
    }

    .dp-deal-value {
        font-size: 2.2rem;
    }

    .dp-hero-trust-row {
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
    }

    .dp-trust-item {
        font-size: 0.9rem;
    }

    .dp-hero-cta-row {
        flex-direction: column;
        gap: 12px;
    }

    .dp-cta-primary,
    .dp-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .dp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .dp-stat-card {
        padding: 16px;
    }

    .dp-stat-price {
        font-size: 1.4rem;
    }

    .dp-market-insight {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .dp-insight-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .dp-price-value {
        font-size: 2rem;
    }

    .dp-deal-value {
        font-size: 1.8rem;
    }

    .dp-stat-price {
        font-size: 1.2rem;
    }

    .dp-stat-carat {
        font-size: 0.8rem;
    }
}

/* ========================================
   BLOOMBERG-STYLE CHART
   ======================================== */

.dp-bloomberg-chart {
    background: #0f172a;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.dp-chart-header {
    margin-bottom: 24px;
}

.dp-chart-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.dp-chart-title {
    color: #f8fafc;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.dp-chart-period-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 4px;
}

.dp-period-tab {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dp-period-tab:hover {
    color: #f8fafc;
}

.dp-period-tab.active {
    background: #264265;
    color: #f8fafc;
}

.dp-chart-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.dp-chart-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dp-chart-stat-label {
    color: #64748b;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dp-chart-stat-value {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 700;
}

.dp-chart-stat.down .dp-chart-stat-value {
    color: #10b981;
}

.dp-chart-stat.up .dp-chart-stat-value {
    color: #ef4444;
}

.dp-chart-container {
    height: 300px;
    margin-bottom: 16px;
}

.dp-chart-footer {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.dp-chart-source {
    color: #64748b;
    font-size: 0.8rem;
}

/* ========================================
   RESULTS SECTIONS (DIAMONDS & JEWELRY)
   ======================================== */

.dp-results-section {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.dp-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.dp-results-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.dp-results-title svg {
    color: #264265;
}

.dp-results-view-all {
    color: #264265;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dp-results-view-all:hover {
    color: #10b981;
}

.dp-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dp-loading-skeleton {
    display: contents;
}

.dp-skeleton-card {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: dp-shimmer 1.5s infinite;
    border-radius: 12px;
    height: 280px;
}

@keyframes dp-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Diamond Cards */
.dp-diamond-card {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.dp-diamond-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #264265;
}

.dp-diamond-img {
    aspect-ratio: 1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.dp-diamond-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.dp-diamond-info {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
}

.dp-diamond-specs {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.dp-diamond-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
}

.dp-diamond-vendor {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Jewelry Cards */
.dp-jewelry-card {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.dp-jewelry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: #264265;
}

.dp-jewelry-img {
    aspect-ratio: 1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dp-jewelry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dp-jewelry-info {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
}

.dp-jewelry-category {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.dp-jewelry-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
    line-height: 1.3;
}

.dp-jewelry-specs {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 8px;
}

.dp-jewelry-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #264265;
}

.dp-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
}

.dp-no-results a {
    color: #264265;
    font-weight: 600;
}

/* Results Sections Responsive */
@media (max-width: 1024px) {
    .dp-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dp-bloomberg-chart {
        padding: 20px;
        border-radius: 16px;
    }

    .dp-chart-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .dp-chart-stats {
        gap: 16px;
    }

    .dp-chart-container {
        height: 220px;
    }

    .dp-results-section {
        padding: 20px;
        border-radius: 16px;
    }

    .dp-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .dp-diamond-info,
    .dp-jewelry-info {
        padding: 12px;
    }

    .dp-diamond-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .dp-chart-stats {
        flex-direction: column;
        gap: 12px;
    }

    .dp-results-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dp-diamond-specs {
        font-size: 0.75rem;
    }

    .dp-jewelry-title {
        font-size: 0.85rem;
    }
}

/* ========================================
   DIAMOND PRICES V2 - NEW LAYOUT
   ======================================== */

/* Override mainStructure padding for V2 pages */
.mainStructure .dp-v2-wrapper {
    padding-left: 0;
    padding-right: 0;
    padding-top: 64px;
}
.mainStructure .dp-v2-wrapper .dp-v2-hero{
padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
}

.dp-v2-wrapper {
    background: #f8fafc;
    min-height: 100vh;
}

/* Breadcrumb */
.dp-v2-breadcrumb {
    background: white;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.dp-v2-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.dp-v2-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.dp-v2-breadcrumb a:hover {
    color: #264265;
}

.dp-v2-sep {
    color: #cbd5e1;
    margin: 0 8px;
}

.dp-v2-current {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Section */
.dp-v2-hero {
    background: linear-gradient(180deg, white 0%, #f1f5f9 100%);
    padding: 48px 0 40px;
}

.dp-v2-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 32px;
}

.dp-v2-hero-main {
    flex: 1;
}

.dp-v2-live-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.dp-v2-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.dp-v2-live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: dp-v2-pulse 2s ease-in-out infinite;
}

/* Natural / Lab-Grown Toggle */
.dp-v2-type-toggle {
    display: flex;
    background: #e2e8f0;
    border-radius: 8px;
    padding: 3px;
}

.dp-v2-type-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.dp-v2-type-btn:hover {
    color: #264265;
}

.dp-v2-type-btn.active {
    background: white;
    color: #264265;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.dp-v2-type-btn svg {
    opacity: 0.7;
}

.dp-v2-type-btn.active svg {
    opacity: 1;
}

@keyframes dp-v2-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Shape & Carat Selectors */
.dp-v2-selector {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    top: -9px;
}

.dp-v2-selector-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dp-v2-select {
    appearance: none;
    -webkit-appearance: none;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 32px 8px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 110px;
}

.dp-v2-select:hover {
    border-color: #264265;
}

.dp-v2-select:focus {
    outline: none;
    border-color: #264265;
    box-shadow: 0 0 0 3px rgba(38, 66, 101, 0.1);
}

.dp-v2-select-arrow {
    position: absolute;
    right: 10px;
    bottom: 12px;
    pointer-events: none;
    color: #64748b;
}

.dp-v2-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
    line-height: 1.2;
    font-family: 'Nunito Sans', sans-serif;
}

.dp-v2-summary {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    max-width: 700px;
}

.dp-v2-summary strong {
    color: #0f172a;
    font-weight: 700;
}

.dp-v2-loading-text {
    color: #94a3b8;
    font-style: italic;
}

/* Track Prices CTA */
.dp-v2-hero-cta {
    flex-shrink: 0;
}

.dp-v2-track-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 12ox;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 12px rgba(38, 66, 101, 0.3); */
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #264265;
    border: 1px solid #26426514;
}

.dp-v2-track-btn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 20px rgba(38, 66, 101, 0.4); */
}

/* Shape Selector */
.dp-v2-shape-selector {
    margin-top: 8px;
}

.dp-v2-shape-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dp-v2-shapes-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dp-v2-shape-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid #e2e8f0;
    padding: 9px 10px;
    border-radius: 30px;
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dp-v2-shape-pill:hover {
    border-color: #264265;
    color: #264265;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.dp-v2-shape-pill.active {
    background: linear-gradient(135deg, #264265 0%, #1e3a5f 100%);
    border-color: #264265;
    color: white;
    box-shadow: 0 4px 12px rgba(38, 66, 101, 0.3);
}

.dp-v2-shape-icon {
    width: 37px;
    height: 25px;
    object-fit: contain;
}

/* Chart + Compare Section */
.dp-v2-chart-section {
    /* background: #0f172a; */
    padding: 48px 0;
}

.dp-v2-chart-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
}

.dp-v2-chart-main {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.dp-v2-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dp-v2-chart-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
}

.dp-v2-period-tabs {
    display: flex;
    gap: 4px;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 8px;
}

.dp-v2-period {
    background: transparent;
    border: none;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.dp-v2-period:hover {
    color: #264265;
}

.dp-v2-period.active {
    background: #264265;
    color: white;
}

.dp-v2-chart-canvas-wrap {
    position: relative;
    min-height: 350px;
}

/* Compare Sidebar */
.dp-v2-compare-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dp-v2-compare-indices {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dp-v2-compare-loading {
    color: #64748b;
    font-style: italic;
    padding: 24px;
    text-align: center;
}

.dp-v2-compare-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    box-sizing: border-box;
}

.dp-v2-compare-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px;
}

.dp-v2-compare-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.dp-v2-compare-item:last-child {
    border-bottom: none;
}

.dp-v2-compare-name {
    color: #64748b;
    font-size: 0.9rem;
}

.dp-v2-compare-price {
    color: #0f172a;
    font-weight: 700;
    font-size: 0.9rem;
}

.dp-v2-compare-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.dp-v2-compare-change.positive {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.dp-v2-compare-change.negative {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

/* Trust Stats Section - Premium Enhanced UI */
.dp-v2-trust-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.dp-v2-trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated glow line at top */
.dp-v2-trust-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #8b5cf6, #3b82f6, transparent);
    background-size: 200% 100%;
    animation: dp-trust-glow 3s ease-in-out infinite;
}

@keyframes dp-trust-glow {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: 0% 0; }
}

.dp-v2-trust-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dp-v2-trust-tagline {
    font-size: 2rem;
    color: #ffffff;
    margin: 0 0 12px;
    font-weight: 800;
    font-family: 'Nunito Sans', sans-serif;
    letter-spacing: -0.02em;
}

.dp-v2-trust-tagline strong {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: dp-trust-gradient 4s ease-in-out infinite;
}

@keyframes dp-trust-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.dp-v2-trust-sub {
    font-size: 1.1rem;
    color: #94a3b8;
    margin: 0 0 48px;
    line-height: 1.6;
}

.dp-v2-trust-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dp-v2-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    padding: 32px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-width: 200px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover glow effect */
.dp-v2-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.dp-v2-stat:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px -12px rgba(139, 92, 246, 0.25),
                0 0 0 1px rgba(139, 92, 246, 0.2);
}

.dp-v2-stat:hover::before {
    opacity: 1;
}

.dp-v2-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px -4px rgba(59, 130, 246, 0.4);
    transition: all 0.4s ease;
}

.dp-v2-stat:hover .dp-v2-stat-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 28px -4px rgba(139, 92, 246, 0.5);
}

.dp-v2-stat-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.dp-v2-stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.dp-v2-stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 6px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    letter-spacing: 0.025em;
}

/* Price Table Section */
.dp-v2-table-section {
    background: white;
    padding: 64px 0;
}

.dp-v2-table-header {
    margin-bottom: 32px;
}

.dp-v2-table-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    font-family: 'Nunito Sans', sans-serif;
}

.dp-v2-table-sub {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    max-width: 800px;
    line-height: 1.6;
}

.dp-v2-table-wrap {
    overflow-x: auto;
}

.dp-v2-price-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.dp-v2-price-table thead {
    background: #f8fafc;
}

.dp-v2-price-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #e2e8f0;
}

.dp-v2-price-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.dp-v2-price-table tbody tr {
    transition: background 0.2s;
}

.dp-v2-price-table tbody tr:hover {
    background: #f8fafc;
}

.dp-v2-table-shape {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dp-v2-table-shape-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.dp-v2-table-shape-name {
    font-weight: 700;
    color: #0f172a;
}

.dp-v2-table-shape-link {
    font-size: 0.85rem;
    color: #264265;
    text-decoration: none;
}

.dp-v2-table-shape-link:hover {
    text-decoration: underline;
}

.dp-v2-table-chart {
    width: 100px;
    height: 40px;
}

.dp-v2-table-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Nunito Sans', sans-serif;
}

.dp-v2-table-change {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.dp-v2-table-change.positive {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.dp-v2-table-change.negative {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.dp-v2-loading-cell {
    text-align: center;
    color: #64748b;
    font-style: italic;
    padding: 40px 20px !important;
}

/* SEO Content Section */
.dp-v2-seo-section {
    background: #f8fafc;
    padding: 64px 0;
}

.dp-v2-seo-content {
    max-width: 900px;
}

.dp-v2-seo-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 24px;
    font-family: 'Nunito Sans', sans-serif;
}

.dp-v2-seo-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
}

.dp-v2-seo-text p {
    margin: 0 0 20px;
}

.dp-v2-seo-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 32px 0 16px;
}

.dp-v2-seo-text ul {
    margin: 0 0 20px;
    padding-left: 24px;
}

.dp-v2-seo-text li {
    margin-bottom: 12px;
}

.dp-v2-seo-text strong {
    color: #1e293b;
}

/* Results Section */
.dp-v2-results-section {
    background: white;
    padding: 64px 0;
}

.dp-v2-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dp-v2-jewelry-header {
    margin-top: 48px;
}

.dp-v2-results-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
}

.dp-v2-view-all {
    color: #264265;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.dp-v2-view-all:hover {
    color: #10b981;
}

.dp-v2-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dp-v2-skeleton {
    background: #f1f5f9;
    border-radius: 12px;
    height: 320px;
    animation: dp-v2-shimmer 1.5s ease-in-out infinite;
}

@keyframes dp-v2-shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* V2 Diamond Cards */
.dp-v2-diamond-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.dp-v2-diamond-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(38, 66, 101, 0.15);
    border-color: #264265;
}

.dp-v2-diamond-img {
    aspect-ratio: 1;
    background: #bdbdbd;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
    /* height: 275px; */
    aspect-ratio: 275/212;
}

.dp-v2-diamond-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.dp-v2-diamond-card:hover .dp-v2-diamond-img img {
    transform: scale(1.05);
}

.dp-v2-diamond-info {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dp-v2-diamond-shape {
    font-size: 0.9rem;
    font-weight: 700;
    color: #264265;
    margin-bottom: 6px;
}

.dp-v2-diamond-specs {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 10px;
}

.dp-v2-diamond-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    font-family: 'Nunito Sans', sans-serif;
    margin-top: auto;
}

.dp-v2-diamond-vendor {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
}

.dp-v2-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 24px;
    background: #f8fafc;
    border-radius: 12px;
    color: #64748b;
    font-size: 1rem;
}

.dp-v2-no-results a {
    color: #264265;
    font-weight: 600;
    text-decoration: none;
}

.dp-v2-no-results a:hover {
    color: #10b981;
}

/* V2 Mobile Responsive */
@media (max-width: 1024px) {
    .dp-v2-chart-grid {
        grid-template-columns: 1fr;
    }

    .dp-v2-compare-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .dp-v2-compare-card {
        flex: 1;
        min-width: 280px;
    }

    .dp-v2-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mainStructure .dp-v2-wrapper,
.mainStructure .dp-v2-wrapper section {
    padding-left: 0;
    padding-right: 0;
    padding-top: 54px;
}
    .mainStructure .dp-v2-wrapper .dp-v2-hero{
        padding-top: 12px;
        padding-bottom: 0px;
    }
    .dp-v2-container {
        padding: 0 16px;
    }

    .dp-v2-hero {
        padding: 32px 0;
    }

    .dp-v2-hero-content {
        flex-direction: column;
        gap: 24px;
    }

    .dp-v2-live-row {
        flex-wrap: wrap;
        gap: 12px;
        position: relative;
        /* flex-direction: row-reverse; */
        justify-content: space-between;
    }

    .dp-v2-type-toggle {
        /* width: 100%; */
    }

    .dp-v2-selector {
        flex: 1;
        min-width: 80px;
        top: 0px;
    }

    .dp-v2-select {
        width: 100%;
        min-width: auto;
        padding: 8px 28px 8px 10px;
        font-size: 0.85rem;
    }

    .dp-v2-title {
        font-size: 1.75rem;
    }

    .dp-v2-summary {
        font-size: 1rem;
    }

    .dp-v2-shapes-row {
        gap: 8px;
    }

    .dp-v2-shape-pill {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .dp-v2-shape-pill span {
        display: none;
    }

    .dp-v2-shape-pill.active span {
        display: inline;
    }

    .dp-v2-chart-section {
        padding: 32px 0;
    }

    .dp-v2-chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .dp-v2-chart-title {
        font-size: 1.1rem;
    }

    .dp-v2-period {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .dp-v2-trust-section {
        padding: 56px 0;
    }

    .dp-v2-trust-tagline {
        font-size: 1.6rem;
    }

    .dp-v2-trust-sub {
        margin-bottom: 36px;
    }

    .dp-v2-trust-stats {
        gap: 16px;
    }

    .dp-v2-stat {
        padding: 28px 32px;
        min-width: 160px;
        flex: 1;
        border-radius: 16px;
    }

    .dp-v2-stat-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
        border-radius: 14px;
    }

    .dp-v2-stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .dp-v2-stat-value {
        font-size: 1.9rem;
    }

    .dp-v2-table-section,
    .dp-v2-seo-section,
    .dp-v2-results-section {
        padding: 48px 0;
    }

    .dp-v2-table-title,
    .dp-v2-seo-title,
    .dp-v2-results-title {
        font-size: 1.35rem;
    }

    .dp-v2-compare-sidebar {
        flex-direction: column;
    }

    .dp-v2-compare-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .dp-v2-title {
        font-size: 1.5rem;
    }

    .dp-v2-track-btn {
        width: 100%;
        justify-content: center;
        display: none;
    }

    .dp-v2-trust-section {
        padding: 48px 0;
    }

    .dp-v2-trust-tagline {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .dp-v2-trust-sub {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .dp-v2-trust-stats {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }

    .dp-v2-stat {
        flex: 1 1 100%;
        min-width: 100%;
        padding: 24px 28px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
        text-align: left;
    }

    .dp-v2-stat-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .dp-v2-stat > .dp-v2-stat-value,
    .dp-v2-stat > .dp-v2-stat-label {
        text-align: left;
    }

    .dp-v2-results-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dp-v2-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* V2 Compare Item Links */
a.dp-v2-compare-item {
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    margin: 0 -12px;
    padding: 10px 12px;
    border-radius: 8px;
}

a.dp-v2-compare-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* V2 Table Row Links */
.dp-v2-price-table tbody tr {
    cursor: pointer;
}

/* V2 Hero Price Cards */
.dp-v2-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.dp-v2-hero-left {
    flex: 1;
}

.dp-v2-price-cards {
    display: flex;
    gap: 24px;
    margin-bottom: 0;
}

.dp-v2-price-card {
    background: white;
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-width: 200px;
}

.dp-v2-index-card {
    border: 2px solid #e2e8f0;
}

.dp-v2-deal-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
}

.dp-v2-deal-card .dp-v2-price-card-label,
.dp-v2-deal-card .dp-v2-price-card-value,
.dp-v2-deal-card .dp-v2-price-card-link {
    color: white;
}

.dp-v2-price-card-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
}

.dp-v2-price-card-value {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.2;
}

.dp-v2-deal-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dp-v2-deal-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
}

.dp-v2-price-card-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #264265;
    text-decoration: none;
    transition: color 0.2s;
}

.dp-v2-price-card-link:hover {
    color: #10b981;
}

.dp-v2-deal-link:hover {
    color: rgba(255,255,255,0.8);
}

/* V2 Loading Shimmer for Price Cards */
.dp-v2-loading-shimmer {
    position: relative;
    overflow: hidden;
}

.dp-v2-price-skeleton,
.dp-v2-percent-skeleton {
    display: inline-block;
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
    background-size: 200% 100%;
    animation: dp-v2-shimmer-anim 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.dp-v2-price-skeleton {
    width: 100px;
    height: 32px;
}

.dp-v2-percent-skeleton {
    width: 50px;
    height: 24px;
}

.dp-v2-deal-card .dp-v2-price-skeleton,
.dp-v2-deal-card .dp-v2-percent-skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.2) 25%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.2) 75%);
    background-size: 200% 100%;
}

@keyframes dp-v2-shimmer-anim {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* V2 Inline Results in Chart Section */
.dp-v2-inline-results {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #e2e8f0;
}

.dp-v2-inline-results .dp-v2-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dp-v2-inline-results .dp-v2-jewelry-header {
    margin-top: 48px;
}

.dp-v2-inline-results .dp-v2-results-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.dp-v2-inline-results .dp-v2-view-all {
    color: #64748b;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.dp-v2-inline-results .dp-v2-view-all:hover {
    color: #264265;
}

/* V2 Chart Header with Price */
.dp-v2-chart-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dp-v2-chart-current-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dp-v2-chart-price-label {
    color: #64748b;
    font-size: 0.9rem;
}

.dp-v2-chart-price-value {
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
}

.dp-v2-chart-price-change {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.dp-v2-chart-price-change.positive {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.dp-v2-chart-price-change.negative {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

/* V2 Below Chart Section */
.dp-v2-below-chart {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e1e7ef;
}

.dp-v2-shop-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.dp-v2-shop-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.dp-v2-shop-diamonds {
    background: white;
    color: #0f172a;
}

.dp-v2-shop-diamonds:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.dp-v2-shop-jewelry {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.dp-v2-shop-jewelry:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* V2 FAQ Section */
.dp-v2-faq-section {
    background: #f8fafc;
    padding: 64px 0;
}

.dp-v2-faq-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 32px;
    font-family: 'Nunito Sans', sans-serif;
}

.dp-v2-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
}

.dp-v2-faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.dp-v2-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    text-align: left;
    transition: background 0.2s;
}

.dp-v2-faq-question:hover {
    background: #f8fafc;
}

.dp-v2-faq-question svg {
    flex-shrink: 0;
    color: #64748b;
    transition: transform 0.3s;
}

.dp-v2-faq-item.open .dp-v2-faq-question svg {
    transform: rotate(180deg);
}

.dp-v2-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.dp-v2-faq-item.open .dp-v2-faq-answer {
    max-height: 300px;
}

.dp-v2-faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

/* V2 Blog Section */
.dp-v2-blog-section {
    background: white;
    padding: 64px 0;
}

.dp-v2-blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.dp-v2-blog-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
}

.dp-v2-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dp-v2-blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.dp-v2-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.dp-v2-blog-img {
    height: 160px;
    background: linear-gradient(135deg, #264265, #1e3a5f);
    overflow: hidden;
}

.dp-v2-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dp-v2-blog-content {
    padding: 20px;
}

.dp-v2-blog-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #264265;
    background: #e2e8f0;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dp-v2-blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
    line-height: 1.4;
}

.dp-v2-blog-excerpt {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* V2 Mobile Responsive - Additional */
@media (max-width: 1024px) {
    .dp-v2-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dp-v2-hero-top {
        flex-direction: column;
        /* gap: 20px; */
        margin-bottom: 0px;
    }

    .dp-v2-price-cards {
        flex-direction: column;
        gap: 16px;
    }

    .dp-v2-price-card {
        padding: 20px 24px;
    }

    .dp-v2-price-card-value {
        font-size: 1.75rem;
    }

    .dp-v2-chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .dp-v2-chart-current-price {
        flex-wrap: wrap;
        gap: 8px;
    }

    .dp-v2-chart-price-value {
        font-size: 1.25rem;
    }

    .dp-v2-shop-links {
        flex-direction: column;
    }

    .dp-v2-shop-link {
        width: 100%;
        justify-content: center;
    }

    .dp-v2-faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .dp-v2-faq-answer p {
        padding: 0 20px 16px;
    }

    .dp-v2-blog-grid {
        grid-template-columns: 1fr;
    }

    .dp-v2-blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* V2 Index Page Styles */
.dp-v2-hero-sub {
    color: #64748b;
    font-size: 1.1rem;
    margin: 8px 0 0;
}

.dp-v2-grid-section {
    padding: 48px 0;
    background: white;
}

.dp-v2-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 24px;
    font-family: 'Nunito Sans', sans-serif;
}

/* Type Grid (Natural/Lab-Grown) */
.dp-v2-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.dp-v2-type-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dp-v2-type-card:hover {
    border-color: #264265;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.dp-v2-type-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.dp-v2-type-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.dp-v2-type-card p {
    color: #64748b;
    margin: 0 0 16px;
    font-size: 0.95rem;
}

.dp-v2-type-cta {
    color: #264265;
    font-weight: 600;
    font-size: 0.9rem;
}

.dp-v2-natural-card:hover { border-color: #10b981; }
.dp-v2-lab-card:hover { border-color: #8b5cf6; }

/* Shape Grid */
.dp-v2-shape-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.dp-v2-shape-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dp-v2-shape-card:hover {
    border-color: #264265;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.dp-v2-shape-card-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
}

.dp-v2-shape-card-name {
    display: block;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Carat Weight Grid */
.dp-v2-carat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.dp-v2-carat-card {
    background: linear-gradient(135deg, #264265 0%, #1e3a5f 100%);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dp-v2-carat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(38,66,101,0.3);
}

.dp-v2-carat-value {
    display: block;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Nunito Sans', sans-serif;
    margin-bottom: 4px;
}

.dp-v2-carat-label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Index Page Responsive */
@media (max-width: 1024px) {
    .dp-v2-shape-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .dp-v2-carat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .dp-v2-type-grid {
        grid-template-columns: 1fr;
    }
    .dp-v2-shape-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .dp-v2-carat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .dp-v2-type-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .dp-v2-shape-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dp-v2-carat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.dp-v2-chart-canvas-wrap canvas {
    max-width: 100%;
    max-height: 100%;
}