/* Product Details Page Styles */
.product-details-page {
    padding-bottom: 3rem;
}

.product-details-breadcrumb {
    margin-bottom: .5rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.product-details-breadcrumb .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
}

.product-details-breadcrumb .breadcrumb-item a:hover {
    color: #C2402D;
}

.product-details-breadcrumb .breadcrumb-item.active {
    color: #212529;
    font-weight: 600;
}

.product-details-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #adb5bd;
    font-weight: bold;
}

/* Product Main Section */
.product-main-section {
    background: #fff;
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    margin-bottom: 2rem;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 1rem;
}

.product-main-image-wrapper {
    position: relative;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    cursor: zoom-in;
}

.product-main-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: #f8f9fa;
    padding: 4px;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #C2402D;
    box-shadow: 0 2px 8px rgba(194, 64, 45, 0.2);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Info Card */
.product-info-card {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem 1.4rem;
    border: 1px solid #edf0f2;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
}

.product-brand {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-details-title {
    font-size: clamp(1rem, 1.2vw, 1.3rem);
    font-weight: 600;
    line-height: 1.25;
    color: #212529;
    margin: 0 0 1rem;
    overflow-wrap: anywhere;
    display: initial;
}

/* Rating Section */
.product-rating-section {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid #edf0f2;
}

.rating-stars-group {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.stars-display {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-count {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
}

.rating-score {
    color: #212529;
    font-size: 0.95rem;
}

/* Price Section */
.product-price-section {
    padding: 0.85rem 0;
    border-top: 1px solid #e9ecef;
}

.price-label {
    display: block;
    margin-bottom: 0.15rem;
    color: #6c757d;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-bottom: 0.25rem;
}

.currency {
    font-size: 1rem;
    font-weight: 600;
    color: #C2402D;
}

.price-amount {
    font-size: 1.85rem;
    font-weight: 700;
    color: #C2402D;
    line-height: 1;
}

.price-savings {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.original-price {
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: line-through;
}

.discount-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: #dc3545;
    color: #fff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
}

/* Badges Row */
.product-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.availability-badge.in-stock {
    background: #d1e7dd;
    color: #0f5132;
}

.availability-badge.out-of-stock {
    background: #f8d7da;
    color: #842029;
}

.prime-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: #fff3cd;
    color: #856404;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.buybox-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: #d1ecf1;
    color: #055160;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Score Row */
.product-score-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.score-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 700;
}

.score-badge .score-value {
    font-size: 1.25rem;
}

.score-badge .score-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.score-exceptional { background: #d1e7dd; color: #0f5132; }
.score-superb { background: #d1e7dd; color: #0f5132; }
.score-excellent { background: #d1ecf1; color: #055160; }
.score-very-good { background: #fff3cd; color: #856404; }
.score-good { background: #f8f9fa; color: #495057; }

.rank-badge {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
}

/* Product Actions */
.product-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.btn-buy-now {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #C2402D, #ef7b5f);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(194, 64, 45, 0.3);
    justify-content: center;
    min-width: 220px;
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 64, 45, 0.4);
    color: #fff;
}

.btn-view-amazon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: #fff;
    color: #212529;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #dee2e6;
    transition: all 0.2s ease;
}

.btn-view-amazon:hover {
    border-color: #C2402D;
    color: #C2402D;
    transform: translateY(-2px);
}

/* Product Meta */
.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid #e9ecef;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
    font-weight: 600;
}

.meta-value {
    font-size: 0.95rem;
    color: #212529;
    font-weight: 500;
}

/* Product Details Tabs */
.product-details-tabs {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    margin-bottom: 2rem;
    overflow: hidden;
}

.product-details-tabs .nav-tabs {
    border-bottom: 1px solid #e9ecef;
    padding: 0 1.5rem;
    background: #f8f9fa;
}

.product-details-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.product-details-tabs .nav-link:hover {
    color: #C2402D;
    border-bottom-color: rgba(194, 64, 45, 0.3);
}

.product-details-tabs .nav-link.active {
    color: #C2402D;
    border-bottom-color: #C2402D;
    background: transparent;
}

.tab-content-inner {
    padding: 2rem;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 14px;
    transition: all 0.2s ease;
}

.highlight-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #C2402D, #ef7b5f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-icon.discount-icon {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
}

.highlight-icon.prime-icon {
    background: linear-gradient(135deg, #ff9900, #ffb84d);
}

.highlight-icon.stock-icon {
    background: linear-gradient(135deg, #198754, #20c997);
}

.highlight-icon.brand-icon {
    background: linear-gradient(135deg, #0d6efd, #6ea8fe);
}

.highlight-text strong {
    display: block;
    font-size: 0.95rem;
    color: #212529;
    margin-bottom: 0.25rem;
}

.highlight-text p {
    margin: 0;
    font-size: 0.85rem;
    color: #6c757d;
}

/* Specs Table */
.specs-table {
    max-width: 600px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.spec-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.95rem;
}

.spec-value {
    font-weight: 500;
    color: #212529;
    text-align: right;
}

.spec-value.discount-text {
    color: #dc3545;
    font-weight: 700;
}

/* Shipping Info */
.shipping-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.shipping-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 14px;
}

.shipping-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #C2402D;
    flex-shrink: 0;
}

.shipping-details strong {
    display: block;
    font-size: 0.95rem;
    color: #212529;
    margin-bottom: 0.25rem;
}

.shipping-details p {
    margin: 0;
    font-size: 0.85rem;
    color: #6c757d;
}

/* Product Specs Table - Amazon Style */
.product-specs-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.product-specs-table .spec-row {
    display: table-row;
}

.product-specs-table .spec-row .spec-label {
    display: table-cell;
    width: 30%;
    padding: 0.75rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    border-bottom: 1px solid #f1f3f5;
    vertical-align: top;
}

.product-specs-table .spec-row .spec-value {
    display: table-cell;
    width: 70%;
    padding: 0.75rem 0 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #212529;
    border-bottom: 1px solid #f1f3f5;
    vertical-align: top;
    word-break: break-word;
}

.product-specs-table .spec-row:last-child .spec-label,
.product-specs-table .spec-row:last-child .spec-value {
    border-bottom: none;
}

/* Browse Node / Category Cards */
.browse-node-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.browse-node-card:last-child {
    margin-bottom: 0;
}

.browse-node-title {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 0.75rem;
}

.path-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
}

.path-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
}

.path-item:last-child {
    color: #C2402D;
    font-weight: 700;
}

/* Amazon Features Section */
.amazon-features-section {
    background: #fff8f8;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #f1f3f5;
}

.amazon-features-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f3f5;
}

.amazon-features-list {
    margin: 0;
    padding-left: 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.amazon-features-list li {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.6;
    padding-left: 0.5rem;
}

/* Related Products Section */
.related-products-section {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

/* Related-product cards reuse the shared offer partial and are sized by the slider. */
.related-products-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.related-products-slider {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.related-product-slide {
    min-width: 0;
}

.related-product-slide .offer-card-wrapper {
    width: 100%;
    max-width: none;
    margin: 0 !important;
}

.slider-btn {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    background: #fff;
    color: #212529;
    transition: all 0.2s ease;
}

.slider-btn:hover:not(:disabled) {
    background: #c2402d;
    border-color: #c2402d;
    color: #fff;
}

.slider-btn:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 0.25rem;
}

.section-subtitle {
    color: #6c757d;
    margin: 0;
}

.related-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.related-product-card .product-image-link {
    display: block;
    background: #fafafa;
}

.related-product-card .product-image-link img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 20px;
}

.related-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
    border-color: #ffffff;
}

.related-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.related-product-image {
    position: relative;
    background: #f8f9fa;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.related-product-image img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.08);
}

.related-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.3rem 0.6rem;
    background: #dc3545;
    color: #fff;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.related-product-info {
    padding: 1rem 1.25rem 1.25rem;
}

.related-product-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    color: #212529;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-line-orient: vertical;
    overflow: hidden;
    min-height: 2.5rem;
}

.related-product-card .product-rating {
    color: #fbbf24;
    font-size: 0.8rem;
}

.related-product-card .product-rating-count {
    color: #6c757d;
}

.related-product-brand {
    display: block;
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.related-product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.related-product-price .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
}

.related-product-price .discount {
    font-size: 0.8rem;
    color: #dc3545;
    font-weight: 600;
}

.related-product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #fbbf24;
    font-size: 0.8rem;
}

.related-product-rating .rating-count {
    color: #6c757d;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

/* Variations Section - Horizontal Scrollable */
.variations-section {
    margin-top: 0.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e9ecef;
}

.variations-header {
    margin-bottom: 0.75rem;
}

.variations-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.variations-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.variations-scroll-container {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.variations-track {
    display: flex;
    gap: 0.75rem;
    transition: transform 0.3s ease;
    will-change: transform;
}

.variation-card-link {
    flex: 0 0 auto;
    width: 110px;
    text-decoration: none;
    color: inherit;
}

.variation-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    cursor: pointer;
}

.variation-card-link:hover .variation-card {
    border-color: #C2402D;
    box-shadow: 0 2px 8px rgba(194, 64, 45, 0.12);
    transform: translateY(-1px);
    margin-top: 5px;
}

.variation-card-image {
    position: relative;
    background: #f8f9fa;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border-bottom: 1px solid #f1f3f5;
}

.variation-card-image img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.variation-card-link:hover .variation-card-image img {
    transform: scale(1.05);
}

.variation-discount-badge {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    background: #dc3545;
    color: #fff;
    padding: 0.15rem 0.35rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
}

.variation-card-body {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.variation-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #C2402D;
    white-space: nowrap;
}

.variation-original-price {
    font-size: 0.7rem;
    color: #6c757d;
    text-decoration: line-through;
    white-space: nowrap;
}

.variation-attribute {
    display: inline-block;
    padding: 0.1rem 0.4rem;
    background: #f1f3f5;
    color: #495057;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.variation-stock {
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
}

.variation-stock.in-stock {
    color: #198754;
}

.variation-stock.out-of-stock {
    color: #dc3545;
}

.variations-scroll-btn {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    background: #fff;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
    z-index: 2;
    flex-shrink: 0;
}

.variations-scroll-btn:hover:not(:disabled) {
    background: #c2402d;
    border-color: #c2402d;
    color: #fff;
}

.variations-scroll-btn:disabled {
    cursor: not-allowed;
    opacity: 0.35;
}

/* Brand & Classification Section - Amazon Style */
.brand-classification-section {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.bc-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 0.75rem;
}

.bc-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.bc-row {
    display: table-row;
}

.bc-row .bc-label {
    display: table-cell;
    width: 35%;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    border-bottom: 1px solid #f1f3f5;
    vertical-align: top;
}

.bc-row .bc-value {
    display: table-cell;
    width: 65%;
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #212529;
    border-bottom: 1px solid #f1f3f5;
    vertical-align: top;
    word-break: break-word;
}

.bc-row:last-child .bc-label,
.bc-row:last-child .bc-value {
    border-bottom: none;
}

.bc-features {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.bc-features-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 0.75rem;
}

.bc-features-list {
    margin: 0;
    padding-left: 1.25rem;
    display: grid;
    gap: 0.35rem;
}

.bc-features-list li {
    font-size: 0.85rem;
    color: #495057;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .product-main-section {
        padding: 1.5rem;
    }

    .product-gallery {
        position: static;
        margin-bottom: 2rem;
    }

    .product-main-image-wrapper {
        min-height: 300px;
    }

    .product-title {
        font-size: 1.15rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .btn-buy-now,
    .btn-view-amazon {
        width: auto;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .product-main-section {
        padding: 1rem;
        border-radius: 16px;
    }

    .product-main-image-wrapper {
        min-height: 250px;
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .product-details-tabs .nav-tabs {
        padding: 0 0.75rem;
        overflow-x: auto;
    }

    .product-details-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .tab-content-inner {
        padding: 1.25rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .related-products-section {
        padding: 1.5rem 1rem;
    }
}
