body {
    font-family: 'Poppins', sans-serif;
    color: var(--iron-ink);
    background: #f9fafb;
    line-height: 1.6;
}

/* #timer-parent {
    transform: scale(0.8);
} */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #6b7280;
}

.breadcrumb a {
    color: var(--blue-ember);
    text-decoration: none;
}

.share-btn {
    background: var(--frostveil);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--flow-shift);
}

.share-btn:hover {
    background: #e5e7eb;
}

/* Product Section */
.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2.5rem 0;
}

@media (max-width: 900px) {
    .product-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Image Slider */
.image-slider {
    position: relative;
    border-radius: var(--aura-radius);
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    padding: 20px;
    max-height: fit-content;
}

.slider-main {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}


.slider-main img {
    width: 100%;
    object-fit: cover;
    display: none;
}

.slider-main img.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.slider-nav {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    overflow-x: auto;
    /* padding-bottom: 0.5rem; */
    border-radius: 8px;
    max-height: fit-content;
}

.slider-nav-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--flow-shift);
    flex-shrink: 0;
}

.slider-nav-item:hover,
.slider-nav-item.active {
    opacity: 1;
    border: 2px solid var(--blue-ember);
}

.slider-nav-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #FFF;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--soft-shadow);
    transition: var(--flow-shift);
    z-index: 10;
    font-size: 17px;
}

.slider-btn:hover {
    background: var(--white);
}

.slider-btn.prev {
    left: 2px;
}

.slider-btn.next {
    right: 2px;
}

/* Product Info */
.product-info {
    padding: 1rem 0;
}

.product-badges {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-primary {
    background: var(--blue-ember);
    color: white;
}

.badge-danger {
    background: #ef4444;
    color: white;
}

.badge-success {
    background: #059669;
    color: white;
}

.badge-warning {
    background: #f59e0b;
    color: white;
}

.product-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.product-rating a {
    display: flex;
}

.stars {
    color: #f59e0b;
    margin-right: 6px;
}

.rating-count {
    color: #6b7280;
    font-size: 0.9rem;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.original-price {
    text-decoration: line-through;
    color: #6b7280;
    font-size: 1.2rem;
}

.current-price {
    font-weight: 700;
    font-size: 2rem;
    color: var(--deep-sapphire);
}

.discount-badge {
    background-color: #ef4444;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-weight: 600;
}

.fa-share-nodes {
    display: none;
}

.delivery-info {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.delivery-info i {
    color: var(--blue-ember);
    font-size: 1.2rem;
}

.delivery-text {
    font-size: 0.95rem;
}

.delivery-text strong {
    color: var(--blue-ember);
}

#coupon-minutes,
#coupon-seconds {
    color: #ef4444;
}

.countdown {
    font-weight: 600;
    color: var(--blue-ember);
}

.viewer-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ef4444;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.buy-now-btn {
    background-color: var(--blue-ember);
    color: white;
    border: none;
    padding: 1rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--flow-shift);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.buy-now-btn:hover {
    background-color: var(--deep-sapphire);
}

.wishlist-btn {
    background-color: var(--frostveil);
    color: var(--iron-ink);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--flow-shift);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-btn:hover {
    background-color: #e5e7eb;
    color: #ef4444;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 600px) {

    .product-features-grid {
        grid-template-columns: 1fr;
    }

    .image-slider {
        padding: 10px;
    }

    .slider-main {
        width: 100%;
    }

    .slider-nav::-webkit-scrollbar {
        display: none;
    }

    .product-title {
        font-size: 1.3rem;
    }


}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--frostveil);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-ember);
}

.feature-text {
    font-size: 0.9rem;
}

.pincode-checker {
    padding: 15px;
    background-color: #f0f9ff;
    border-radius: var(--aura-radius);
    /* border: 1px solid var(--deep-sapphire); */
    display: flex;
    justify-content: space-evenly;
}

.pincode-checker input {
    padding: 8px 15px;
    font-size: 16px;
    border: none;
    outline: none;
    border-radius: 5px;
    color: var(--blue-ember);
    letter-spacing: 1px;
    font-weight: bold;
    border: 1px solid transparent;


    &:focus {
        border: 1px solid var(--deep-sapphire);
    }
}

.pincode-checker button {
    font-size: 1rem;
    padding: 5px 25px;
    background-color: var(--blue-ember);
    border: none;
    overflow: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;


    &:active {
        background-color: var(--deep-sapphire);
    }
}

/* Product Details Sections */
.product-details {
    margin: 1rem 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--blue-ember);
    border-radius: 2px;
}

.details-content {
    background: var(--white);
    border-radius: var(--aura-radius);
    padding: 2rem;
    box-shadow: var(--soft-shadow);
}

.description-text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.description-text p {
    margin-bottom: 8px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.specs-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table th,
.specs-table td {
    padding: 1rem;
    text-align: left;
}

.specs-table th {
    width: 40%;
    font-weight: 600;
    color: #374151;
}

.desktop-images {
    display: flex;
}

.desktop-images-child {
    width: 15%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: var(--aura-radius);
    margin: 1%;
}

.desktop-images-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

video {
    max-width: 100%;
    max-height: 90vh;
    margin: 1.5rem 0;
    border-radius: 12px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--flow-shift);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 100vw;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.lightbox-content img {
    max-width: 85vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Accordion for mobile */
.accordion {
    display: none;
}

.load-more-container {
    width: 190px;
    height: 45px;
    display: block;
    margin-top: 25px;
    /* background-color: red; */
}

.load-more-btn {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    background-color: var(--blue-ember);
    color: var(--white);
    cursor: pointer;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 17.5px;
    transition: 0.1s;

    &:hover {
        background-color: var(--deep-sapphire);
    }
}

#delivery-checker {
    display: none;
}

#pincode-fail {
    display: none;
}

@media (max-width: 768px) {

    .container {
        margin-top: 25px;
    }

    .details-content {
        display: none;
    }

    .product-section {
        padding: 0;
    }

    .fa-share-nodes {
        font-size: 22px;
        color: var(--blue-ember);
        padding: 15px;
        border-radius: 100%;
        position: absolute;
        right: 30px;
        transform: translate(0px, -113px);
        display: block;
    }

    .accordion {
        display: block;
        margin-bottom: 1rem;
    }

    .accordion-header {
        background: var(--white);
        padding: 1.2rem;
        border-radius: var(--aura-radius);
        box-shadow: var(--soft-shadow);
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .accordion-content {
        padding: 1.5rem;
        background: var(--white);
        border-radius: 15px;
        margin-top: 15px;
        display: none;
    }

    .accordion-content p {
        margin-bottom: 10px;
    }

    .accordion-content h4 {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .mobile-specs {
        max-height: 55vh;
        overflow-y: scroll;
    }

    .mobile-specs .specs-table tr {
        font-size: 14.5px;
    }

    .accordion-content .accordion-images {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .accordion-images-child {
        width: 100%;
        aspect-ratio: 4 / 5;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        border-radius: var(--aura-radius);
        margin: 2%;
    }

    .accordion-images-child img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .small {
        width: 45%;
        aspect-ratio: 1 / 1;
    }

    .accordion.active .accordion-content {
        display: block;
    }


}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hidden-review {
    display: none;
}



#testimonials {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.testimonial-heading {
    letter-spacing: 1px;
    margin: 30px 0px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
}

.testimonial-heading span {
    font-size: 1.3rem;
    color: #252525;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    justify-content: center;
    text-align: center;
}

.testimonial-heading h2 {
    text-transform: uppercase;
    font-family: "Rowdies", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.testimonial-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.testimonial-box {
    width: 380px;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    padding: 20px;
    margin: 15px;
    cursor: pointer;
    border-radius: 5px;
}

.profile-img,
.profile-img2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-size: cover;
}

.profile-img {
    background-image: url('/src/user2.png');
}

.profile-img2 {
    background-image: url('/src/user2.png');
}

.reviewImage {
    width: 100%;
    height: fit-content;
    border-radius: 5px;
    /* display: flex;
    flex-wrap: wrap; */
}

.reviewImage img {
    width: 48%;
    border-radius: 5px;
}

.profile {
    display: flex;
    align-items: center;
}

.name-user {
    display: flex;
    flex-direction: column;
}

.name-user strong {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
    color: #3d3d3d;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.name-user span,
time {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
    color: #979797;
    font-size: 0.8rem;
}

.name-user span .bi-patch-check-fill {
    font-size: 13px;
    color: #34adf0;
}

.reviews {
    color: #f9d71c;
    font-size: 18px;
}

.box-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.client-comment p {
    font-size: 0.93rem;
    color: #4b4b4b;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
    margin-top: 12px;
}

.testimonial-box:hover {
    transform: translateY(-10px);
    transition: all ease 0.3s;
}

@media(max-width:1060px) {
    .testimonial-box {
        width: 45%;
        padding: 10px;
    }
}

@media(max-width:790px) {
    .testimonial-box {
        width: 100%;
    }

    .testimonial-heading h1 {
        font-size: 1.4rem;
    }
}

@media(max-width:340px) {
    .box-top {
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    .reviews {
        margin-top: 10px;
    }
}