.product-details-section {
    position: relative;
    display: flex;
    align-items: center;
    padding: 50px 5%;
    overflow: hidden;
    background-color: #ffffff;
    height: 80vh;
    align-items: center;
}

.pd-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.pd-info {
    flex: 1.5;
}

.pd-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pd-price {
    font-size: 36px;
    font-weight: 700;
    color: #76ba1b;
    margin-bottom: 30px;
}

.pd-price span {
    font-size: 24px;
    font-weight: 400;
}

.pd-specs-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    max-width: 500px;
}

.spec-col small {
    display: block;
    color: #00a9e1;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 5px;
}

.spec-col strong {
    font-size: 22px;
    color: #008cc9;
    font-weight: 700;
}

.pd-description {
    color: #333;
    line-height: 1.6;
    font-size: 15px;
    max-width: 550px;
}

.pd-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thumb {
    width: 80px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.thumb.active,
.thumb:hover {
    border-color: #008cc9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pd-main-visual {
    flex: 2;
}

.pd-main-visual img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: block;
}

@media screen and (max-width: 1100px) {
    .pd-container {
        flex-direction: column;
        text-align: center;
    }

    .pd-specs-grid {
        margin: 0 auto 30px auto;
    }

    .pd-thumbnails {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 30px;
    }

    .pd-description {
        margin: 0 auto;
    }
}

/* section 2 */
.variants-specs-section {
    padding: 80px 5%;

}

.vs-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.vs-left {
    flex: 1.3;
}

.vs-right {
    flex: 1;
}

.vs-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #008cc9;
    font-weight: 600;
    margin-bottom: 25px;
}

.blue-sq {
    width: 8px;
    height: 8px;
    background: #008cc9;
    display: block;
}

.variant-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.v-tab {
    padding: 15px 25px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.v-tab.active {
    background: #008cc9;
    color: white;
}

.v-tab:not(.active) {
    background: #f2f2f2;
    color: #777;
}

.truck-display-box {
    position: relative;
    text-align: center;
}

#truckMainImg {
    width: 80%;
    position: relative;
    z-index: 2;
}

.shadow-platform {
    width: 90%;
    height: 40px;
    background: #e5e5e5;
    border-radius: 100%;
    margin: -30px auto 0;
    z-index: 1;
}

.color-picker-wrap {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #f8f8f8;
    padding: 20px 15px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.color-option {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    cursor: pointer;
    border: 0;
    background: transparent;
    padding: 0;
}

.color-option span {
    font-size: 10px;
    font-weight: 700;
    color: #003b53;
    opacity: 0.5;
}

.color-option.active span,
.color-option:hover span {
    opacity: 1;
}

.color-option.active .dot {
    box-shadow: 0 0 0 4px rgba(0, 140, 201, 0.14);
}

.dot {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-row {
    background-color: #eef7fb;
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s-label {
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.s-value {
    color: #008cc9;
    font-size: 18px;
    font-weight: 800;
}

@media screen and (max-width: 992px) {
    .vs-container {
        flex-direction: column;
    }

    .color-picker-wrap {
        position: relative;
        flex-direction: row;
        top: 0;
        transform: none;
        margin-top: 30px;
        border-radius: 15px;
        width: fit-content;
        margin: 30px auto;
    }
}

/* section 3 */
.detailed-specs {
    padding: 80px 5%;
    background-color: #ffffff;
    background-image: radial-gradient(#d1d1d1 1.2px, transparent 1.2px);
    background-size: 30px 30px;
    overflow: hidden;
}

.specs-header {
    max-width: 800px;
    margin : 0 auto 60px auto;
    text-align: center;
}

.specs-label {
    color: #008cc9;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 10px;
    justify-content: center;
}

.blue-sq {
    width: 8px;
    height: 8px;
    background: #008cc9;
    display: block;
}

.specs-title {
    font-size: 32px;
    font-weight: 800;
    border-bottom: 3px solid #008cc9;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.specs-desc {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Tabs Logic */
.specs-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
    justify-content: center;
}

.spec-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    background: #f2f2f2;
    color: #555;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.spec-btn.active {
    background: #008cc9;
    color: white;
}

/* Visual Area */
.specs-visual-wrap {
    position: relative;
    max-width: 1400px;
    height: 450px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Arrows */
/* .spec-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    background: #005d85;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
}

.spec-arrow.left {
    left: -30px;
}

.spec-arrow.right {
    right: -30px;
} */

/* Truck Display */
.truck-box {
    position: relative;
    z-index: 5;
}

.main-truck {
    width: 450px;
    position: relative;
    z-index: 2;
    transition: 0.5s;
}

.truck-shadow {
    width: 450px;
    height: 40px;
    background: #e5e5e5;
    border-radius: 100%;
    margin: -45px auto 0;
    z-index: 1;
}

/* Hotspots & Technical Lines */
.hotspot {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 6;
}

.dots {
    width: 12px;
    height: 12px;
    background: #008cc9;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0, 140, 201, 0.4);
}

.hotspot-text {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    transition: 0.3s;
}

/* Connector Line Logic */
.line {
    border: 1px solid #008cc9;
    height: 35px;
    width: 100px;
    border-bottom: none;
}

.line-tl {
    border-right: none;
    transform: skewX(-45deg);
    margin-top: 30px;
}

.line-bl {
    border-right: none;
    border-top: none;
    border-bottom: 1px solid #008cc9;
    transform: skewX(45deg);
    margin-bottom: 30px;
}

.line-tr {
    border-left: none;
    transform: skewX(45deg);
    margin-top: 30px;
}

.line-br {
    border-left: none;
    border-top: none;
    border-bottom: 1px solid #008cc9;
    transform: skewX(-45deg);
    margin-bottom: 30px;
}

/* Positioning */
.pos-tl {
    top: 15%;
    left: 18%;
}

.pos-bl {
    bottom: 25%;
    left: 14%;
}

.pos-tr {
    top: 12%;
    right: 18%;
}

.pos-br {
    bottom: 22%;
    right: 20%;
}

/* Mobile logic */
@media screen and (max-width: 992px) {
    .specs-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .specs-visual-wrap {
        height: auto;
        padding-top: 50px;
    }

    .hotspot {
        position: relative;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        margin: 20px auto;
        justify-content: center;
    }

    .line {
        display: none;
    }

    .main-truck {
        width: 85%;
    }
}


/* section 4 */
.angle-gallery-section {
    background-color: #003b53;
    padding: 80px 5%;
    color: white;
}

.center-text {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.white-sq {
    width: 8px;
    height: 8px;
    background: white;
}

.gallery-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-desc {
    font-size: 15px;
    color: #d1d1d1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-dual-wrap {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-set {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thumb-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.g-thumb {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    opacity: 0.7;
}

.g-thumb.active,
.g-thumb:hover {
    border-color: #ffffff;
    opacity: 1;
}

.angle-display {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.angle-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 992px) {
    .gallery-dual-wrap {
        flex-direction: column;
    }

    .angle-display {
        height: 300px;
    }
}

/* section 4 */
.business-ops-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.center-text {
    text-align: center;
    margin-bottom: 80px;
}

.ops-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #008cc9;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.blue-sq {
    width: 8px;
    height: 8px;
    background: #008cc9;
}

.ops-title {
    font-size: 32px;
    font-weight: 700;
    border-bottom: 3px solid #008cc9;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.ops-desc {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.ops-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.op-card {
    flex: 1;
    position: relative;
    padding: 60px 30px 50px 30px;
    border-radius: 15px;
    color: white;
    text-align: center;
    margin-top: 40px;
    z-index: 2;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.dark-navy {
    background-color: #003b53;
}

.bright-blue {
    background-color: #008cc9;
}

.ops-grid:hover .op-card {
    background-color: #008cc9;
}

.ops-grid .op-card:hover {
    background-color: #003b53;
    transform: translateY(-8px);
    box-shadow: 0 18px 34px rgba(0, 59, 83, 0.18);
}

.bg-number {
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 130px;
    font-weight: 800;
    color: #e5edf1;
    z-index: -1;
    line-height: 1;
}

.op-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.op-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

@media screen and (max-width: 992px) {
    .ops-grid {
        flex-direction: column;
        gap: 100px;
        align-items: center;
    }

    .op-card {
        width: 100%;
        max-width: 400px;
    }
}

/* section 5 */
.why-choose-section {
    padding: 60px 5%;

}

.wc-main-container {
    max-width: 1600px;
    margin: 0 auto;
    background-color: #003b53;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    gap: 40px;
    color: #ffffff;
}

.wc-text-content {
    flex: 1;
}

.wc-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 50px;
}

.wc-stats-grid {
    display: flex;
    align-items: center;
}

.wc-stat-item {
    padding: 0 30px;
    position: relative;
}

.wc-stat-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.wc-stat-item:first-child {
    padding-left: 0;
}

.wc-stat-item h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.wc-stat-item p {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.8;
    text-transform: capitalize;
}

.wc-image-frame {
    flex: 1.2;
    padding: 15px;
    border-radius: 15px;

}

.wc-image-frame img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

@media screen and (max-width: 1024px) {
    .wc-main-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .wc-title {
        font-size: 32px;
    }

    .wc-stats-grid {
        justify-content: center;
        margin-bottom: 30px;
    }

    .wc-stat-item {
        padding: 0 15px;
    }

    .wc-stat-item h3 {
        font-size: 28px;
    }
}

@media screen and (max-width: 600px) {
    .wc-stats-grid {
        flex-direction: column;
        gap: 20px;
    }

    .wc-stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 15px;
        width: 100%;
    }

    .wc-stat-item:last-child {
        border-bottom: none;
    }
}

/* Additional responsive code */
@media screen and (max-width: 1200px) {
    .product-details-section {
        height: auto;
        min-height: 80vh;
        padding: 60px 20px;
    }

    .pd-container,
    .vs-container,
    .gallery-dual-wrap,
    .wc-main-container {
        width: 100%;
    }

    .pd-title {
        font-size: 42px;
    }

    .pd-price {
        font-size: 32px;
    }

    .spec-col strong {
        font-size: 20px;
    }

    .main-truck,
    .truck-shadow {
        width: 380px;
    }
}

@media screen and (max-width: 768px) {
    .product-details-section,
    .variants-specs-section,
    .detailed-specs,
    .angle-gallery-section,
    .business-ops-section,
    .why-choose-section {
        padding: 50px 20px;
    }

    .product-details-section {
        min-height: auto;
    }

    .pd-container {
        gap: 24px;
    }

    .pd-title {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .pd-price {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .pd-price span {
        font-size: 18px;
    }

    .pd-specs-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        max-width: 100%;
    }

    .spec-col strong {
        font-size: 18px;
    }

    .pd-description {
        font-size: 14px;
    }

    .pd-thumbnails {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 10px;
    }

    .thumb {
        width: 74px;
        height: 52px;
    }

    .pd-main-visual img {
        border-radius: 16px;
    }

    .variant-tabs,
    .specs-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .v-tab,
    .spec-btn {
        flex: 0 0 auto;
        padding: 12px 18px;
        font-size: 13px;
        white-space: nowrap;
    }

    #truckMainImg {
        width: 100%;
        max-width: 520px;
    }

    .shadow-platform {
        width: 85%;
        height: 28px;
        margin-top: -22px;
    }

    .color-picker-wrap {
        gap: 14px;
        padding: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .color-option {
        justify-content: center;
    }

    .spec-row {
        padding: 16px 18px;
        gap: 14px;
    }

    .s-value {
        font-size: 16px;
        text-align: right;
    }

    .specs-header {
        margin-bottom: 30px;
    }

    .specs-title,
    .gallery-title,
    .ops-title {
        font-size: 28px;
    }

    .specs-tabs {
        margin-bottom: 35px;
    }

    .specs-visual-wrap {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 10px;
    }

    .truck-box {
        order: -1;
        width: 100%;
        text-align: center;
    }

    .main-truck,
    .truck-shadow {
        width: min(100%, 360px);
    }

    .truck-shadow {
        height: 28px;
        margin-top: -30px;
    }

    .hotspot {
        width: 100%;
        gap: 10px;
    }

    .hotspot-text {
        white-space: normal;
        text-align: left;
        font-size: 13px;
    }

    .thumb-bar {
        gap: 10px;
        padding: 10px;
        border-radius: 12px;
    }

    .g-thumb {
        height: 58px;
    }

    .angle-display {
        height: 260px;
        border-radius: 14px;
    }

    .center-text {
        margin-bottom: 45px;
    }

    .ops-grid {
        gap: 85px;
    }

    .op-card {
        max-width: 100%;
        padding: 52px 22px 38px;
        border-radius: 12px;
    }

    .bg-number {
        font-size: 105px;
        top: -55px;
    }

    .wc-main-container {
        border-radius: 16px;
        padding: 34px 22px;
        gap: 28px;
    }

    .wc-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .product-details-section,
    .variants-specs-section,
    .detailed-specs,
    .angle-gallery-section,
    .business-ops-section,
    .why-choose-section {
        padding: 40px 16px;
    }
.variant-tabs{
    justify-content: center;
}
    .pd-title {
        font-size: 28px;
    }

    .pd-price {
        font-size: 24px;
    }

    .pd-specs-grid {
        gap: 14px;
    }

    .spec-col small {
        font-size: 10px;
    }

    .spec-col strong {
        font-size: 16px;
    }

    .pd-thumbnails {
        width: 100%;
    }

    .thumb {
        width: calc(33.333% - 8px);
        height: 58px;
    }

    .v-tab,
    .spec-btn {
        padding: 11px 14px;
        font-size: 12px;
    }

    .spec-row {
        align-items: flex-start;
        flex-direction: column;
        padding: 15px 16px;
    }

    .s-value {
        text-align: left;
    }

    .specs-title,
    .gallery-title,
    .ops-title {
        font-size: 24px;
    }

    .specs-desc,
    .gallery-desc,
    .ops-desc {
        font-size: 14px;
    }

    .main-truck,
    .truck-shadow {
        width: min(100%, 300px);
    }

    .thumb-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .g-thumb {
        height: 68px;
    }

    .angle-display {
        height: 220px;
    }

    .center-text {
        margin-bottom: 35px;
    }

    .op-card h3 {
        font-size: 19px;
    }

    .op-card p {
        font-size: 13px;
    }

    .wc-title {
        font-size: 26px;
    }

    .wc-stat-item h3 {
        font-size: 26px;
    }

    .wc-image-frame {
        padding: 0;
    }
}

@media screen and (max-width: 360px) {
    .pd-specs-grid {
        grid-template-columns: 1fr;
    }

    .thumb {
        width: 100%;
        height: 70px;
    }

    .color-picker-wrap {
        width: 100%;
    }

    .color-option {
        width: 100%;
    }

    .angle-display {
        height: 190px;
    }
}

/* 768px screen responsive update */
@media screen and (max-width: 768px) {
    .product-details-section {
        height: auto;
        padding-top: 60px;
        padding-bottom: 45px;
    }

    .pd-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pd-info,
    .pd-main-visual,
    .vs-left,
    .vs-right,
    .wc-text-content,
    .wc-image-frame {
        width: 100%;
        flex: none;
    }

    .pd-specs-grid {
        justify-content: center;
    }

    .pd-main-visual img {
        max-width: 560px;
        margin: 0 auto;
    }

    .vs-container {
        flex-direction: column;
        gap: 35px;
    }

    .variant-tabs {
        width: 100%;
    }

    .truck-display-box {
        width: 100%;
    }

    .color-picker-wrap {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 360px;
        margin: 25px auto 0;
    }

    .spec-list {
        width: 100%;
    }

    .specs-header {
        max-width: 100%;
        text-align: center;
    }

    .specs-label,
    .vs-label {
        justify-content: center;
    }

    .specs-tabs {
        width: 100%;
    }

    .specs-visual-wrap {
        width: 100%;
    }

    .hotspot {
        max-width: 360px;
    }

    .gallery-dual-wrap {
        flex-direction: column;
        gap: 35px;
    }

    .gallery-set {
        width: 100%;
    }

    .ops-grid {
        flex-direction: column;
        align-items: center;
    }

    .op-card {
        width: 100%;
    }

    .wc-main-container {
        flex-direction: column;
        text-align: center;
    }

    .wc-stats-grid {
        justify-content: center;
    }
}

/* Technical details labels: 2 rows on small screens, 1 row on mobile */
@media screen and (max-width: 768px) {
    .specs-visual-wrap {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 20px;
        align-items: start;
    }

    .truck-box {
        grid-column: 1 / -1;
    }

    .hotspot {
        width: 100%;
        max-width: none;
        margin: 0;
        justify-content: center;
    }

    .hotspot .dots {
        order: 1;
        flex: 0 0 auto;
    }

    .hotspot .hotspot-text {
        order: 2;
        white-space: normal;
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    .specs-visual-wrap {
        grid-template-columns: 1fr;
        gap: 14px;
    }
.ops-grid {
    gap: 20px;
}
    .hotspot {
        justify-content: flex-start;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Color options below vehicle image */
.truck-display-box .color-picker-wrap {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 28px auto 0;
    padding: 14px 18px;
    border-radius: 18px;
}

.truck-display-box .color-option {
    justify-content: center;
}

@media screen and (max-width: 480px) {
    .truck-display-box .color-picker-wrap {
        width: 100%;
        max-width: 320px;
        flex-wrap: wrap;
    }

    .truck-display-box .color-option {
        width: auto;
    }
}
