﻿.product-detail-v2 {
    background: #fff;
}

.product-detail-v2 .container {
    max-width: 1200px;
}

.pd-main-image {
    padding: 30px;
}

.pd-main-image img {
    width: 100%;
    display: block;
}

.pd-thumbs {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.pd-thumb {
    width: 120px;
    height: 120px;
    background: #f3f3f3;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.pd-thumb img {
    max-width: 85%;
    max-height: 85%;
}

.pd-thumb.active {
    border: 2px solid #b58b3a;
}

.pd-thumb:hover {
    border-color: #111;
}

.pd-thumb.more-view {
    font-size: 14px;
    font-weight: 500;
    color: #777;
}

.pd-info {
    padding-left: 70px;
}

.pd-rating {
    font-size: 14px;
    color: #b58b3a;
    margin-bottom: 12px;
}

.pd-rating span {
    color: #9aa0a6;
    margin-left: 8px;
}

.pd-title {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 22px;
    color: #111;
}

.pd-price-row {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 28px;
}

.pd-price {
    font-size: 24px;
    font-weight: 600;
    color: #111;
}

.pd-old-price {
    text-decoration: line-through;
    font-size: 14px;
    color: #a8b0b8;
}

.pd-save-badge {
    background: #f4eaea;
    color: #c14b4b;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
}

.pd-stock-row {
    margin-bottom: 28px;
}

.pd-stock-top {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: 1px;
    color: #7a7f85;
}

.pd-stock-bar {
    height: 2px;
    background: #e5e7ea;
    margin-top: 6px;
}

.pd-stock-progress {
    height: 100%;
    background: #b58b3a;
}

.pd-short-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 480px;
}

.pd-feature-box {
    display: flex;
    gap: 16px;
    background: #f5f6f8;
    padding: 20px;
    margin-bottom: 15px;
}

.pd-feature-icon {
    color: #b58b3a;
    font-size: 18px;
    margin-top: 4px;
}

.pd-feature-box strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.pd-feature-box p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.pd-option {
    margin-top: 25px;
}

.pd-option label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
    color: #333;
}

.pd-option label span {
    color: #b58b3a;
}

.pd-color-options {
    display: flex;
    gap: 14px;
}

.color {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #d8b07c;
    cursor: pointer;
    transition: 0.25s ease;
}

.color:hover {
    transform: scale(1.1);
    border-color: #111;
}

.color.active {
    border: 2px solid #111;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

/* Size */
.pd-size-options {
    display: flex;
    gap: 12px;
}

.size {
    padding: 10px 22px;
    border: 2px solid transparent; 
    box-sizing: border-box; 
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 52px;
    text-align: center;
}

.size:hover {
    border-color: #111;
}

.size.active {
    border-color: #111;
    background: #f5f5f5; 
}

.pd-cart-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 25px;
}

.pd-qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 130px;
    height: 54px;
    border: 1px solid #ddd;
}

.pd-qty button {
    width: 42px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pd-qty button:hover {
    background: #e9e9e9;
}

.pd-qty input {
    width: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    background: transparent;
}

.pd-add-btn {
    flex: 1;
    height: 54px;
    background: #b58b3a;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    transition: background 0.3s ease;
}

.pd-add-btn:hover {
    background: #9c742f;
}

.pd-buy-btn {
    width: 100%;
    height: 56px;
    border: 2px solid #111;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.pd-buy-btn:hover {
    background: #111;
    color: #fff;
}

.pd-bottom-links {
    display: flex;
    gap: 35px;
    margin-top: 18px;
    font-size: 13px;
}

.pd-bottom-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pd-bottom-links a:hover {
    color: #111;
}

@media (max-width: 992px) {
    .pd-info {
        padding-left: 0;
        margin-top: 50px;
    }
}


.product-detail-v2 .container {
    max-width: 1200px;
}
.pd-qty button

.pd-main-image {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
}

.pd-main-image img {
    width: 100%;
    display: block;
}

.pd-thumbs {
    display: flex;
    gap: 18px;
    margin-top: 30px;
}

.pd-thumb {
    width: 110px;
    height: 110px;
    background: #fff;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.pd-thumb img {
    max-width: 85%;
    max-height: 85%;
}

.pd-thumb.active {
    border: 2px solid #b58b3a;
}

.pd-thumb:hover {
    border-color: #111;
    transform: translateY(-3px);
}

.pd-thumb.more-view {
    font-size: 14px;
    font-weight: 500;
    color: #777;
}

.pd-info {
    padding-left: 70px;
}

.pd-rating {
    font-size: 14px;
    color: #b58b3a;
    margin-bottom: 12px;
}

.pd-rating span {
    color: #9aa0a6;
    margin-left: 8px;
}

.pd-title {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 22px;
    color: #111;
}

.pd-price-row {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 28px;
}

.pd-price {
    font-size: 26px;
    font-weight: 600;
    color: #111;
}

.pd-old-price {
    text-decoration: line-through;
    font-size: 14px;
    color: #a8b0b8;
}

.pd-save-badge {
    background: #f4eaea;
    color: #c14b4b;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.pd-stock-row {
    margin-bottom: 28px;
}

.pd-stock-top {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: 1px;
    color: #7a7f85;
}

.pd-stock-bar {
    height: 6px;
    background: #e5e7ea;
    margin-top: 8px;
    border-radius: 10px;
}

.pd-stock-progress {
    height: 100%;
    background: linear-gradient(90deg, #c6a45c, #b58b3a);
    border-radius: 10px;
}

.pd-short-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 480px;
}

.pd-feature-box {
    display: flex;
    gap: 16px;
    background: #f8f9fb;
    padding: 22px;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: 0.3s ease;
}

.pd-feature-box:hover {
    transform: translateY(-3px);
}

.pd-feature-icon {
    color: #b58b3a;
    font-size: 18px;
    margin-top: 4px;
}

.pd-feature-box strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.pd-feature-box p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.pd-option {
    margin-top: 30px;
}

.pd-option label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
    color: #333;
}

.pd-option label span {
    color: #b58b3a;
}

.pd-color-options {
    display: flex;
    gap: 14px;
}

.color {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #d8b07c;
    cursor: pointer;
    transition: 0.3s ease;
}

.color:hover {
    transform: scale(1.1);
    border-color: #111;
}

.color.active {
    border: 2px solid #111;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.pd-size-options {
    display: flex;
    gap: 12px;
}

.pd-cart-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 25px;
}

.pd-qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 130px;
    height: 56px;
    background: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
}

.pd-qty button {
    width: 45px;
    height: 100%;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s ease;
}

.pd-qty button:hover {
    background: #eaeaea;
}

.pd-qty input {
    width: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    background: transparent;
}

.pd-add-btn {
    flex: 1;
    height: 56px;
    background: linear-gradient(135deg, #c6a45c, #b58b3a);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(181,139,58,0.25);
}

.pd-add-btn span {
    font-weight: 700;
    font-size: 15px;
}

.pd-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(181,139,58,0.35);
    background: linear-gradient(135deg, #d4b469, #a87a2c);
}

.pd-buy-btn {
    width: 100%;
    height: 56px;
    border: 2px solid #111;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.pd-buy-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .pd-info {
        padding-left: 0;
        margin-top: 50px;
    }
}

@media (max-width: 576px) {
    .pd-title {
        font-size: 28px;
    }

    .pd-cart-row {
        flex-direction: column;
        align-items: stretch;
    }

    .pd-add-btn {
        justify-content: center;
    }

    .pd-bottom-actions {
        flex-direction: column;
    }
}
@media (max-width: 576px) {
    .pd-title {
        font-size: 28px;
    }

    .pd-cart-row {
        flex-direction: column;
        align-items: stretch;
    }

    .pd-add-btn {
        justify-content: space-between;
        padding:20px;
    }
}

.pd-buy-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.pd-buy-btn {
    flex: 1;
    height: 52px; 
    display: flex;
    align-items: center; 
    justify-content: center;
    background: #fff;
    border: 1.8px solid #111; 
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pd-buy-btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.pd-buy-btn:active {
    transform: scale(0.98);
}

.pd-icon-square {
    width: 50px;
    height: 50px;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pd-icon-square i {
    font-size: 18px;
    color: #333;
}

.pd-icon-square:hover {
    background: #111;
    border-color: #111;
    transform: translateY(-2px);
}

.pd-icon-square:hover i {
    color: #fff;
}


.pd-tabs-header {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 40px;
}

.pd-tab-btn {
    background: none;
    border: none;
    padding: 18px 0;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #999;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pd-tab-btn.active {
    color: #000;
}

.pd-tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c6a75e; 
}

.pd-tabs-content {
    max-width: 900px;
}

.pd-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.pd-tab-content.active {
    display: block;
}

.pd-rich-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.pd-rich-text h2,
.pd-rich-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pd-review-section {
    padding: 100px 0;
    background: #fafafa;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.review-header h2 {
    font-size: 48px;
    font-weight: 500;
}

.write-review-btn {
    background: #111;
    color: #fff;
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.write-review-btn:hover {
    background: #c6a75e;
}

.review-summary {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.review-score {
    min-width: 250px;
}

.score-number {
    font-size: 72px;
    font-weight: 500;
}

.score-stars {
    color: #c6a75e;
    font-size: 20px;
    letter-spacing: 5px;
    margin: 30px 0;
}

.score-based {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
}

.review-bars {
    flex: 1;
}

.bar-row {
    display: grid;
    grid-template-columns: 2fr 6fr 1fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #444;
}

.bar {
    height: 3px;
    background: #e5e5e5;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: #c6a75e;
}

@media(max-width: 992px) {

    .review-summary {
        flex-direction: column;
        gap: 50px;
    }

    .review-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .review-header h2 {
        font-size: 36px;
    }

    .score-number {
        font-size: 56px;
    }
}

.pd-review-section {
    padding: 20px;
    background: #fff;
}

.customer-photos {
    margin-bottom: 10px;
}

.customer-photos h6 {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 25px;
}

.photo-slider {
    display: flex;
    gap: 25px;
}

.photo-item {
    width: 170px;
    background: #f4f4f4;
    overflow: hidden;
    border: 1px solid #eee;
}

.photo-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.review-toolbar {
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-filters {
    display: flex;
    gap: 15px;
}

.filter-btn {
    padding: 3px;
    font-size: 9px;
    letter-spacing: 1px;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-btn:hover {
    border-color: #000;
}

.filter-btn.active {
    border: 1px solid #000;
    background: #fff;
}

.review-sort {
    font-size: 12px;
    letter-spacing: 1px;
}

.review-sort select {
    border: none;
    background: transparent;
    font-size: 12px;
    outline: none;
    cursor: pointer;
}

.review-list {
    margin-top: 10px;
}

.review-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.review-left {
    font-size: 13px;
}

.review-left .stars {
    color: #c6a75e;
    font-size: 14px;
    margin-bottom: 10px;
}

.review-left h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.verified {
    display: block;
    font-size: 11px;
    color: #2a9d5b;
    margin-bottom: 8px;
}

.review-date {
    font-size: 11px;
    color: #888;
}

.review-right h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.review-right p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    max-width: 850px;
}

.review-helpful {
    margin-top: 15px;
    font-size: 12px;
    color: #777;
    cursor: pointer;
    transition: 0.3s ease;
}

.review-helpful:hover {
    color: #000;
}

.load-more-wrapper {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    padding: 14px 45px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
}

.load-more-btn:hover {
    background: #c6a75e;
    color: #fff;
    border-color: #c6a75e;
}

@media (max-width: 992px) {

    .review-card {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .review-right p {
        max-width: 100%;
    }

    .review-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .photo-slider {
        overflow-x: auto;
    }
}

.review-modal {
    border-radius: 0;
    padding: 10px 20px;
}

.submit-review-btn {
    width: 100%;
    padding: 12px;
    background: #c6a75e;
    border: none;
    color: #fff;
    letter-spacing: 2px;
    font-size: 12px;
    transition: 0.3s;
}

.submit-review-btn:hover {
    background: #b8954d;
}

.rating-wrapper label {
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.star-rating {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.stars-outer {
    position: relative;
    display: inline-block;
    font-family: FontAwesome;
}

.stars-outer::before {
    content: "\f005 \f005 \f005 \f005 \f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ddd;
    font-size: 28px;
}

.stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
}

.stars-inner::before {
    content: "\f005 \f005 \f005 \f005 \f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #c6a75e;
    font-size: 28px;
}

