/* ============================================
   SINGLE PRODUCT PAGE STYLES
   ============================================ */


.wahb-single-product {
    padding: 40px 0;
}

.wahb-breadcrumbs {
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--hacker-gray);
}

.wahb-breadcrumbs a {
    color: var(--hacker-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.wahb-breadcrumbs a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.wahb-separator {
    margin: 0 10px;
    color: var(--hacker-gray);
}

.wahb-current {
    color: var(--hacker-white);
}

.wahb-product-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
    background: var(--hacker-terminal);
    border: 2px solid var(--hacker-green);
    border-radius: 10px;
    padding: 30px;
}

.wahb-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wahb-featured-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid var(--hacker-green);
}

.wahb-no-image {
    width: 300px;
    height: 300px;
    background: var(--hacker-bg);
    border: 2px dashed var(--hacker-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wahb-no-image .wahb-icon {
    font-size: 80px;
}

.wahb-product-title {
    font-size: 32px;
    color: var(--hacker-green);
    margin: 0 0 20px 0;
    font-family: 'Courier New', monospace;
}

.wahb-product-category {
    margin-bottom: 20px;
}

.wahb-category-badge {
    display: inline-block;
    background: var(--hacker-green);
    color: var(--hacker-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.wahb-rating-box {
    background: var(--hacker-bg);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--hacker-green);
    margin-bottom: 20px;
}

.wahb-rating-label {
    display: block;
    color: var(--hacker-gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.wahb-rating-value {
    display: block;
    font-size: 36px;
    color: var(--hacker-green);
    font-weight: bold;
    font-family: 'Courier New', monospace;
    margin-bottom: 10px;
}

.wahb-rating-bar {
    width: 100%;
    height: 10px;
    background: rgba(0, 255, 65, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.wahb-rating-fill {
    height: 100%;
    background: var(--hacker-green);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
    transition: width 0.5s ease;
}

.wahb-price-box {
    background: var(--hacker-bg);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--hacker-green);
    margin-bottom: 20px;
}

.wahb-price-label {
    display: block;
    color: var(--hacker-gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.wahb-price-value {
    display: block;
    font-size: 28px;
    color: var(--hacker-green);
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.wahb-cta-box {
    text-align: center;
    padding: 20px 0;
}

.wahb-btn-large {
    font-size: 18px;
    padding: 15px 40px;
    display: inline-block;
}

.wahb-disclaimer {
    margin-top: 10px;
    font-size: 12px;
    color: var(--hacker-gray);
    font-style: italic;
}

.wahb-content-section {
    margin-bottom: 50px;
}

.wahb-section-title {
    font-size: 28px;
    color: var(--hacker-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--hacker-green);
    font-family: 'Courier New', monospace;
}

.wahb-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--hacker-white);
}

.wahb-content-text p {
    margin-bottom: 20px;
}

.wahb-pros-cons-section {
    margin-bottom: 50px;
}

.wahb-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.wahb-pros-box,
.wahb-cons-box {
    background: var(--hacker-terminal);
    border-radius: 10px;
    padding: 30px;
}

.wahb-pros-box {
    border: 2px solid var(--hacker-green);
}

.wahb-cons-box {
    border: 2px solid #ff4444;
}

.wahb-pros-title,
.wahb-cons-title {
    font-size: 24px;
    margin: 0 0 20px 0;
    font-family: 'Courier New', monospace;
}

.wahb-pros-title {
    color: var(--hacker-green);
}

.wahb-cons-title {
    color: #ff4444;
}

.wahb-pros-list,
.wahb-cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wahb-pros-list li,
.wahb-cons-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.wahb-pros-list li:last-child,
.wahb-cons-list li:last-child {
    border-bottom: none;
}

.wahb-pros-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--hacker-green);
    font-weight: bold;
    font-size: 18px;
}

.wahb-cons-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
    font-size: 18px;
}

.wahb-bottom-cta {
    background: linear-gradient(135deg, var(--hacker-terminal) 0%, var(--hacker-bg) 100%);
    border: 2px solid var(--hacker-green);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.wahb-bottom-cta h3 {
    font-size: 28px;
    color: var(--hacker-green);
    margin: 0 0 15px 0;
}

.wahb-bottom-cta p {
    font-size: 16px;
    color: var(--hacker-gray);
    margin-bottom: 25px;
}

.wahb-related-products {
    margin-top: 50px;
}

.wahb-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.wahb-product-card {
    background: var(--hacker-terminal);
    border: 2px solid var(--hacker-green);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wahb-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3);
}

.wahb-card-image {
    height: 200px;
    background: var(--hacker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wahb-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wahb-no-image-small {
    font-size: 60px;
}

.wahb-card-content {
    padding: 20px;
}

.wahb-card-title {
    font-size: 18px;
    margin: 0 0 10px 0;
}

.wahb-card-title a {
    color: var(--hacker-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.wahb-card-title a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.wahb-card-rating {
    color: var(--hacker-green);
    font-size: 14px;
    margin-bottom: 10px;
}

.wahb-card-price {
    color: var(--hacker-white);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.wahb-card-btn {
    display: inline-block;
    background: var(--hacker-green);
    color: var(--hacker-bg);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.wahb-card-btn:hover {
    background: var(--hacker-white);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

@media (max-width: 992px) {
    .wahb-product-header {
        grid-template-columns: 1fr;
    }

    .wahb-pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .wahb-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wahb-product-title {
        font-size: 24px;
    }

    .wahb-section-title {
        font-size: 22px;
    }

    .wahb-products-grid {
        grid-template-columns: 1fr;
    }

    .wahb-rating-value {
        font-size: 28px;
    }

    .wahb-price-value {
        font-size: 22px;
    }
}
