/* ================= SINGLE PAGE – LAYOUT WRAPPER ================= */
.product_single_layout {
    max-width: 1200px;
    margin: 20px auto 30px;
    padding: 0 10px;
}

/* ================= PRODUCT TABS CONTROLLER ================= */
.product_tabs_sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
    margin: 20px 0 0;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.product_tabs_sticky.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: #d1d5db;
}

.product_tabs_container {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 10px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.product_tabs_container::-webkit-scrollbar {
    display: none;
}

.product_tab_item {
    position: relative;
    padding: 8px 16px;
    border-radius: 50px;
    background: #f3f4f6;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.product_tab_item:hover {
    background: #e5e7eb;
    color: #111827;
    transform: translateY(-1px);
}

.product_tab_item.active {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.product_tab_item.active::after {
    content: "";
    position: absolute;
    height: 2px;
    background: #2563eb;
    width: 0;
    bottom: -1px;
    left: 0;
    border-radius: 4px;
    transition: width 0.25s ease;
}

@media (max-width: 768px) {
    .product_tabs_sticky {
        padding: 10px 0;
        margin: 16px 0 0;
    }
    
    .product_tabs_container {
        gap: 6px;
        padding: 0 8px;
    }
    
    .product_tab_item {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* ============ BREADCRUMB (NEW) ============ */
.product_breadcrumb {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 8px;
}
.product_breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.product_breadcrumb li {
    display: inline-flex;
    align-items: center;
}
.product_breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}
.product_breadcrumb a:hover {
    text-decoration: underline;
}
.product_breadcrumb_sep {
    margin: 0 4px;
    color: #9ca3af;
}

.product_single_grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 1.1fr);
    gap: 18px;
    align-items: start;
}

/* Ensure main content column */
.product_single_grid > div:first-child {
    grid-column: 1;
    min-width: 0;
    position: relative;
}

/* Ensure sidebar appears in correct position on desktop */
.product_single_grid > div:last-child {
    grid-column: 2;
    position: sticky;
    top: 20px;
    align-self: start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

/* Sidebar wrapper for proper ordering */
.product_sidebar_wrapper {
    grid-column: 2;
    position: sticky;
    top: 20px;
    align-self: start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

@media (max-width: 992px) {
    .product_single_grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
    
    /* Main content - show first on mobile */
    .product_single_grid > div:first-child {
        order: 1;
        width: 100%;
    }
    
    /* Sidebar - show after main content on mobile */
    .product_sidebar_wrapper {
        order: 2;
        position: relative;
        top: 0;
        max-height: none;
        overflow-y: visible;
        width: 100%;
        grid-column: 1;
    }
}

/* Generic card style */
.product_card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(15,23,42,0.07);
    padding: 16px 18px 14px;
    margin-bottom: 14px;
}

/* Product Card Header */
.product_card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.product_card_title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.product_card_link {
    font-size: 0.85rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.product_card_link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Brands Grid */
.product_brand_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.product_brand_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.product_brand_box:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.brand_title {
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    text-align: center;
    line-height: 1.3;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .product_brand_grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 12px;
    }
    
    .product_brand_box {
        padding: 12px 6px;
    }
    
    .brand_title {
        font-size: 0.75rem;
    }
}

/* Compare Button in Hero */
.hero_compare_btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.hero_compare_btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.hero_compare_btn:active {
    transform: translateY(0);
}

.hero_compare_btn_icon {
    font-size: 1.1rem;
}

/* Floating Compare Widget */
.compare_floating_widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    z-index: 10000;
    display: none;
    align-items: center;
    gap: 12px;
    border: 2px solid #2563eb;
}

.compare_floating_widget.show {
    display: flex;
}

.compare_widget_count {
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.compare_widget_text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

.compare_widget_btn {
    padding: 8px 16px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.compare_widget_btn:hover {
    background: #1d4ed8;
}

@media (max-width: 768px) {
    .compare_floating_widget {
        bottom: 80px;
        right: 16px;
        left: 16px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .compare_widget_text {
        text-align: center;
    }
}

/* ================= HERO SECTION ================= */
.product_single_hero {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.product_single_hero_imgbox {
    flex: 0 0 260px;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    position: relative;
}
.product_single_hero_imgbox img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.product_single_hero_badge {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    color: #e5e7eb;
    background: rgba(15,23,42,0.85);
}
.product_single_hero_meta {
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product_single_hero_toprow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}
.product_single_title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}
.product_single_rating {
    font-size: 0.78rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}
.product_single_rating_star {
    color: #f97316;
    font-size: 1rem;
}
.product_single_tagpill {
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 0.72rem;
    padding: 2px 8px;
    white-space: nowrap;
}
.product_single_subtitle {
    font-size: 0.84rem;
    color: #6b7280;
    line-height: 1.4;
}
.product_single_price {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}
.product_single_price small {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    color: #6b7280;
}
.product_single_meta_row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 0.78rem;
    color: #6b7280;
}
.product_single_meta_row span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.product_single_dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #d1d5db;
}
.product_single_actions {
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.product_btn_primary {
    border: none;
    outline: none;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
}
.product_btn_outline {
    border-radius: 999px;
    border: 1px solid #fecaca;
    background: #fff;
    color: #ef4444;
    font-size: 0.82rem;
    padding: 8px 14px;
    cursor: pointer;
}
.product_single_hero_bottom {
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #6b7280;
}
.product_single_wishlist_btn {
    border: none;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: #ef4444;
    font-size: 0.8rem;
}

/* ================= SECTION TITLES ================= */
.product_section_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.product_section_title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}
.product_section_link {
    font-size: 0.78rem;
    color: #2563eb;
    text-decoration: none;
}

/* KEY SPECS */
.product_single_specs_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 10px;
}
@media (max-width: 768px) {
    .product_single_specs_grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}
.product_single_spec_box {
    background: #f9fafb;
    border-radius: 12px;
    padding: 9px 8px;
}
.product_single_spec_label {
    font-size: 0.72rem;
    color: #9ca3af;
    margin-bottom: 2px;
}
.product_single_spec_value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}
.product_single_spec_note {
    margin-top: 8px;
    font-size: 0.75rem;
    color: #6b7280;
}

/* PROS & CONS */
.product_single_proscons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap:12px;
}
@media (max-width: 768px) {
    .product_single_proscons {
        grid-template-columns: minmax(0,1fr);
    }
}
.product_single_pros,
.product_single_cons {
    padding:12px 12px 10px;
    border-radius:14px;
    font-size:0.8rem;
}
.product_single_pros { background: #ecfdf5; }
.product_single_cons { background: #fef2f2; }
.product_single_pc_title {
    font-size:0.9rem;
    font-weight:600;
    margin-bottom:6px;
    display:flex;
    align-items:center;
    gap:6px;
}
.product_single_pc_icon {
    font-size:1rem;
}
.product_single_pc_list {
    padding-left:16px;
    color:#374151;
}
.product_single_pc_list li {
    margin-bottom:4px;
}

/* ================= EMI & RATING SECTION ================= */
.hero_emi_box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    margin-top: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.hero_emi_box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.hero_emi_box > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.hero_emi_box strong {
    display: block;
    font-weight: 700;
    color: #111827;
    font-size: 0.95rem;
    line-height: 1.3;
}

.hero_emi_box small {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.hero_emi_buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.hero_rating_btn {
    border-radius: 999px;
    border: 1px solid #f97316;
    color: #f97316;
    padding: 10px 18px;
    font-size: 0.85rem;
    background: #fff;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(249, 115, 22, 0.1);
}

.hero_rating_btn:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    border-color: #ea580c;
}

.hero_rating_btn:active {
    transform: translateY(0);
}

.hero_rating_btn_icon {
    font-size: 1rem;
    line-height: 1;
}

.product_btn_outline {
    border-radius: 999px;
    border: 1px solid #fecaca;
    background: #fff;
    color: #ef4444;
    font-size: 0.85rem;
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(239, 68, 68, 0.1);
    white-space: nowrap;
}

.product_btn_outline:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    border-color: #dc2626;
}

.product_btn_outline:active {
    transform: translateY(0);
}

/* Rating Modal/Popup */
.rating_modal_overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.rating_modal_overlay.active {
    display: flex;
    opacity: 1;
}

.rating_modal {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
}

.rating_modal_overlay.active .rating_modal {
    transform: scale(1);
}

.rating_modal_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    z-index: 1;
}

.rating_modal_title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.rating_modal_close {
    width: 32px;
    height: 32px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6b7280;
    line-height: 1;
    transition: all 0.2s ease;
    padding: 0;
}

.rating_modal_close:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.rating_modal_body {
    padding: 24px;
}

.rating_form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rating_stars_input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating_stars_input label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.star_rating_widget {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
    font-size: 28px;
    line-height: 1;
}

.star_rating_widget input[type="radio"] {
    display: none;
}

.star_rating_widget .star_label {
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.star_rating_widget .star_label:hover,
.star_rating_widget .star_label.active {
    color: #fbbf24;
    transform: scale(1.1);
}

.star_rating_widget input[type="radio"]:checked ~ .star_label,
.star_rating_widget input[type="radio"]:checked + .star_label,
.star_rating_widget .star_label:hover ~ .star_label {
    color: #fbbf24;
}

.rating_value_display {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 4px;
    min-height: 20px;
}

.rating_form_group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rating_form_group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.rating_form_group input,
.rating_form_group textarea {
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    background: #ffffff;
    color: #1f2937;
    transition: border-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.rating_form_group input:focus,
.rating_form_group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.rating_form_group textarea {
    resize: vertical;
    min-height: 80px;
}

.rating_form_actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.rating_cancel_btn {
    flex: 1;
    padding: 12px 20px;
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating_cancel_btn:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.rating_submit_btn {
    flex: 1;
    padding: 12px 20px;
    background: #f97316;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating_submit_btn:hover {
    background: #ea580c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.rating_submit_btn:active {
    transform: translateY(0);
}

.rating_submit_btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.rating_success_message {
    background: #d1fae5;
    color: #065f46;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid #10b981;
    font-size: 0.875rem;
    display: none;
}

.rating_success_message.show {
    display: block;
}

.rating_error_message {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid #ef4444;
    font-size: 0.875rem;
    display: none;
}

.rating_error_message.show {
    display: block;
}

/* ACCORDION */
.product_single_accordion details {
    border-bottom: 1px solid #e5e7eb;
    padding:9px 0;
}
.product_single_accordion summary {
    list-style: none;
    cursor: pointer;
    font-size:0.88rem;
    font-weight:500;
    color:#111827;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.product_single_accordion summary::-webkit-details-marker {
    display:none;
}
.product_single_accordion_icon {
    font-size:1rem;
    color:#9ca3af;
}
.product_single_accordion p {
    margin-top:6px;
    font-size:0.8rem;
    color:#4b5563;
}

/* VARIANT TABLE */
.product_single_variants_table {
    width:100%;
    border-collapse:collapse;
    font-size:0.78rem;
}
.product_single_variants_table thead th {
    text-align:left;
    padding:7px 6px;
    border-bottom:1px solid #e5e7eb;
    color:#6b7280;
    font-weight:500;
}
.product_single_variants_table tbody td {
    padding:7px 6px;
    border-bottom:1px solid #f3f4f6;
}
.product_single_variant_name {
    font-weight:500;
    color:#111827;
}
.product_single_variant_price {
    font-weight:600;
}
.product_single_variant_cta a {
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    border:1px solid #fecaca;
    font-size:0.76rem;
    color:#ef4444;
    text-decoration:none;
}

/* HORIZONTAL CARD SCROLLER */
.product_single_hscroll {
    display:flex;
    gap:12px;
    overflow-x:auto;
    padding-bottom:4px;
    scroll-snap-type: x mandatory;
}
.product_single_hscroll::-webkit-scrollbar {
    height:6px;
}
.product_single_hscroll::-webkit-scrollbar-thumb {
    background:#d1d5db;
    border-radius:999px;
}
.product_single_hcard {
    scroll-snap-align:start;
    flex:0 0 220px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 1px 7px rgba(15,23,42,0.06);
    overflow:hidden;
    font-size:0.78rem;
}
.product_single_hcard img {
    width:100%;
    height:120px;
    object-fit:cover;
}
.product_single_hcard_body {
    padding:8px 9px 10px;
}
.product_single_hcard_title {
    font-weight:600;
    margin-bottom:3px;
    color:#111827;
}
.product_single_hcard_meta {
    font-size:0.74rem;
    color:#6b7280;
}

/* COMPARISON TABLE */
.product_single_compare_table {
    width:100%;
    border-collapse:collapse;
    font-size:0.76rem;
}
.product_single_compare_table th,
.product_single_compare_table td {
    padding:8px 6px;
    border-bottom:1px solid #f3f4f6;
    text-align:left;
}
.product_single_compare_table thead th {
    font-weight:600;
    color:#374151;
}

/* FAQ / Q&A */
.product_single_faq_item {
    border-bottom:1px solid #e5e7eb;
    padding:10px 0;
}
.product_single_faq_q {
    font-size:0.86rem;
    font-weight:500;
    color:#111827;
    margin-bottom:4px;
}
.product_single_faq_a {
    font-size:0.8rem;
    color:#4b5563;
}

/* FEEDBACK BAR */
.product_single_feedback {
    display:flex;
    flex-wrap:wrap;
    gap:8px 10px;
    justify-content:space-between;
    align-items:center;
    margin-top:8px;
    font-size:0.8rem;
}
.product_single_feedback button {
    border-radius:999px;
    border:1px solid #e5e7eb;
    padding:6px 12px;
    font-size:0.78rem;
    background:#fff;
    cursor:pointer;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .hero_emi_box {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px 16px;
    }
    
    .hero_emi_box > div:first-child {
        text-align: center;
    }
    
    .hero_emi_buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .product_btn_outline,
    .hero_rating_btn {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .rating_modal {
        max-width: 95%;
        padding: 16px;
    }
    
    .rating_modal_header {
        padding: 16px 18px;
    }
    
    .rating_modal_title {
        font-size: 1.1rem;
    }
    
    .rating_modal_body {
        padding: 18px;
    }
    
    .rating_form {
        gap: 12px;
    }
    
    .star_rating_widget {
        font-size: 24px;
    }
}

