/* ===== Single Product Section ===== */

.hb-single-product {
    font-family: 'Poppins', sans-serif;
}


/* Product Image */

.hb-product-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hb-product-image img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}


/* Product Details */

.hb-product-title {
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hb-product-tagline {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hb-product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.hb-product-features {
    list-style: disc;
    margin-left: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.hb-product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}


/* Buttons */

.hb-btn-primary,
.hb-btn-secondary {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hb-btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    margin-right: 0.5rem;
}

.hb-btn-primary:hover {
    background-color: var(--color-accent);
}

.hb-btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.hb-btn-secondary:hover {
    background-color: var(--color-accent);
}


/* Related Products Cards */

.hb-product-card-glass {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hb-product-card-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.hb-product-card-glass img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hb-product-card-glass:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}


/* Glass Wave Hover Effect */

.hb-related-products {
    margin-bottom: 50px;
}

.hb-product-card-glass::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.15) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    transition: left 0.6s ease;
}

.hb-product-card-glass:hover::before {
    left: 100%;
}


/* Card Content */

.hb-product-content-glass {
    position: relative;
    z-index: 2;
}

.hb-product-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.hb-product-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hb-product-card-btn {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    background-color: var(--color-secondary);
    color: var(--color-white);
    transition: all 0.3s ease;
}

.hb-product-card-btn:hover {
    background-color: var(--color-accent);
}


/* Responsive */

@media (max-width: 992px) {
    .hb-single-product .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hb-related-products .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .hb-related-products .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* Product Gallery */

.hb-product-gallery .hb-main-img img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hb-product-gallery .hb-main-img img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.hb-thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border 0.3s ease;
    border: 1px solid var(--color-primary);
}

.hb-thumbnails img:hover {
    border: 2px solid var(--color-primary);
}


/* Feature List with Icons */

.hb-product-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.hb-product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.hb-product-features li i {
    color: var(--color-primary);
    font-size: 1.2rem;
}


/* FAQ */


/* FAQ Section Title */

.hb-faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
    position: relative;
}

.hb-faq-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
}


/* Accordion Item */

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}


/* Accordion Header / Button */

.accordion-button {
    background: var(--bg-main);
    font-weight: 600;
    color: var(--text-main);
    border: none;
    padding: 1rem 1.25rem;
    border-radius: 15px;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

.accordion-button::after {
    font-size: 1.2rem;
    color: var(--color-primary);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
}


/* Accordion Body */

.accordion-body {
    background-color: var(--bg-main);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.5s ease;
}


/* Fade-In Animation */

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Adjustments */

@media (max-width: 768px) {
    .hb-faq-title {
        font-size: 1.6rem;
    }
    .accordion-button {
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
    }
    .accordion-body {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .hb-single-product .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}