/* Mobile Product Info (默认隐藏) */
.accessories-mobile-product-info {
    display: none;
}

@media (max-width: 768px) {
    .accessories-mobile-product-info {
        display: block;
    }
}

/*========================================
   Base Layout
   ======================================== */

.accessories-detail-main {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 60px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .accessories-detail-main {
        padding: 30px 20px;
    }
}

.accessories-detail-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    min-height: 80vh;
}

@media (max-width: 768px) {
    .accessories-detail-container {
        flex-direction: column;
        gap: 20px;
    }
}

/*========================================
   Left Column
   ======================================== */

.accessories-detail-left {
    flex: 0 0 70%;
    width: 70%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .accessories-detail-left {
        flex: 0 0 100%;
        width: 100%;
    }
}

/*  Part 1 - Image Gallery */

.accessories-image-gallery {
    width: 100%;
}

.accessories-main-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #F5F5F5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.accessories-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.accessories-expand-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #1C1C1C;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    z-index: 10;
}

.accessories-expand-btn:hover {
    background-color: #FFFFFF;
}

.accessories-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    z-index: 10;
}

.accessories-gallery-nav:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.accessories-gallery-nav-prev {
    left: 16px;
}

.accessories-gallery-nav-next {
    right: 16px;
}

.accessories-thumbnails-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accessories-thumbnail-nav {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #BE930B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.accessories-thumbnail-nav:hover {
    background-color: #F5F5F5;
}

.accessories-thumbnails-container {
    flex: 1;
    overflow: hidden;
}

.accessories-thumbnails-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.accessories-thumbnail-button {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 4px;
    background-color: #F5F5F5;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease;
    padding: 0;
}

.accessories-thumbnail-button:hover {
    border-color: #CCCCCC;
}

.accessories-thumbnail-button.active {
    border-color: #1C1C1C;
}

.accessories-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/*  Part 2 - Divider */

.accessories-divider {
    border: none;
    border-top: 1px solid #E0E0E0;
    margin: 20px 0;
}

/*  Part 3 - Navigation Tabs */

.accessories-nav-placeholder {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .accessories-nav-placeholder {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.accessories-nav {
    margin: 0;
}

.nav-tabs {
    display: flex;
    gap: 32px;
}

@media (max-width: 768px) {
    .nav-tabs {
        gap: 10px;
    }
}

.nav-tab {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-tab:hover {
    color: #1C1C1C;
}

.nav-tab.active {
    color: #1C1C1C;
    font-weight: 600;
    border-bottom-color: #1C1C1C;
}

/* Fixed Navigation */
.accessories-nav.fixed-nav {
    position: fixed;
    left: 0;
    z-index: 11;
    background-color: #FFFFFF;
    padding: 10px 60px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .accessories-nav.fixed-nav {
        padding: 10px 20px;
    }
}

/*  Part 4 - The Story Section */

.accessories-story-section {
    margin-top: 20px;
}

/*  Story Common Styles */

.story-part {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .story-part {
        margin-bottom: 30px;
    }
}

.story-part-title h2 {
    font-size: 48px;
    font-weight: bold;
    color: #1C1C1C;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 768px) {
    .story-part-title h2 {
        font-size: 36px;
    }
}

.story-part-description p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .story-part-description p {
        font-size: 14px;
    }
}

.story-part-image-label {
    position: absolute;
    background-color: #062B45;
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 4px;
    z-index: 10;
}

.story-part-image-label span {
    font-size: 12px;
    line-height: 1.4;
}

/*  Part 4.1 - Story Part 1 */

.story-part1-header {
    display: flex;
    gap: 40px;
    padding: 30px;
}

@media (max-width: 768px) {
    .story-part1-header {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }
}

.story-part1-header .story-part-title {
    flex: 0 0 50%;
}

.story-part1-header .story-part-description {
    flex: 0 0 50%;
    display: flex;
    align-items: flex-end;
}

.story-part1-image-container {
    position: relative;
    width: 100%;
}

.story-part1-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.story-part1-label {
    bottom: 16px;
    left: 16px;
}

/*  Part 4.2 - Story Part 2 */

.story-part2-content {
    display: flex;
    gap: 0;
    min-height: 400px;
}

@media (max-width: 768px) {
    .story-part2-content {
        flex-direction: column-reverse;
    }
}

.story-part2-left {
    flex: 0 0 50%;
    background-color: #F5F5F5;
    padding: 60px 40px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .story-part2-left {
        padding: 20px;
        gap: 20px;
    }
}

.story-part2-link a {
    font-size: 16px;
    color: #1C1C1C;
    text-decoration: none;
    border-bottom: 1px solid #1C1C1C;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.story-part2-link a:hover {
    opacity: 0.7;
}

.story-part2-right {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E8E8E8;
}

.story-part2-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/*  Part 4.3 - Story Part 3 */

.story-part3-content-reverse {
    display: flex;
    gap: 0;
    min-height: 400px;
}

@media (max-width: 768px) {
    .story-part3-content-reverse {
        flex-direction: column;
    }
}

.story-part3-left-image {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E8E8E8;
}

.story-part3-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.story-part3-right-dark {
    flex: 0 0 50%;
    background-color: #1C1C1C;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .story-part3-right-dark {
        gap: 20px;
        padding: 20px;
    }
}

.story-part3-right-dark .story-part-title h2 {
    color: #FFFFFF;
}

.story-part3-right-dark .story-part-description p {
    color: rgba(255, 255, 255, 0.7);
}

/*  Part 4.4 - Story Part 4 */

.story-part4-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.story-part4-image {
    width: 100%;
    height: auto;
    display: block;
}

.story-part4-label {
    bottom: 16px;
    right: 16px;
}

.story-part4-content {
    display: flex;
    gap: 40px;
    background-color: #062B45;
    padding: 60px 40px;
}

@media (max-width: 768px) {
    .story-part4-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
}

.story-part4-title {
    flex: 0 0 50%;
}

.story-part4-title h2 {
    font-size: 48px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 768px) {
    .story-part4-title h2 {
        font-size: 36px;
    }
}

.story-part4-description {
    flex: 0 0 50%;
}

.story-part4-description p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.story-part4-description p:last-child {
    margin-bottom: 0;
}

/*  Part 4.5 - Story Part 5 */

.story-part5-content {
    display: flex;
    gap: 0;
}

@media (max-width: 768px) {
    .story-part5-content {
        flex-direction: column;
    }
}

.story-part5-left {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E8E8E8;
}

.story-part5-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.story-part5-label {
    bottom: 16px;
    left: 16px;
}

.story-part5-right {
    flex: 0 0 50%;
    background-color: #F5F5F5;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .story-part5-right {
        padding: 20px;
    }
}

.story-part5-title {
    margin-bottom: 24px;
}

.story-part5-title h2 {
    font-size: 48px;
    font-weight: bold;
    color: #062B45;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 768px) {
    .story-part5-title h2 {
        font-size: 36px;
    }
}

.story-part5-description {
    margin-bottom: 24px;
}

.story-part5-description p {
    font-size: 16px;
    color: #062B45;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .story-part5-description p {
        font-size: 14px;
    }
}

.story-part5-link a {
    font-size: 16px;
    color: #062B45;
    text-decoration: none;
    border-bottom: 1px solid #062B45;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.story-part5-link a:hover {
    opacity: 0.7;
}

/*  Part 4.6 - Story Part 6 */

.story-part6-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.story-part6-image {
    width: 100%;
    height: auto;
    display: block;
}

.story-part6-label {
    bottom: 16px;
    left: 16px;
}

.story-part6-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 60px;
}

@media (max-width: 768px) {
    .story-part6-list {
        padding: 20px 0;
        gap: 20px; 
    }
}

.story-part6-list-item {
    display: flex;
    gap: 40px;
}

@media (max-width: 768px) {
    .story-part6-list-item {
        flex-direction: column;
        gap: 20px;
    }
}

.story-part6-list-title {
    flex: 0 0 50%;
}

.story-part6-list-title h2 {
    font-size: 48px;
    font-weight: bold;
    color: #062B45;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 768px) {
    .story-part6-list-title h2 {
        font-size: 36px;
    }
}

.story-part6-list-description {
    flex: 0 0 50%;
}

.story-part6-list-description p {
    font-size: 16px;
    color: #062B45;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

@media (max-width: 768px) {
    .story-part6-list-description p {
        font-size: 14px;
    }
}

.story-part6-list-description p:last-child {
    margin-bottom: 0;
}

.story-part6-note {
    font-size: 14px !important;
    color: #666666 !important;
    margin-top: 16px !important;
}

/*========================================
   Right Column
   ======================================== */

.accessories-detail-right {
    flex: 0 0 30%;
    width: 30%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .accessories-detail-right {
        display: none;
    }
}

/*  Part 1 - Product Info */

.accessories-product-info {
    padding-top: 20px;
}

.accessories-product-name {
    font-size: 30px;
    font-weight: bold;
    color: #1C1C1C;
    line-height: 1.2;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .accessories-product-name {
        font-size: 26px;
    }
}

.accessories-price-container {
    margin-bottom: 12px;
}

.accessories-price {
    font-size: 24px;
    font-weight: 500;
    color: #E53935;
    line-height: 1;
    letter-spacing: 0;
}

@media (max-width: 768px) {
    .accessories-price {
        font-size: 20px;
    }
}

.accessories-original-price {
    font-size: 16px;
    color: #999999;
    text-decoration: line-through;
    line-height: 1;
    letter-spacing: 0;
    margin-left: 8px;
}

.accessories-review-container {
    margin-bottom: 16px;
}

.accessories-review-link {
    color: #1C1C1C;
    text-decoration: none;
    cursor: pointer;
}

.accessories-review-link:hover {
    text-decoration: underline;
}

.accessories-review-text {
    font-size: 14px;
    color: #666666;
}

.accessories-selling-points {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.70);
    line-height: 1.6;
    margin-top: 16px;
}

/*  Part 2 - Specifications */

.accessories-specifications {
    margin-top: 20px;
}

.accessories-specifications-title {
    font-size: 18px;
    font-weight: bold;
    color: #1C1C1C;
    margin-bottom: 16px;
}

.accessories-specifications-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.specification-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

@media (max-width: 768px) {
    .specification-item {
        flex-direction: column;
        gap: 4px;
    }
}

.specification-label {
    font-size: 14px;
    color: #666666;
    flex-shrink: 0;
    min-width: 180px;
}

@media (max-width: 768px) {
    .specification-label {
        min-width: auto;
    }
}

.specification-value {
    font-size: 14px;
    color: #1C1C1C;
    text-align: left;
}

@media (max-width: 768px) {
    .specification-value {
        text-align: left;
    }
}

/*  Part 3 - Add to Cart */

.accessories-add-to-cart {
    margin-top: 20px;
}

.cart-option-group {
    margin-bottom: 24px;
}

.cart-option-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cart-option-label {
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1C;
}

.cart-option-value {
    font-size: 14px;
    color: #666666;
}

.color-options {
    display: flex;
    gap: 12px;
}

.color-option-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.color-option-item.selected {
    border-color: #1C1C1C;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.size-options {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.size-option-btn {
    min-width: 60px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    background-color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1C;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-option-btn:hover {
    border-color: #1C1C1C;
}

.size-option-btn.selected {
    border-color: #1C1C1C;
    background-color: #1C1C1C;
    color: #FFFFFF;
}

.size-guide-link {
    font-size: 14px;
    color: #1C1C1C;
    text-decoration: underline;
    cursor: pointer;
}

.size-guide-link:hover {
    color: #666666;
}

.cart-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    width: 44px;
    height: 48px;
    border: none;
    background-color: #FFFFFF;
    font-size: 20px;
    color: #1C1C1C;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.quantity-btn:hover {
    background-color: #F5F5F5;
}

.quantity-value {
    width: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1C;
}

.add-to-cart-btn {
    flex: 1;
    height: 48px;
    border: none;
    border-radius: 4px;
    background-color: #E0E0E0;
    font-size: 16px;
    font-weight: 600;
    color: #999999;
    cursor: not-allowed;
    transition: all 0.2s ease;
}

.add-to-cart-btn.active {
    background-color: #1C1C1C;
    color: #FFFFFF;
    cursor: pointer;
}

.add-to-cart-btn.active:hover {
    background-color: #333333;
}

/*  Part 4 - Shipping & Returns */

.accessories-shipping-returns {
    margin-top: 20px;
}

.shipping-returns-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.shipping-returns-item:hover {
    background-color: #F5F5F5;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
}

.shipping-returns-item:last-child {
    border-bottom: none;
}

.shipping-returns-label {
    font-size: 16px;
    color: #1C1C1C;
    flex: 1;
}

.shipping-returns-arrow {
    color: #999999;
    flex-shrink: 0;
}

/*  Part 5 - Compatible eBikes */

.accessories-compatible-ebikes {
    margin-top: 20px;
}

.compatible-ebikes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.compatible-ebikes-title {
    font-size: 18px;
    font-weight: bold;
    color: #1C1C1C;
    margin: 0;
}

.compatible-ebikes-count {
    font-size: 14px;
    color: #666666;
}

.compatible-ebikes-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.compatible-ebike-card {
    background-color: #F5F5F5;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.compatible-ebike-card:hover {
    background-color: #E8E8E8;
}

.compatible-ebike-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.compatible-ebike-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.compatible-ebike-card-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.compatible-ebike-card-name {
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1C;
}

.compatible-ebike-card-arrow {
    color: #999999;
    flex-shrink: 0;
}

/*========================================
   Product Details Section
   ======================================== */

.product-details-section {
    background-color: #FFFFFF;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .product-details-section {
        margin-bottom: 30px;
    }
}

.product-details-container {
    overflow-wrap: break-word;
}

.product-details-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

@media (min-width: 1024px) {
    .product-details-layout {
        flex-wrap: nowrap;
        gap: 60px;
    }
}

.product-details-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 1024px) {
    .product-details-left {
        width: 40%;
        gap: 12px;
    }
}

.product-details-title {
    font-size: 26px;
    font-weight: bold;
    color: #1C1C1C;
    line-height: normal;
    margin: 0;
}

@media (min-width: 768px) {
    .product-details-title {
        font-size: 36px;
    }
}

.product-details-subtitle {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.70);
    margin: 0;
}

@media (min-width: 768px) {
    .product-details-subtitle {
        font-size: 16px;
    }
}

.product-details-right {
    width: 100%;
}

@media (min-width: 1024px) {
    .product-details-right {
        width: 60%;
    }
}

.product-detail-item {
    border-bottom: 1px solid rgba(28, 28, 28, 0.2);
    cursor: pointer;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .product-detail-item {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

.product-detail-item:first-child {
    padding-top: 0;
}

.product-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

@media (min-width: 768px) {
    .product-detail-header {
        gap: 13px;
    }
}

.product-detail-title {
    font-size: 16px;
    font-weight: bold;
    color: #1C1C1C;
    overflow-wrap: break-word;
    margin: 0;
}

@media (min-width: 768px) {
    .product-detail-title {
        font-size: 18px;
    }
}

.product-detail-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.product-detail-content {
    font-size: 14px;
    color: #6B7280;
    margin-top: 10px;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .product-detail-content {
        font-size: 16px;
        margin-top: 12px;
    }
}

.product-detail-content.hidden {
    display: none;
}

.product-detail-content a {
    text-decoration: underline;
}

.product-detail-content p {
    margin: 0 0 16px 0;
}

.product-detail-content p:last-child {
    margin-bottom: 0;
}

/*========================================
   Rider Reviews Section
   ======================================== */

.rider-reviews-section {
    background-color: #FFFFFF;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .rider-reviews-section {
        margin-bottom: 30px;
    }
}

.rider-reviews-container {
    overflow-wrap: break-word;
}

.rider-reviews-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

@media (min-width: 1024px) {
    .rider-reviews-layout {
        flex-wrap: nowrap;
        gap: 60px;
    }
}

.rider-reviews-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 1024px) {
    .rider-reviews-left {
        width: 40%;
        gap: 12px;
    }
}

.rider-reviews-title {
    font-size: 26px;
    font-weight: bold;
    color: #1C1C1C;
    line-height: normal;
    margin: 0;
}

@media (min-width: 768px) {
    .rider-reviews-title {
        font-size: 36px;
    }
}

.rider-reviews-subtitle {
    font-size: 14px;
    color: rgba(28, 28, 28, 0.70);
    margin: 0;
}

@media (min-width: 768px) {
    .rider-reviews-subtitle {
        font-size: 16px;
    }
}

.rider-reviews-right {
    width: 100%;
}

@media (min-width: 1024px) {
    .rider-reviews-right {
        width: 60%;
    }
}

.no-reviews-box {
    background-color: #F5F5F5;
    padding: 24px;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .no-reviews-box {
        padding: 32px;
    }
}

.no-reviews-title {
    font-size: 18px;
    font-weight: bold;
    color: #1C1C1C;
    margin: 0 0 12px 0;
}

@media (min-width: 768px) {
    .no-reviews-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

.no-reviews-text {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .no-reviews-text {
        font-size: 16px;
    }
}

/*========================================
   Complete Your Ride Section
   ======================================== */

.complete-ride-section {
    background-color: #FFFFFF;
    margin: 60px 0;
}

@media (max-width: 768px) {
    .complete-ride-section {
        margin: 30px 0;
    }
}

.complete-ride-container {
    overflow-wrap: break-word;
}

.complete-ride-header {
    margin-bottom: 30px;
}

.complete-ride-title {
    font-size: 26px;
    font-weight: bold;
    color: #1C1C1C;
    line-height: normal;
    margin: 0;
}

@media (min-width: 768px) {
    .complete-ride-title {
        font-size: 36px;
    }
}

.complete-ride-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .complete-ride-products {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.complete-ride-card {
    background-color: #F5F5F5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.complete-ride-card:hover {
    background-color: #E8E8E8;
}

.complete-ride-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.complete-ride-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.complete-ride-card-info {
    padding: 16px;
}

@media (min-width: 768px) {
    .complete-ride-card-info {
        padding: 20px;
    }
}

.complete-ride-card-name {
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1C;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.complete-ride-card-price {
    font-size: 14px;
    color: #E53935;
    font-weight: 500;
    margin: 0 0 16px 0;
}

.complete-ride-card-price .currency {
    font-size: 12px;
    color: #666666;
    font-weight: 400;
}

.complete-ride-card-actions {
    display: flex;
    gap: 8px;
}

.complete-ride-add-cart-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 4px;
    background-color: #BE930B;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.complete-ride-add-cart-btn:hover {
    background-color: #A6820A;
}

.complete-ride-view-more-btn {
    flex: 1;
    height: 40px;
    border: 1px solid #BE930B;
    border-radius: 4px;
    background-color: transparent;
    color: #BE930B;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.complete-ride-view-more-btn:hover {
    background-color: #BE930B;
    color: #FFFFFF;
}

.complete-ride-footer {
    margin-top: 20px;
}

.complete-ride-explore-link {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
    color: #1C1C1C;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.complete-ride-explore-link:hover {
    opacity: 0.7;
}

.complete-ride-explore-link svg {
    flex-shrink: 0;
}