/* ==========================================================================
   Premium Product Page Styling Override for OpenCart
   Theme Accent Color: #D6A916 (Gold / Sarı)
   ========================================================================== */

/* Font Family Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Main Container styling */
#product-product {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    padding-top: 20px;
    padding-bottom: 50px;
}

/* --------------------------------------------------------------------------
   Product Gallery & Images
   -------------------------------------------------------------------------- */
.thumbnails {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 25px;
}

.thumbnails > li {
    margin-bottom: 20px;
}

.thumbnails .thumbnail {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 6px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    overflow: hidden;
}

.thumbnails .thumbnail img {
    border-radius: 12px;
    transition: transform 0.5s ease;
    width: 100%;
}

.thumbnails .thumbnail:hover {
    border-color: #D6A916;
    box-shadow: 0 8px 25px rgba(214, 169, 22, 0.08);
}

.thumbnails .thumbnail:hover img {
    transform: scale(1.02);
}

/* Additional images grid */
.thumbnails .image-additional {
    float: left;
    width: 25%;
    padding: 0 8px;
    margin-bottom: 0;
}

.thumbnails .image-additional .thumbnail {
    padding: 4px;
    border-radius: 10px;
}

.thumbnails .image-additional .thumbnail img {
    border-radius: 8px;
}

/* Clearfix for thumbnails float */
.thumbnails::after {
    content: "";
    clear: both;
    display: table;
}

/* --------------------------------------------------------------------------
   Product Details Header & Metadata
   -------------------------------------------------------------------------- */
#product h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #1e293b;
    margin: 0 0 16px 0 !important;
    padding-bottom: 14px !important;
    border-bottom: 1.5px solid #f1f5f9 !important;
    text-align: left;
    line-height: 1.3;
}

/* Metadata badges block */
#product .list-unstyled:first-of-type {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 0;
}

#product .list-unstyled:first-of-type li {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

#product .list-unstyled:first-of-type li a {
    color: #D6A916;
    font-weight: 600;
    margin-left: 4px;
    text-decoration: none;
}

#product .list-unstyled:first-of-type li a:hover {
    color: #bfa02c;
}

#product .list-unstyled:first-of-type li::before {
    content: "•";
    color: #cbd5e1;
    margin-right: 8px;
    font-size: 16px;
}

#product .list-unstyled:first-of-type li:first-child::before {
    display: none;
}

/* --------------------------------------------------------------------------
   Price Container Card
   -------------------------------------------------------------------------- */
.price-container-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.price-container-card .list-unstyled {
    margin: 0;
    padding: 0;
}

/* Price layout styles */
.price-old-val {
    font-size: 15px;
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 2px;
    display: block;
}

.price-new-val {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #D6A916;
    line-height: 1;
    display: inline-block;
}

.price-tax-val {
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
    display: block;
    font-weight: 500;
}

/* Discount styling inside price box */
.price-discounts {
    margin-top: 12px !important;
    padding-top: 12px !important;
    border-top: 1px dashed #cbd5e1;
    font-size: 12px;
    color: #475569;
}

.price-discounts li {
    margin-bottom: 4px;
}

/* --------------------------------------------------------------------------
   Options & Customizations Layout
   -------------------------------------------------------------------------- */
#product hr {
    border-top: 1px solid #e2e8f0;
    margin: 20px 0;
}

#product h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0 !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid #e2e8f0 !important;
    text-align: left;
}

/* Option inputs styling */
#product .form-group {
    margin-bottom: 20px;
}

#product .form-group label.control-label {
    font-weight: 600;
    font-size: 13px;
    color: #475569;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 8px;
    display: block;
    text-align: left;
}

#product .form-control {
    height: 44px !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    background-color: #ffffff !important;
    color: #1e293b !important;
    box-shadow: none !important;
    transition: all 0.2s ease-in-out !important;
}

#product .form-control:focus {
    border-color: #D6A916 !important;
    box-shadow: 0 0 0 3px rgba(214, 169, 22, 0.15) !important;
}

/* Styled radio options inside btn-group (chips layout) */
#product .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 5px;
    float: none;
    width: 100%;
}

#product .btn-group label.btn {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    color: #475569 !important;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px !important;
    margin: 0 !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
    cursor: pointer;
    float: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#product .btn-group label.btn:hover {
    border-color: #D6A916 !important;
    color: #D6A916 !important;
    background-color: rgba(214, 169, 22, 0.02) !important;
}

#product .btn-group label.btn.active {
    background-color: rgba(214, 169, 22, 0.06) !important;
    border-color: #D6A916 !important;
    color: #D6A916 !important;
    box-shadow: 0 0 0 1px #D6A916 !important;
}

#product .btn-group label.btn input[type="radio"] {
    display: none !important;
}

#product .btn-group label.btn i {
    display: none !important; /* Hide old radio icons */
}

/* Checkboxes in option list styling */
#product .checkbox {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 0;
}

#product .checkbox label {
    display: inline-flex !important;
    align-items: center;
    padding: 10px 14px !important;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
}

#product .checkbox label:hover {
    border-color: #D6A916;
    background: rgba(214, 169, 22, 0.01);
}

#product .checkbox input[type="checkbox"] {
    position: relative !important;
    margin: 0 10px 0 0 !important;
    accent-color: #D6A916;
    width: 16px;
    height: 16px;
}

#product .checkbox label img {
    margin-right: 8px;
    border-radius: 4px;
    width: 20px;
    height: 20px;
}

/* --------------------------------------------------------------------------
   Modern Action Row: Quantity + Add to Cart + Wishlist/Compare
   -------------------------------------------------------------------------- */
.action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 25px;
}

/* Quantity selector component */
.action-row .quantity {
    display: inline-flex !important;
    align-items: center !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    height: 46px !important;
    padding: 2px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.action-row .quantity #input-quantity {
    width: 44px !important;
    height: 40px !important;
    border: none !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: #1e293b !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    float: left !important;
}

.action-row .quantity a#q_up,
.action-row .quantity a#q_down {
    position: static !important;
    width: 34px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #64748b !important;
    background: transparent !important;
    border: none !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    border-radius: 8px !important;
    float: left !important;
}

.action-row .quantity a#q_up:hover,
.action-row .quantity a#q_down:hover {
    background: #f1f5f9 !important;
    color: #1e293b !important;
}

.action-row .quantity a:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.action-row .quantity a i {
    font-size: 11px;
}

/* Add to Cart button */
#button-cart {
    flex: 1;
    min-width: 160px;
    height: 46px;
    background-color: #D6A916 !important;
    border-color: #D6A916 !important;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 0 24px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(214, 169, 22, 0.2) !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#button-cart:hover {
    background-color: #bfa02c !important;
    border-color: #bfa02c !important;
    box-shadow: 0 6px 16px rgba(214, 169, 22, 0.3) !important;
    transform: translateY(-1px);
}

/* Wishlist and Compare Circular Icon buttons */
.action-row .btn-action-icon {
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    border: 1px solid #cbd5e1 !important;
    background: #ffffff !important;
    color: #64748b !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02) !important;
    transition: all 0.2s ease !important;
    cursor: pointer;
}

.action-row .btn-action-icon:hover {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
    background-color: rgba(239, 68, 68, 0.02) !important;
    transform: translateY(-1px);
}

.action-row .btn-action-icon.btn-compare:hover {
    border-color: #3b82f6 !important;
    color: #3b82f6 !important;
    background-color: rgba(59, 130, 246, 0.02) !important;
}

/* Guarantee Image badge */
.guarantee-badge {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
}

.guarantee-badge img {
    max-height: 50px;
    object-fit: contain;
}

/* --------------------------------------------------------------------------
   Redesigned Tabs Control (Description, Specs, Reviews)
   -------------------------------------------------------------------------- */
.nav-tabs {
    background: #f1f5f9;
    padding: 6px;
    border-radius: 12px;
    border: none;
    display: inline-flex;
    margin-bottom: 25px;
    margin-top: 35px;
    width: auto;
}

.nav-tabs > li {
    margin: 0;
}

.nav-tabs > li > a {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #64748b;
    border: none !important;
    border-radius: 8px !important;
    padding: 10px 20px;
    margin: 0;
    transition: all 0.2s ease;
    background: transparent !important;
}

.nav-tabs > li > a:hover {
    color: #1e293b;
}

.nav-tabs > li.active > a, 
.nav-tabs > li.active > a:hover, 
.nav-tabs > li.active > a:focus {
    background-color: #ffffff !important;
    color: #1e293b !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

/* Tab Content area styling */
.tab-content {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 30px;
    background: #ffffff;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.tab-pane {
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
}

.tab-pane#tab-description h3, 
.tab-pane#tab-description h2, 
.tab-pane#tab-description h4 {
    font-family: 'Outfit', sans-serif;
    color: #1e293b;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Specification table modern style */
#tab-specification .table {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    border-collapse: separate;
    overflow: hidden;
    margin: 0;
}

#tab-specification .table th, 
#tab-specification .table td {
    padding: 14px 18px;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    font-size: 13.5px;
}

#tab-specification .table tr:last-child td {
    border-bottom: none;
}

#tab-specification .table thead td {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
}

/* Reviews tab styles */
#review {
    margin-bottom: 25px;
}

#review .table {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8fafc;
}

#review .table td {
    border: none;
    padding: 8px 10px;
}

#review .table td strong {
    color: #1e293b;
    font-size: 14px;
}

#review .table td.text-right {
    color: #94a3b8;
    font-size: 12px;
}

/* --------------------------------------------------------------------------
   Related Products Grid
   -------------------------------------------------------------------------- */
#product-product h3:first-of-type {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
}

.product-thumb {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-thumb:hover {
    border-color: #D6A916;
    box-shadow: 0 10px 25px rgba(214, 169, 22, 0.06), 0 4px 12px rgba(0, 0, 0, 0.02);
    transform: translateY(-2px);
}

.product-thumb .image {
    padding: 10px;
    background: #fff;
    overflow: hidden;
}

.product-thumb .image img {
    border-radius: 10px;
    transition: transform 0.5s ease;
    margin: 0 auto;
}

.product-thumb:hover .image img {
    transform: scale(1.03);
}

.product-thumb .caption {
    padding: 16px 20px;
    border-top: 1px solid #f1f5f9;
}

.product-thumb h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.product-thumb h4 a {
    color: #1e293b;
    text-decoration: none;
}

.product-thumb h4 a:hover {
    color: #D6A916;
}

.product-thumb .price {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #D6A916;
    margin-bottom: 12px;
}

.product-thumb .price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
    margin-left: 6px;
}

.product-thumb .price-new {
    color: #D6A916;
}

.product-thumb .price-tax {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
}

.product-thumb .button-group {
    display: flex;
    border-top: 1px solid #f1f5f9;
    margin-top: 15px;
    padding-top: 10px;
}

.product-thumb .button-group button {
    flex: 1;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 5px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.product-thumb .button-group button:hover {
    color: #D6A916;
    background-color: rgba(214, 169, 22, 0.02);
}

.product-thumb .button-group button i {
    font-size: 13px;
}

/* --------------------------------------------------------------------------
   Responsive Styling Overrides
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .nav-tabs {
        display: flex;
        width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    #product h1 {
        font-size: 22px;
    }
    
    .price-container-card {
        padding: 16px 20px;
    }
    
    .price-new-val {
        font-size: 28px;
    }
    
    .tab-content {
        padding: 20px;
    }
}

/* --------------------------------------------------------------------------
   Dynamic Highlight Badges Grid
   -------------------------------------------------------------------------- */
.product-highlight-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 24px;
    padding: 0;
    list-style: none;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(214, 169, 22, 0.05);
    color: #D6A916;
    border: 1px solid rgba(214, 169, 22, 0.16);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.01);
}

.highlight-badge i {
    margin-right: 6px;
    font-size: 13px;
}

.highlight-badge:hover {
    transform: translateY(-1px);
    background: rgba(214, 169, 22, 0.1);
    border-color: #D6A916;
    box-shadow: 0 4px 10px rgba(214, 169, 22, 0.08);
}

/* --------------------------------------------------------------------------
   Dynamic Video Embed Section
   -------------------------------------------------------------------------- */
.product-video-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.product-video-card h3 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    padding-bottom: 0 !important;
    border: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.product-video-card h3 i {
    color: #ef4444; /* YouTube Red color */
}

/* Video Responsive aspect ratios (16:9) */
.video-embed-container {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* ==========================================================================
   AI Product Assistant Card Styling
   ========================================================================== */
.ai-assistant-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%) !important;
    border: 1px solid #bbf7d0 !important;
    border-radius: 16px !important;
    padding: 20px !important;
    margin: 25px 0 !important;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.04) !important;
}

.ai-assistant-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    color: #166534 !important;
    margin-bottom: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.ai-assistant-header i {
    font-size: 18px !important;
}

.ai-checklist {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.ai-checklist li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: 13.5px !important;
    color: #14532d !important;
    line-height: 1.5 !important;
}

.ai-checklist li strong {
    color: #14532d !important;
}

.ai-checklist .check-icon {
    color: #16a34a !important;
    font-size: 15px !important;
    margin-top: 2px !important;
}

.ai-checklist .info-icon {
    color: #ea580c !important;
    font-size: 15px !important;
    margin-top: 2px !important;
}

/* ==========================================================================
   Compatible Parts Grid
   ========================================================================== */
.compatible-parts-section {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 24px !important;
    margin: 35px 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

.compatible-parts-section h3 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.compatible-parts-section h3 i {
    color: #2563eb !important;
}

.compatible-parts-section .section-desc {
    font-size: 13.5px !important;
    color: #64748b !important;
    margin-bottom: 20px !important;
}

.parts-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
    gap: 16px !important;
}

.part-card {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 16px !important;
    text-align: center !important;
    transition: all 0.25s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.part-card:hover {
    transform: translateY(-4px) !important;
    border-color: #2563eb !important;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.05) !important;
    background: #ffffff !important;
}

.part-icon {
    width: 44px !important;
    height: 44px !important;
    background: #eff6ff !important;
    color: #2563eb !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    margin-bottom: 12px !important;
    transition: all 0.2s ease !important;
}

.part-card:hover .part-icon {
    background: #2563eb !important;
    color: #ffffff !important;
}

.part-card h4 {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin: 0 0 4px 0 !important;
}

.part-count {
    font-size: 11.5px !important;
    color: #94a3b8 !important;
    margin-bottom: 12px !important;
}

.part-link {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #2563eb !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin-top: auto !important;
}

.part-link i {
    transition: transform 0.2s ease !important;
}

.part-card:hover .part-link i {
    transform: translateX(3px) !important;
}

/* ==========================================================================
   Frequently Bought Together Bundle Styling
   ========================================================================== */
.frequently-bought-section {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 24px !important;
    margin: 35px 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

.frequently-bought-section h3 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.frequently-bought-section h3 i {
    color: #f59e0b !important;
}

.bundle-container {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.bundle-items {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
    flex: 1 !important;
}

.bundle-item {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 250px !important;
    max-width: 100% !important;
    transition: all 0.2s ease !important;
}

.bundle-item:hover {
    border-color: #cbd5e1 !important;
    background: #ffffff !important;
}

.bundle-item.main-item {
    border-color: rgba(37, 99, 235, 0.2) !important;
    background: rgba(37, 99, 235, 0.01) !important;
}

.bundle-img {
    width: 60px !important;
    height: 60px !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    padding: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #f1f5f9 !important;
}

.bundle-img img {
    max-height: 52px !important;
    width: auto !important;
    object-fit: contain !important;
}

.bundle-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    overflow: hidden !important;
}

.bundle-tag {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #2563eb !important;
    text-transform: uppercase !important;
}

.bundle-details h4 {
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin: 0 !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
}

.bundle-details h4 a {
    color: #1e293b !important;
    text-decoration: none !important;
}

.bundle-details h4 a:hover {
    color: #2563eb !important;
}

.bundle-price {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.bundle-plus {
    font-size: 16px !important;
    color: #94a3b8 !important;
    font-weight: bold !important;
}

.bundle-equals {
    font-size: 20px !important;
    color: #94a3b8 !important;
    font-weight: bold !important;
}

.bundle-summary {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    background: #f8fafc !important;
    border: 1px dashed #cbd5e1 !important;
    border-radius: 14px !important;
    padding: 16px 20px !important;
    width: 200px !important;
    align-items: center !important;
    text-align: center !important;
}

.summary-label {
    font-size: 12px !important;
    color: #64748b !important;
    font-weight: 600 !important;
}

.summary-price {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #2563eb !important;
}

.btn-bundle-add {
    width: 100% !important;
    background: #2563eb !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 12.5px !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    border: none !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
}

.btn-bundle-add:hover {
    background: #1d4ed8 !important;
}

/* ==========================================================================
   Floating Comparison Bar Styling
   ========================================================================== */
.floating-compare-bar {
    position: fixed !important;
    bottom: -120px !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-top: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.08) !important;
    z-index: 9999 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 14px 0 !important;
}

.floating-compare-bar.active {
    bottom: 0 !important;
}

.compare-bar-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.compare-bar-info {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.compare-bar-info i {
    font-size: 20px !important;
    color: #2563eb !important;
    background: #eff6ff !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.compare-bar-info h4 {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 !important;
}

.compare-bar-info p {
    font-size: 12px !important;
    color: #64748b !important;
    margin: 0 !important;
}

.compare-bar-items {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.compare-item-placeholder {
    font-size: 13px !important;
    color: #94a3b8 !important;
    font-style: italic !important;
}

.compare-bar-item {
    width: 48px !important;
    height: 48px !important;
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    padding: 2px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

.compare-bar-item img {
    max-height: 42px !important;
    width: auto !important;
    object-fit: contain !important;
}

.compare-bar-item span {
    display: none !important;
}

.compare-bar-actions {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.btn-compare-go {
    background: #2563eb !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 13.5px !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    border: none !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.btn-compare-go:hover {
    background: #1d4ed8 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25) !important;
}

.btn-compare-close {
    background: transparent !important;
    border: none !important;
    color: #94a3b8 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
}

.btn-compare-close:hover {
    color: #ef4444 !important;
}


