/* Plate Styles Section CSS */

.plate-styles-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.plate-styles-container {
    max-width: 100% !important;
    width: 100% !important;
    /* padding-left: 40px;
    padding-right: 40px; */
}

/* Wrapper for scroll buttons and grid */
.plate-styles-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1425px;
    margin: 0 auto;
}

/* Scroll Buttons */
.plate-scroll-btn {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.plate-scroll-btn:hover:not(:disabled) {
    background: var(--pr-yellow);
    border-color: var(--pr-yellow);
    transform: scale(1.1);
}

.plate-scroll-btn i {
    color: var(--pr-text-dark);
    font-size: 16px;
}

.plate-scroll-btn:hover:not(:disabled) i {
    color: #FFFFFF;
}

.plate-scroll-btn:disabled {
    cursor: default;
}

.plate-styles-grid {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 10px 5px;
    scroll-snap-type: x mandatory;
}

.plate-styles-grid::-webkit-scrollbar {
    display: none;
}

.plate-style-card {
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    padding: 25px;
    flex: 0 0 250px;
    min-width: 250px;
    max-width: 275px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.plate-style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--pr-yellow);
}

.plate-preview-wrapper {
    height: 120px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* Background tints for each style */
.style-current { background-color: #FFF9E6; }
.style-prefix { background-color: #E6F0FF; }
.style-suffix { background-color: #E6F9F0; }
.style-dateless { background-color: #F3E6FF; }
.style-ni { background-color: #FFE6E6; }

.plate-box {
    background: #FFCC00;
    color: #000000;
    font-weight: 700;
    font-size: 20px;
    padding: 10px 25px;
    border: 2px solid #000000;
    border-radius: 4px;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    white-space: nowrap;
}

.plate-style-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.plate-style-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.browse-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--pr-yellow);
}

.card-footer i {
    font-size: 14px;
    color: #000000;
    transition: transform 0.3s ease;
}

.plate-style-card:hover .card-footer i {
    transform: translateX(5px);
    color: var(--pr-yellow);
}

/* Responsive */
@media (max-width: 768px) {
    .plate-styles-section {
        padding: 60px 20px;
    }
    
    .plate-styles-grid {
        gap: 15px;
    }
    
    .plate-style-card {
        min-width: 100%;
        max-width: 100%;
    }
    .plate-card {
        flex-direction: row;
    }
    .plate-actions {
        flex-direction: column;
    }
    .plate-price-row {
        flex-direction: column;
        gap: 16px;
    }
    .plate-card {
        gap: 40px;
    }
}
@media (max-width: 544px) { 
    .plate-display {
        font-size: 30px;
        text-wrap: nowrap;
        white-space: nowrap;
    }
    .btn-buy-now  {
        text-wrap: nowrap;
        white-space: nowrap;
    }
}