/* ============================================
   RESET & BASE STYLES
   ============================================ */
.single-camera-article {
    background: #0f0f1e;
    color: #e0e0e0;
}

/* ============================================
   HERO SECTION - UNIFIED DARK THEME
   ============================================ */
.camera-hero-compact {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    padding: 80px 0;
    margin: 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.container-single {
    max-width: 1400px; /* Increased from 1200px */
    margin: 0 auto;
    padding: 0 30px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image-wrapper:hover::before {
    opacity: 1;
}

.camera-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    color: #ffffff;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.brand-pill,
.feature-pill {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.brand-pill {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.feature-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.camera-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.camera-tagline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 30px 0;
    font-weight: 400;
}

/* Rating Display */
.hero-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    margin-bottom: 25px;
}

.rating-stars-inline {
    display: flex;
    gap: 4px;
}

.rating-stars-inline .star {
    font-size: 1.4rem;
    transition: transform 0.2s ease;
}

.rating-stars-inline .star.filled {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-stars-inline .star.empty {
    color: rgba(255, 255, 255, 0.15);
}

.rating-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-max {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.rating-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Price Display */
.hero-price {
    margin: 25px 0;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: #4ade80;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

/* CTA Button */
.hero-cta {
    margin-top: 30px;
}

.btn-amazon-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF9900 0%, #FF6B00 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.4);
    border: none;
    cursor: pointer;
}

.btn-amazon-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.6);
    color: white;
    background: linear-gradient(135deg, #FFa500 0%, #FF7B00 100%);
}

.btn-amazon-hero i {
    font-size: 1.4rem;
}

/* ============================================
   MAIN CONTENT - DARK THEME CONTINUATION
   ============================================ */
.camera-main-content {
    background: #0f0f1e;
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 320px 1fr 320px; /* Increased sidebar widths */
    gap: 35px;
}

/* ============================================
   RIGHT SIDEBAR - OTHER TYPES
   ============================================ */
.related-types-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.other-types-card .related-camera-thumb {
    position: relative;
}

.type-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 10px; /* Slightly increased padding */
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1600px) {
    .container-single {
        max-width: 1300px;
    }
    
    .content-grid {
        grid-template-columns: 300px 1fr 300px;
        gap: 30px;
    }
}

@media (max-width: 1400px) {
    .container-single {
        max-width: 1200px;
    }
    
    .content-grid {
        grid-template-columns: 280px 1fr 280px;
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .container-single {
        max-width: 1100px;
    }
    
    .content-grid {
        grid-template-columns: 260px 1fr 260px;
        gap: 20px;
    }
    
    .related-camera-thumb {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .specs-sidebar {
        order: 2;
    }
    
    .content-main {
        order: 1;
    }
    
    .related-types-sidebar {
        order: 3;
    }
    
    .specs-sidebar,
    .related-types-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

/* ============================================
   SIDEBAR - UNIFIED DARK CARDS
   ============================================ */
.specs-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.card-title i {
    color: #667eea;
    font-size: 1.3rem;
}

/* Specs List */
.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.spec-value {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
}

/* Category Tags */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: #e0e0e0;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Purchase Card */
.purchase-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.purchase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.purchase-card .card-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.purchase-content {
    text-align: center;
}

.purchase-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.95;
    color: white;
}

.purchase-content h4 {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    color: white;
}

.purchase-content p {
    font-size: 0.95rem;
    margin: 0 0 25px 0;
    opacity: 0.9;
    color: white;
}

.btn-purchase {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #667eea;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-purchase:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
    color: #667eea;
}

/* ============================================
   MAIN CONTENT SECTIONS
   ============================================ */
.content-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative;
    isolation: isolate;
    contain: layout style paint; /* Contain rendering */
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.section-content p {
    margin-bottom: 20px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; /* Reduced from 20px */
    position: relative;
    z-index: 1;
}

.features-section {
    position: relative;
    z-index: 1;
    isolation: isolate; /* Isolate stacking context */
    contain: layout style; /* Strict containment */
    transform: translateZ(0); /* Force GPU layer */
}

.feature-box {
    padding: 20px; /* Reduced from 30px */
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 12px; /* Reduced from 15px */
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    isolation: isolate;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.feature-box:hover {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px) translateZ(0);
}

.feature-icon {
    width: 45px; /* Reduced from 55px */
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px; /* Reduced from 15px */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px; /* Reduced from 18px */
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); /* Reduced shadow */
}

.feature-icon i {
    font-size: 1.3rem; /* Reduced from 1.6rem */
    color: white;
}

.feature-box h4 {
    font-size: 1rem; /* Reduced from 1.15rem */
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0; /* Reduced from 10px */
}

.feature-box p {
    font-size: 0.9rem; /* Reduced from 0.95rem */
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5; /* Reduced from 1.6 */
}

/* CTA Section */
.cta-section {
    padding: 0;
    background: transparent;
    border: none;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 45px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.cta-text h3 {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    font-weight: 800;
    color: white;
}

.cta-text p {
    font-size: 1.05rem;
    margin: 0;
    opacity: 0.95;
    color: white;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
    color: #667eea;
}

.btn-cta-large i {
    font-size: 1.4rem;
}

/* ============================================
   IMAGE OVERLAY ACTIONS
   ============================================ */
.image-overlay-actions {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-image-wrapper:hover .image-overlay-actions {
    opacity: 1;
    bottom: 40px;
}

.overlay-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(102, 126, 234, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.overlay-action-btn:hover {
    background: rgba(118, 75, 162, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.overlay-action-btn i {
    font-size: 1.1rem;
}

/* ============================================
   HERO ACTION BUTTONS
   ============================================ */
.hero-action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-action-primary,
.btn-action-secondary,
.btn-action-buy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-action-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-action-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
    color: white;
}

.btn-action-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #e0e0e0;
    border: 1px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.btn-action-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-3px);
    color: white;
}

.btn-action-buy {
    background: linear-gradient(135deg, #FF9900 0%, #FF6B00 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 153, 0, 0.4);
}

.btn-action-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 153, 0, 0.6);
    color: white;
}

/* ============================================
   VIEW ALL SPECS BUTTON
   ============================================ */
.btn-view-all-specs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    color: #e0e0e0;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-all-specs:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

/* ============================================
   INTERACTIVE INFO CARDS
   ============================================ */
.interactive-card {
    text-align: center;
    padding: 35px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-card:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-5px) scale(1.02);
}

.interactive-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.interactive-icon i {
    font-size: 2rem;
    color: white;
}

.interactive-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.interactive-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.btn-interactive {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-interactive:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.5);
}

/* ============================================
   EXPLORE MORE SECTION
   ============================================ */
.explore-section {
    margin-top: 30px; /* Reduced from 40px */
    position: relative;
    z-index: 1;
    isolation: isolate; /* Isolate from other sections */
    contain: layout style; /* Strict containment */
    transform: translateZ(0); /* Force GPU layer */
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px; /* Reduced from 25px */
    position: relative;
    z-index: 1;
}

.explore-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px; /* Reduced from 20px */
    padding: 25px; /* Reduced from 35px */
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    isolation: isolate;
    overflow: visible;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Override any inherited tooltip styles */
.explore-card::before,
.explore-card::after,
.explore-card *::before,
.explore-card *::after {
    content: none !important;
    pointer-events: none !important;
}

/* Custom top border for explore card */
.explore-card {
    border-top: 3px solid transparent; /* Reduced from 4px */
}

.explore-card:focus {
    outline: 2px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

.explore-card:hover {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.4);
    border-top-color: #667eea;
    transform: translateY(-3px) translateZ(0);
    z-index: 2;
}

.explore-card:active {
    transform: translateY(-2px) translateZ(0);
}

.explore-icon {
    width: 50px; /* Reduced from 60px */
    height: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-radius: 12px; /* Reduced from 15px */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px; /* Reduced from 20px */
    transition: all 0.3s ease;
}

.explore-card:hover .explore-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.08) rotate(3deg); /* Reduced scale and rotation */
}

.explore-icon i {
    font-size: 1.5rem; /* Reduced from 1.8rem */
    color: #667eea;
    transition: color 0.3s ease;
}

.explore-card:hover .explore-icon i {
    color: white;
}

.explore-card h3 {
    font-size: 1.15rem; /* Reduced from 1.4rem */
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0; /* Reduced margin */
}

.explore-card p {
    font-size: 0.85rem; /* Reduced from 0.95rem */
    color: rgba(255, 255, 255, 0.65); /* Slightly more subtle */
    margin: 0 0 15px 0; /* Reduced from 20px */
    line-height: 1.5; /* Reduced from 1.6 */
}

.explore-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #667eea;
    font-size: 1rem; /* Reduced from 1.2rem */
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto; /* Push to bottom */
}

.explore-card:hover .explore-arrow {
    transform: translateX(8px); /* Reduced from 10px */
    color: #764ba2;
}

/* ============================================
   RELATED CAMERAS CARD
   ============================================ */
.related-cameras-card {
    /* No sticky positioning */
}

.related-cameras-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-camera-item {
    margin: 0;
}

.related-camera-link {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    align-items: center;
}

.related-camera-link:hover {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(5px);
}

.related-camera-thumb {
    width: 80px; /* Increased from 70px */
    height: 80px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.related-camera-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.related-camera-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0; /* Prevents overflow */
}

.related-brand {
    font-size: 0.7rem;
    color: #667eea;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-camera-title {
    font-size: 0.95rem; /* Slightly increased */
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-price {
    font-size: 0.9rem; /* Slightly increased */
    color: #4ade80;
    font-weight: 700;
}

.no-related {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    padding: 20px;
    margin: 0;
}

.btn-view-all-related {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    color: #e0e0e0;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all-related:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Sticky positioning for related cameras */
@media (min-width: 1025px) {
    .related-cameras-card {
        /* Remove sticky behavior - commented out */
        /* position: sticky; */
        /* top: 100px; */
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .related-camera-link {
        padding: 12px;
    }
    
    .related-camera-thumb {
        width: 60px;
        height: 60px;
    }
    
    .related-camera-title {
        font-size: 0.9rem;
    }
}

/* ============================================
   SIMILAR CAMERAS SECTION (YOU MAY ALSO LIKE)
   ============================================ */
.similar-cameras-section {
    background: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 100%);
    padding: 60px 0;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.similar-header {
    text-align: center;
    margin-bottom: 40px;
}

.similar-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.similar-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.similar-cameras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.similar-camera-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.similar-camera-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.similar-card-link {
    text-decoration: none;
    display: block;
}

.similar-card-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.similar-brand-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.similar-card-content {
    padding: 20px;
}

.similar-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.similar-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars-inline {
    display: flex;
    gap: 2px;
}

.stars-inline .star {
    font-size: 0.9rem;
    color: #ffd700;
}

.rating-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.similar-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 15px;
}

.similar-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #667eea;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.similar-camera-card:hover .similar-view-btn {
    gap: 10px;
    color: #764ba2;
}

/* Responsive */
@media (max-width: 1024px) {
    .similar-cameras-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .similar-cameras-section {
        padding: 40px 0;
    }
    
    .similar-title {
        font-size: 1.6rem;
    }
    
    .similar-cameras-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .similar-card-image {
        height: 140px;
    }
    
    .similar-card-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .similar-cameras-grid {
        grid-template-columns: 1fr;
    }
}
