/* Product Details Page Styles */
.pd-wrap {
    padding: 40px 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    padding: 10px 0;
}

.breadcrumb-nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: green;
}

.breadcrumb-nav span {
    color: #333;
    font-weight: 500;
}

.user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    min-width: 80px;
    background-size: 100%;
}

.carousel-testimonial .item {
    padding: 30px 10px;
}

.quote {
    position: absolute;
    top: -23px;
    color: #2e9da1;
    font-size: 27px;
}

.name {
    margin-bottom: 0;
    line-height: 14px;
    font-size: 17px;
    font-weight: 500;
}

.position {
    color: #adadad;
    font-size: 14px;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    outline: none;
    height: 25px;
}

    .owl-nav button svg {
        width: 25px;
        height: 25px;
    }

    .owl-nav button.owl-prev {
        left: 25px;
    }

    .owl-nav button.owl-next {
        right: 25px;
    }

    .owl-nav button span {
        font-size: 45px;
    }

.product-thumb .item img {
    height: 100px;
}

.product-name {
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 4px;
}

.product-price-discount {
    font-size: 22px;
    font-weight: 400;
    padding: 10px 0;
    clear: both;
}

    .product-price-discount span.line-through {
        text-decoration: line-through;
        margin-left: 10px;
        font-size: 14px;
        vertical-align: middle;
        color: #a5a5a5;
    }

.display-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.product-info {
    width: 100%;
}

.reviews-counter {
    font-size: 13px;
}

    .reviews-counter span {
        vertical-align: -2px;
    }

.rate {
    float: left;
    padding: 0 10px 0 0;
}

    .rate:not(:checked) > input {
        position: absolute;
        top: -9999px;
    }

    .rate:not(:checked) > label {
        float: right;
        width: 15px;
        overflow: hidden;
        white-space: nowrap;
        cursor: pointer;
        font-size: 21px;
        color: #ccc;
        margin-bottom: 0;
        line-height: 21px;
    }

        .rate:not(:checked) > label:before {
            content: '\2605';
        }

    .rate > input:checked ~ label {
        color: #ffc700;
    }

    .rate:not(:checked) > label:hover,
    .rate:not(:checked) > label:hover ~ label {
        color: #deb217;
    }

    .rate > input:checked + label:hover,
    .rate > input:checked + label:hover ~ label,
    .rate > input:checked ~ label:hover,
    .rate > input:checked ~ label:hover ~ label,
    .rate > label:hover ~ input:checked ~ label {
        color: #c59b08;
    }

/* Stock Status */
.stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: #e8f5e9;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #2e7d32;
    font-weight: 600;
}

.stock-status i {
    font-size: 18px;
}

/* Product Description */
.product-description {
    margin-bottom: 25px;
}

.product-description h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2B2D42;
}

.description-content {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.description-content p {
    margin-bottom: 10px;
}

/* Product Actions */
.product-actions {
    margin-top: 30px;
}

.quantity-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-section label {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.quantity-controls {
    display: flex;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.qtyminus,
.qtyplus {
    width: 40px;
    height: 40px;
    background: green;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.qtyminus:hover,
.qtyplus:hover {
    background: #006400;
}

.qty {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    background: white;
}

/* Action Buttons */
.btn-order-whatsapp,
.btn-call-order {
    display: block;
    width: 100%;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.btn-order-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-order-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-call-order {
    background: white;
    color: green;
    border: 2px solid green;
}

.btn-call-order:hover {
    background: green;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.3);
}

.btn-order-whatsapp i,
.btn-call-order i {
    margin-right: 8px;
    font-size: 18px;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.badge-item {
    text-align: center;
    padding: 15px 10px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s;
}

.badge-item:hover {
    background: #e8f5e9;
    transform: translateY(-2px);
}

.badge-item i {
    display: block;
    font-size: 24px;
    color: green;
    margin-bottom: 8px;
}

.badge-item span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.product-info-tabs {
    margin-top: 25px;
}

    .product-info-tabs .nav-tabs {
        border-bottom: 2px solid #d8d8d8;
    }

        .product-info-tabs .nav-tabs .nav-item {
            margin-bottom: 0;
        }

        .product-info-tabs .nav-tabs .nav-link {
            border: none;
            border-bottom: 2px solid transparent;
            color: #323232;
        }

        .product-info-tabs .nav-tabs .nav-item .nav-link:hover {
            border: none;
        }

        .product-info-tabs .nav-tabs .nav-item.show .nav-link,
        .product-info-tabs .nav-tabs .nav-link.active,
        .product-info-tabs .nav-tabs .nav-link.active:hover {
            border: none;
            border-bottom: 2px solid #d8d8d8;
            font-weight: bold;
        }

    .product-info-tabs .tab-content .tab-pane {
        /*padding: 30px 20px;*/
        font-size: 15px;
        line-height: 24px;
        color: #7a7a7a;
    }

.review-form .form-group {
    clear: both;
}

.mb-20 {
    margin-bottom: 20px;
}

.review-form .rate {
    float: none;
    display: inline-block;
}

.review-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: #000;
}

.review-form .form-control {
    font-size: 14px;
}

.review-form input.form-control {
    height: 40px;
}

.review-form textarea.form-control {
    resize: none;
}

.review-form .round-black-btn {
    text-transform: uppercase;
    cursor: pointer;
}

/* Owl Carousel Navigation */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 128, 0, 0.8) !important;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s;
}

.owl-nav button:hover {
    background: green !important;
}

.owl-nav button.owl-prev {
    left: 10px;
}

.owl-nav button.owl-next {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-name {
        font-size: 22px;
    }
    
    .current-price {
        font-size: 26px;
    }
    
    .product-dtl {
        padding: 20px;
    }
    
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .badge-item {
        padding: 10px 5px;
    }
    
    .badge-item i {
        font-size: 20px;
    }
    
    .badge-item span {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .pd-wrap {
        padding: 20px 0;
    }
    
    .product-gallery-wrapper {
        padding: 15px;
    }
    
    .product-dtl {
        margin-top: 20px;
    }
    
    .price-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
}

/* Product Gallery */
.product-gallery-wrapper {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.product-slider .item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.product-slider .item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-slider .item:hover img {
    transform: scale(1.05);
}

.product-thumb {
    margin-top: 15px;
}

.product-thumb .item {
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    margin: 0 5px;
}

.product-thumb .item:hover {
    border-color: green;
}

.product-thumb .item.active {
    border-color: green;
    box-shadow: 0 0 0 2px rgba(0, 128, 0, 0.2);
}

.product-thumb .item img {
    height: 100px;
    width: 100%;
    object-fit: cover;
}

/* Product Details */
.product-dtl {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.product-name {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #2B2D42;
}

/* Price Section */
.product-price-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: green;
}

.original-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.discount-badge {
    background: #ff4444;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Loyalty Info */
.loyalty-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.loyalty-info i {
    color: green;
    font-size: 18px;
}

.loyalty-info strong {
    color: green;
}

/* Stock Status */
.stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: #e8f5e9;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #2e7d32;
    font-weight: 600;
}

.stock-status i {
    font-size: 18px;
}

/* Product Description */
.product-description {
    margin-bottom: 25px;
}

.product-description h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2B2D42;
}

.description-content {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.description-content p {
    margin-bottom: 10px;
}

/* Product Actions */
.product-actions {
    margin-top: 30px;
}

.quantity-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-section label {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.quantity-controls {
    display: flex;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.qtyminus,
.qtyplus {
    width: 40px;
    height: 40px;
    background: green;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.qtyminus:hover,
.qtyplus:hover {
    background: #006400;
}

.qty {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    background: white;
}

/* Action Buttons */
.btn-order-whatsapp,
.btn-call-order {
    display: block;
    width: 100%;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.btn-order-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-order-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-call-order {
    background: white;
    color: green;
    border: 2px solid green;
}

.btn-call-order:hover {
    background: green;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.3);
}

.btn-order-whatsapp i,
.btn-call-order i {
    margin-right: 8px;
    font-size: 18px;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.badge-item {
    text-align: center;
    padding: 15px 10px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s;
}

.badge-item:hover {
    background: #e8f5e9;
    transform: translateY(-2px);
}

.badge-item i {
    display: block;
    font-size: 24px;
    color: green;
    margin-bottom: 8px;
}

.badge-item span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

/* Owl Carousel Navigation */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 128, 0, 0.8) !important;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s;
}

.owl-nav button:hover {
    background: green !important;
}

.owl-nav button.owl-prev {
    left: 10px;
}

.owl-nav button.owl-next {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-name {
        font-size: 22px;
    }
    
    .current-price {
        font-size: 26px;
    }
    
    .product-dtl {
        padding: 20px;
    }
    
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .badge-item {
        padding: 10px 5px;
    }
    
    .badge-item i {
        font-size: 20px;
    }
    
    .badge-item span {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .pd-wrap {
        padding: 20px 0;
    }
    
    .product-gallery-wrapper {
        padding: 15px;
    }
    
    .product-dtl {
        margin-top: 20px;
    }
    
    .price-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
}


/* Total Price Section */
.total-price-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    border: 2px solid #00C851;
}

.total-price-section label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.total-price-display {
    font-size: 32px;
    font-weight: 700;
    color: #00C851;
    margin: 5px 0;
}

.total-points-display {
    font-size: 14px;
    color: #6c757d;
    margin: 5px 0;
}

.total-points-display i {
    color: #00C851;
    margin-right: 5px;
}

.total-points-display strong {
    color: #2c3e50;
}

/* Button disabled state */
.btn-order-whatsapp:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-order-whatsapp:disabled:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
