.product-page {
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 50px 35px;
}

/* Product Title */
.product-name {
    position: absolute;
    top: 50px;
    left: 35px;
    font-size: 16px;
    font-weight: 600;
}

/* Main Product Image */
.product-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-width: 241px;
    width: 100%;
    height: auto;
    display: block;
}

/* Right Icons */
.product-actions {
    position: absolute;
    top: 85px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-actions i {
    font-size: 42px;
    color: #999;
}

/* Color Section */
.color-section {
    position: absolute;
    left: 35px;
    bottom: 40px;
    width: calc(100% - 70px);
}

.color-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.color-header span {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}

.color-header i {
    font-size: 14px;
    color: #000;
}

.color-options {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
}

/* Each color card wrapper */
.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 110px;
    cursor: pointer;
}

/* Image card box */
.color-item .card-box {
    width: 110px;
    height: 138px;
    background: #FFF9F9;
    border: 0.5px solid #9C9C9C;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.color-item .card-box img {
    width: 95px;
    height: 100px;
    object-fit: contain;
    display: block;
}

/* Active state — gold border */
.color-item.active .card-box {
    /* border: 1.5px solid #C5902C; */
    box-shadow: 0px 4px 8px rgba(197, 144, 44, 0.3);
}

/* Hover state */
.color-item:hover .card-box {
    border: 1px solid #C5902C;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.18);
}

/* Color label */
.color-item span {
    display: block;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}

/* Active label — gold */
.color-item.active span {
    color: #C5902C;
}


.product-size-card {
    width: 100%;
    max-width: 1282px;
    min-height: 211px;
    background: #FEF9F3;
    border-radius: 7px;
    padding: 39px 31px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}

.product-title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000;
}

.price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.current-price {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #000;
}

.old-price {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #474747;
    text-decoration: line-through;
}

.size-label {
    margin-top: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    color: #000;
    letter-spacing: 0.5px;
}

.size-options {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.size-btn {
    width: 66px;
    height: 35px;
    border: 1px solid #000;
    border-radius: 3px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #494949;
    cursor: pointer;
    transition: all .3s ease;
}

.size-btn.active {
    background: #000;
    color: #fff;
}

.size-btn:hover {
    background: #000;
    color: #fff;
}

.details-accordion {
    box-sizing: border-box;
    width: 100%;
    max-width: 1282px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 26px;
    border-radius: 4px;
}

.details-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #585858;
}

.details-toggle {
    background: transparent;
    border: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
}

.ratings-section {
    width: 100%;
    max-width: 1282px;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
}

.ratings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.ratings-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.rate-btn {
    width: 137px;
    height: 40px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    color: #C5902C;
    cursor: pointer;
}

.ratings-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.review-summary {
    width: 180px;
}

.review-summary h4 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 600;
    color: #6B6B6B;
}

.review-summary p {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    color: #6B6B6B;
}

.divider {
    width: 1px;
    height: 90px;
    background: rgba(107, 107, 107, .4);
}

.rating-bars {
    width: 360px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.rating-row span {
    font-size: 14px;
    color: #000;
    min-width: 28px;
}

.count {
    font-size: 16px !important;
    color: #474747 !important;
    min-width: 35px;
}

.progress-1 {
    width: 259px;
    height: 6px;
    background: #B9B9B9;
    border-radius: 20px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: #018B00;
    border-radius: 20px;
}

.fill-5 {
    width: 100%;
}

.fill-4 {
    width: 60%;
}

.fill-3 {
    width: 48%;
}

.fill-2 {
    width: 37%;
}

.fill-1 {
    width: 27%;
}

/* Responsive */
@media(max-width:768px) {

    .ratings-content {
        flex-direction: column;
        gap: 20px;
    }

    .divider {
        display: none;
    }

    .rating-bars {
        width: 100%;
    }

    .progress-1 {
        flex: 1;
    }

    .ratings-header {
        align-items: flex-start;
        gap: 15px;
    }

    .rate-btn {
        font-size: 13px;
    }
}

.reviews-section {
    width: 100%;

    font-family: 'Inter', sans-serif;
}

.reviews-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.reviews-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
}

.review-card {
    width: 513px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.profile-icon {
    font-size: 48px;
    color: #DBDBDB;
    line-height: 1;
}

.review-user h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #474646;
}

.review-user span {
    font-size: 11px;
    color: #474747;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.stars {
    color: #018B00;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-date {
    font-size: 14px;
    color: #474747;
}

.review-text {
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin: 0 0 12px;
}

.review-helpful {
    font-size: 12px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-all-reviews {
    text-align: right;
    margin-top: 15px;
}

.view-all-reviews a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.view-all-reviews a:hover {
    color: #C5902C;
}

@media(max-width:768px) {

    .reviews-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .review-card {
        width: 100%;
    }

    .review-rating {
        flex-wrap: wrap;
        gap: 10px;
    }

    .view-all-reviews {
        text-align: left;
    }
}

.might-like {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 19px;
    color: #C5902C;
    margin-bottom: 30px;
}



.products-section {
    max-width: 1280px;
    margin: 50px auto;
    padding: 0 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 236px;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 12px 12px 16px;
}

.product-content h3 {
    font-size: 18px;
    font-weight: 400;
    color: #080808;
    margin-bottom: 10px;
    line-height: 22px;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sale-price {
    font-size: 16px;
    font-weight: 600;
    color: #C5902C;
}

.old-price {
    font-size: 14px;
    font-weight: 600;
    color: #171717;
    text-decoration: line-through;
}

.btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.see-more-btn {
    width: 82px;
    height: 28px;
    border: 1px solid #000;
    background: #fff;
    font-size: 10px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.see-more-btn:hover {
    background: #000;
    color: #fff;
}

/* Tablet */
@media(max-width:991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* .product-size-card {
        margin-top: 110px;
    } */
}

/* Mobile */
@media(max-width:576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.star-select {
    font-size: 20px !important;
}

.products-section {
    max-width: 1200px;

}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card image — scoped to grid cards only, avoids conflict with hero .product-image div */
.card-img {
    width: 100%;
    height: 236px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .card-img {
    transform: scale(1.03);
}

.products-grid .product-content {
    padding: 12px;
}

.products-grid .product-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #080808;
    font-weight: 400;
    margin-bottom: 8px;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.new-price {
    color: #C5902C;
    font-size: 16px;
    font-weight: 600;
}

.old-price {
    color: #171717;
    font-size: 14px;
    font-weight: 600;
    text-decoration: line-through;
}

.see-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.see-more-btn {
    width: 117px;
    height: 32px;
    border: 1px solid #000;
    background: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #000;
    cursor: pointer;
}

.see-more-btn:hover {
    background: #000;
    color: #fff;
}

@media(max-width:992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    border-radius: 4px !important;
}

.product-content {
    border-radius: 0px 0px 4px 4px;
}

/* Color Options Mobile Responsiveness: 4 colors in one row */
@media (max-width: 768px) {
    .color-options {
        gap: 10px;
        justify-content: flex-start;
    }

    .color-item {
        width: 72px;
    }

    .color-item .card-box {
        width: 72px;
        height: 90px;
        border-radius: 4px;
    }

    .color-item .card-box img {
        width: 58px;
        height: 64px;
    }

    .color-item span {
        font-size: 11px;
        margin-top: 4px;
    }
}

@media (max-width: 360px) {
    .color-options {
        gap: 6px;
    }

    .color-item {
        width: 64px;
    }

    .color-item .card-box {
        width: 64px;
        height: 80px;
    }

    .color-item .card-box img {
        width: 50px;
        height: 56px;
    }
}

/* === EXTRACTED INLINE STYLES === */


/* === EXTRACTED INLINE STYLES === */
/* ========== PRODUCT TOP SECTION (image + colors) ========== */
.product-page {
    position: relative;
    height: 600px !important;
    padding: 30px 20px !important;
}

.product-name {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-actions {
    position: absolute;
    top: 85px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}

.product-actions img {
    width: 24px;
    height: 24px;
}

/* ========== PRODUCT IMAGE GALLERY ========== */
.product-image-wrapper {
    position: absolute !important;
    top: 50% !important;
    left: 55% !important;
    transform: translate(-50%, -50%) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto !important;
    max-width: 500px;
}

.product-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.product-image-container .main-image {
    max-width: 440px !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Gallery Navigation Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-arrow:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-arrow.prev {
    left: -20px;
}

.gallery-arrow.next {
    right: -20px;
}

.gallery-arrow.hidden {
    display: none;
}

/* Image counter / indicator */
.image-counter {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: #888;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 12px;
    border-radius: 12px;
    border: 1px solid #eee;
}

/* Thumbnail navigation */
.thumbnail-strip {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 45px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.thumbnail-item {
    width: 50px;
    height: 50px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item.active {
    border-color: #C5902C;
}

.thumbnail-item:hover {
    border-color: #C5902C;
}

/* ========== COLOR SECTION ========== */
.color-section {
    position: absolute !important;
    left: 30px !important;
    top: 90px !important;
    width: 110px !important;
    bottom: auto !important;
    z-index: 5;
}

.color-header {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.color-header span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #111111;
}

.color-header i {
    display: none !important;
}

.color-options {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
    cursor: pointer;
}

.color-item .card-box {
    width: 86px !important;
    height: 86px !important;
    background: #ffffff !important;
    border: 1px solid #e2e2e2 !important;
    border-radius: 4px !important;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.04) !important;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.2s ease;
}

.color-item .card-box img {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain !important;
}

.color-item span {
    display: block;
    margin-top: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 11px !important;
    font-weight: 500;
    color: #666666 !important;
    text-align: center;
}

.color-item.active .card-box {
    border: 1.5px solid #C5902C !important;
    box-shadow: 0px 4px 8px rgba(197, 144, 44, 0.15) !important;
}

.color-item.active span {
    color: #C5902C !important;
    font-weight: 600 !important;
}

.color-section i {
    justify-content: center;
    display: flex;
}

.mob-v {
    display: none;
}

.color-arr-desk {
    position: absolute;
    left: 40%;
    transform: translateX(-50%);
    bottom: -25px;
    font-size: 18px;
    cursor: pointer;
    display: block;
}

.color-arr-tab {
    display: none;
}

@media (max-width: 1024px) {
    .color-arr-desk {
        display: none;
    }

    .color-arr-tab {
        display: block;
    }

    .gallery-arrow.prev {
        left: -10px;
    }

    .gallery-arrow.next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .product-page {
        height: auto !important;
        min-height: 500px;
    }

    .product-image-wrapper {
        position: static !important;
        width: 100%;
        margin: 0;
        padding: 0 15px;
        text-align: center;
        transform: none !important;
        top: auto !important;
        left: auto !important;
    }

    .product-image-container .main-image {
        max-width: 300px !important;
    }

    .gallery-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .gallery-arrow.prev {
        left: 0px;
    }

    .gallery-arrow.next {
        right: 0px;
    }

    .thumbnail-item {
        width: 40px;
        height: 40px;
    }

    .product-name {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        margin-top: 15px;
        margin-bottom: 25px;
        padding-right: 50px;
        font-size: 14px;
    }

    .product-actions {
        right: 15px;
        top: 45px;
        gap: 12px;
    }

    .color-section {
        position: absolute !important;
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        top: auto !important;
        width: calc(100% - 24px) !important;
        border-radius: 10px;
        padding: 10px 12px 8px !important;
        background: #fff;
    }

    .color-header {
        margin-bottom: 8px !important;
        justify-content: space-between !important;
    }

    .color-header i {
        display: inline !important;
        font-size: 12px;
        color: #888;
    }

    .color-options {
        flex-direction: row !important;
        gap: 10px !important;
        justify-content: flex-start !important;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .color-item {
        flex-direction: column !important;
        width: auto !important;
        flex-shrink: 0;
    }

    .color-item .card-box {
        width: 58px !important;
        height: 58px !important;
    }

    .color-item .card-box img {
        width: 44px !important;
        height: 44px !important;
    }

    .color-item span {
        font-size: 10px !important;
    }

    .color-arr-desk,
    .color-arr-tab {
        display: none !important;
    }

    .mob-v {
        display: block;
    }

    .mob-top {
        margin-top: 25px;
    }

    .image-counter {
        bottom: -25px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .product-image-container .main-image {
        max-width: 220px !important;
    }

    .gallery-arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .gallery-arrow.prev {
        left: -5px;
    }

    .gallery-arrow.next {
        right: -5px;
    }

    .thumbnail-item {
        width: 35px;
        height: 35px;
    }
}

@media (max-width:991px) and (min-width:768px) {
    .product-image-wrapper {
        left: 50% !important;
    }

    .product-image-container .main-image {
        max-width: 350px !important;
    }
}

/* ========== RATINGS ========== */
.rating-range-list {
    margin-top: 15px;
}

.rating-range-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    gap: 10px;
}

.rating-range-item span:first-child {
    font-weight: 500;
}

.rating-range-item span:last-child {
    color: #666;
}

.rating-summary {
    display: flex;
    flex-direction: column;
    gap: 0px;
    font-family: Arial, sans-serif;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-summary .stars {
    color: #c5902c;
    font-size: 24px;
    letter-spacing: 2px;
}

.rating-summary .label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.divider {
    height: 150px;
}

/* ========== PRICE / SIZE CARD ========== */
.product-size-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.product-card-left {
    flex: 1;
}

.price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.size-btn {
    width: 55px;
    height: 40px;
    border: 1px solid #bdbdbd;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
}

.size-btn.active {
    border-color: #C5902C;
    background: #C5902C;
    color: #fff;
}

.size-btn.out-of-stock {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

.product-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 35px;
}

.feature-box {
    border: 1px solid #d9d0c0;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 45px;
    min-height: 70px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.feature-item span {
    font-size: 12px;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

.whatsapp-order {
    color: #c5902c;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.add-cart-btn {
    width: 100px;
    height: 35px;
    border: 1px solid #c5902c;
    background: #c5902c;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: .3s;
    border-radius: 8px;
}

.add-cart-btn:hover {
    background: #a87a24;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.old-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.product-title {
    font-size: 26px;
    font-weight: 600;
    padding-bottom: 9px;
}

.size-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ========== DETAILS SECTION ========== */
.details-section {
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.details-accordion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.details-title {
    font-size: 16px;
    font-weight: 600;
}

.details-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* ========== RATINGS SECTION ========== */
.ratings-section {
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.ratings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ratings-content {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.rating-bars {
    flex: 1;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.progress-1 {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: #C5902C;
    border-radius: 4px;
}

.fill-5 {
    width: 80%;
}

.fill-4 {
    width: 60%;
}

.fill-3 {
    width: 40%;
}

.fill-2 {
    width: 20%;
}

.fill-1 {
    width: 10%;
}


.count {
    font-size: 13px;
    color: #666;
    min-width: 30px;
}

/* ========== REVIEWS SECTION ========== */
.reviews-section {
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.reviews-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-content: start;
    justify-items: start;
}

.review-card {
    background: #FCF9F5;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.profile-icon {
    font-size: 32px;
    color: #ccc;
}

.review-user h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.review-user span {
    font-size: 12px;
    color: #888;
}

.review-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-rating .stars {
    color: #C5902C;
    font-size: 16px;
    letter-spacing: 1px;
}

.review-date {
    font-size: 12px;
    color: #999;
}

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.review-helpful img {
    width: 18px;
    height: 18px;
}

.view-all-reviews {
    text-align: center;
    margin-top: 20px;
}

.view-all-reviews a {
    color: #C5902C;
    font-weight: 600;
    text-decoration: none;
}

.view-all-reviews a:hover {
    text-decoration: underline;
}

/* ========== REVIEW SLIDER ========== */
.review-slider-container {
    display: none;
    position: relative;
    width: 100%;
    margin-top: 30px;
}

.review-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0 60px;
}

.review-slider::-webkit-scrollbar {
    display: none;
}

.review-slider .reviews-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    width: max-content !important;
}

.review-slider .review-card {
    width: 513px !important;
    max-width: 85vw !important;
    background: #FCF9F5 !important;
    border: 1px solid #eee !important;
    padding: 20px !important;
    border-radius: 10px !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    cursor: pointer;
    z-index: 100;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* ========== REVIEW POPUP ========== */
.review-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.review-popup-box {
    position: relative;
    width: 700px;
    height: 367px;
    background: #FCF9F5;
    box-shadow: 0px 4px 26.8px rgba(0, 0, 0, 0.25);
    border-radius: 11px;
    padding: 0;
    box-sizing: border-box;
}

.review-popup-title {
    position: absolute;
    width: 100%;
    text-align: center;
    margin: 0;
    top: 22px;
    left: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.review-popup-content {
    position: absolute;
    width: 560px;
    height: 255px;
    left: 70px;
    top: 74px;
}

.review-popup-text {
    position: absolute;
    width: 277px;
    height: 24px;
    left: 0;
    top: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    text-align: left;
}

.review-rating-section {
    position: absolute;
    display: flex;
    align-items: center;
    left: 0;
    top: 34px;
    gap: 6px;
}

.review-star {
    font-size: 34px;
    color: #959595;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.review-star.active {
    color: #C5902C;
}

.review-rating-count {
    margin-left: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
}

.review-comment-box {
    box-sizing: border-box;
    position: absolute;
    width: 560px;
    height: 92px;
    left: 0;
    top: 93px;
    border: 1px solid #000000;
    border-radius: 4px;
    background: transparent;
    padding: 16px 20px;
    resize: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #464646;
}

.review-comment-box::placeholder {
    color: #464646;
}

.review-submit-btn {
    position: absolute;
    width: 152px;
    height: 48px;
    left: 204px;
    top: 207px;
    background: #C5902C;
    border-radius: 10px;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.review-submit-btn:hover {
    opacity: 0.9;
}

.review-popup-close {
    position: absolute;
    top: 15px;
    right: 18px;
    border: none;
    background: none;
    font-size: 22px;
    color: #888888;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.review-popup-close:hover {
    color: #000000;
}

/* ========== PRODUCT GALLERY SECTION ========== */
.product-gallery-section {
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card .card-img {
    width: 100%;

    object-fit: cover;
}

.product-content {
    padding: 15px;
}

.product-content .product-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-box .new-price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.price-box .old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
}

.see-more-wrap {
    text-align: center;
    margin-top: 30px;
}

.see-more-btn {
    padding: 10px 40px;
    border: 1px solid #C5902C;
    background: transparent;
    color: #C5902C;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    border-radius: 4px;
}

.see-more-btn:hover {
    background: #C5902C;
    color: #fff;
}

/* ========== CART POPUP (STREMLINED IN LAYOUT.BLADE.PHP) ========== */
@media (max-width: 576px) {
    .cart-panel {
        width: 320px !important;
        max-width: 88vw !important;
    }
}

.product-size-card {
    flex-direction: column;
    gap: 25px;
}

.product-card-right {
    width: 100%;
    align-items: flex-start;
}

.feature-box {
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.add-cart-btn {
    width: 100%;
}

.review-popup-box {
    width: 95%;
    height: auto;
    min-height: 350px;
    padding: 20px;
}

.review-popup-content {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    margin-top: 50px;
}

.review-popup-text {
    position: relative;
    width: 100%;
}

.review-rating-section {
    position: relative;
    top: 0;
    margin-top: 10px;
    flex-wrap: wrap;
}

.review-comment-box {
    position: relative;
    width: 100%;
    height: 80px;
    top: 0;
    margin-top: 15px;
}

.review-submit-btn {
    position: relative;
    left: 0;
    top: 0;
    margin-top: 15px;
    width: 100%;
}
}

@media (max-width: 767px) {
    .product-size-card {
        padding: 20px;
        margin-top: 0px;
        flex-direction: column;
        gap: 25px;
    }

    .product-title {
        font-size: 22px;
    }

    .current-price {
        font-size: 24px;
    }

    .old-price {
        font-size: 18px;
    }

    .feature-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .whatsapp-order {
        font-size: 16px;
    }

    .add-cart-btn {
        width: 100%;
        height: 50px;
        font-size: 16px;
    }

    .size-btn {
        width: 48px;
        height: 38px;
    }

    .ratings-content {
        flex-direction: column;
        gap: 20px;
    }

    .divider {
        height: 1px;
        width: 100%;
        background: #eee;
    }

    .reviews-wrapper {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:991px) and (min-width:768px) {
    .product-size-card {
        flex-direction: column;
        gap: 25px;
    }

    .product-card-right {
        width: 100%;
        align-items: flex-start;
    }

    .feature-box {
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
    }

    .add-cart-btn {
        width: 100%;
    }
}

/* Custom uniform sizing overrides for all image cards/boxes */
.color-item .card-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.product-image-container {
    height: 480px !important;
}

.product-image-container .main-image {
    max-width: 440px !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

@media (max-width: 991px) {
    .product-image-container {
        height: 400px !important;
    }

    .product-image-container .main-image {
        max-width: 350px !important;
    }
}

@media (max-width: 768px) {
    .product-image-container {
        height: 350px !important;
    }

    .product-image-container .main-image {
        max-width: 300px !important;
    }
}

@media (max-width: 480px) {
    .product-image-container {
        height: 260px !important;
    }

    .product-image-container .main-image {
        max-width: 220px !important;
    }
}