/* Product Details Page Styling */
.shop-details {
    padding: 40px 0;
    background: #ffffff;
}

/* Breadcrumb */
.product__details__breadcrumb {
    padding: 12px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.product__details__breadcrumb a {
    color: #666;
    font-size: 14px;
    position: relative;
    margin-right: 25px;
}

.product__details__breadcrumb a:after {
    content: '>';
    position: absolute;
    right: -15px;
    top: 0;
}

/* Product Images */
.product__details__pic {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.product__details__pic__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.product__details__pic__item img {
    max-height: 90%;
    width: auto;
    object-fit: contain;
}

/* Thumbnails */
.product__thumb__pics {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.product__thumb__pics .nav-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product__thumb__pics .nav-link.active {
    border-color: #000;
}

/* Product Details Content */
.product__details__text {
    padding-left: 40px;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Rating Section */
.rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 25px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.rating i {
    color: #ffd700;
    font-size: 18px;
}

.rating span {
    margin-left: 15px;
    color: #666;
    font-size: 14px;
}

/* Price Display */
.price-box {
    margin-bottom: 30px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-price h3 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.old-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

/* Description */
.product-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

/* Options Section */
.product__details__option {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.product__details__option__size,
.product__details__option__color {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Add to Cart Section */
.product__details__cart__option {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.pro-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 5px 15px;
}

.pro-qty input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 16px;
    color: #111;
}

.primary-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.primary-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Additional Options */
.product__details__btns__option {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.product__details__btns__option a {
    color: #111;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.product__details__btns__option a:hover {
    color: #666;
}

/* Product Info */
.product__details__last__option {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.product__details__last__option h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #111;
}

.product-meta {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.product-meta li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #666;
}

.product-meta li span:first-child {
    width: 100px;
    color: #111;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .product__details__text {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .product__details__pic__item {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .product-title {
        font-size: 24px;
    }
    
    .product-price h3 {
        font-size: 26px;
    }
    
    .product__details__btns__option {
        flex-direction: column;
        gap: 15px;
    }
}