

.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%;
    max-width:1206px;
    margin:40px auto;
    font-family:'Inter',sans-serif;
}

.reviews-title{
    font-size:16px;
    font-weight:600;
    color:#000;
    margin-bottom:20px;
}

.reviews-wrapper{
    display:flex;
    justify-content:space-between;
    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;
    margin:40px auto;
}

.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;
    }
}

