/* Product Details Page - Tramontina Style */

.product-details-page {
    background-color: #ffffff;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.breadcrumb-nav {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.breadcrumb-nav .breadcrumb {
    margin-bottom: 0;
    background: transparent;
    font-size: 14px;
}

.breadcrumb-nav .breadcrumb-item a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: #000000;
    text-decoration: none;
}

.breadcrumb-nav .breadcrumb-item.active {
    color: #000000;
}

.product-container {
    padding: 40px 0;
    max-width: 1400px;
}

.product-main-row {
    background: transparent;
    padding: 0;
    margin-bottom: 60px;
    box-shadow: none;
}

/* Product Images Section */
.product-images-section {
    padding-right: 40px;
}

.product-image-gallery {
    position: sticky;
    top: 100px;
}

.main-product-image-wrapper {
    background: #ffffff;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-product-image {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s;
}

.main-product-image:hover {
    transform: scale(1.02);
}

.no-image-placeholder {
    color: #999;
    text-align: center;
}

.no-image-placeholder i {
    font-size: 80px;
    margin-bottom: 10px;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 4px;
    cursor: pointer;
    transition: all 0.3s;
    background: #ffffff;
    overflow: hidden;
}

.thumbnail-item:hover {
    border-color: #000000;
}

.thumbnail-item.active {
    border-color: #000000;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

/* Product Info Section */
.product-info-section {
    padding-left: 40px;
}

.product-header {
    margin-bottom: 24px;
    padding-bottom: 0;
    border-bottom: none;
}

.product-title {
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.product-category {
    margin: 0 0 20px 0;
    color: #4a4a4a;
    font-size: 14px;
}

.product-category a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-category a:hover {
    color: #000000;
    text-decoration: none;
}

/* Social Share Buttons */
.social-share-buttons {
    margin-bottom: 24px;
}

/* Price Section - Tramontina Style */
.product-price-section {
    margin-bottom: 24px;
}

.price-with-discount {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.price-single {
    display: flex;
    align-items: baseline;
}

.current-price {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-right: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.compare-price {
    font-size: 24px;
    color: #999999;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 0;
}

.discount-badge {
    display: none;
}

/* Unit Price */
.unit-price {
    font-size: 14px;
    color: #999999;
    margin-top: 4px;
    font-weight: 400;
}

/* Stock Status */
.stock-status {
    margin-bottom: 24px;
}

.stock-badge {
    display: inline-block;
    padding: 0;
    border-radius: 0;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-badge.in-stock {
    background-color: transparent;
    color: #000000;
}

.stock-badge.out-of-stock {
    background-color: transparent;
    color: #999999;
}

.stock-badge i {
    display: none;
}

.product-sku {
    margin-bottom: 24px;
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 400;
}

.product-sku strong {
    font-weight: 400;
    color: #000000;
}

/* Quantity Selector */
.quantity-selector {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-selector label {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0;
    margin-right: 8px;
}

.quantity-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    width: auto;
}

.quantity-btn {
    background: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.quantity-btn:hover {
    background-color: #f5f5f5;
}

.quantity-input {
    border: none;
    border-left: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
    padding: 8px 12px;
    text-align: center;
    width: 60px;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    background: transparent;
}

.quantity-input:focus {
    outline: none;
    box-shadow: none;
}

/* Product Actions */
.product-actions {
    margin-bottom: 40px;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.btn-add-to-cart {
    flex: 1;
    min-width: 200px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    background-color: #000000;
    border: 1px solid #000000;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.btn-add-to-cart:hover {
    background-color: #333333;
    border-color: #333333;
    color: #ffffff;
    transform: none;
    box-shadow: none;
}

.btn-add-to-cart:disabled {
    background-color: #999999;
    border-color: #999999;
    color: #ffffff;
    cursor: not-allowed;
}

.btn-wishlist {
    display: none;
}

/* Product Info Sections with Icons */
.product-info-sections {
    margin-top: 40px;
    border-top: 1px solid #e5e5e5;
    padding-top: 40px;
}

.info-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-section-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.info-section-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 20px;
}

.info-section-title {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.info-section-content {
    margin-left: 40px;
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

.info-section-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-section-content li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.info-section-content li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 400;
}

.info-section-content p {
    margin-bottom: 12px;
}

.info-section-content p:last-child {
    margin-bottom: 0;
}

/* What's Included Section */
.whats-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whats-included-list li {
    padding: 8px 0;
    color: #4a4a4a;
    font-size: 14px;
}

/* Materials Section */
.materials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.materials-list li {
    padding: 8px 0;
    color: #4a4a4a;
    font-size: 14px;
}

/* Dimensions Section */
.dimensions-table {
    width: 100%;
    border-collapse: collapse;
}

.dimensions-table th,
.dimensions-table td {
    padding: 12px 0;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
    color: #4a4a4a;
}

.dimensions-table th {
    font-weight: 400;
    color: #000000;
    width: 30%;
}

.dimensions-table tr:last-child th,
.dimensions-table tr:last-child td {
    border-bottom: none;
}

/* Warranty Section */
.warranty-info {
    padding: 0;
    background: transparent;
    border-left: none;
    border-radius: 0;
}

.warranty-info h4 {
    display: none;
}

.warranty-info p {
    margin: 0;
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.6;
}

/* Care and Usage Section */
.care-usage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.care-usage-list li {
    padding: 8px 0;
    color: #4a4a4a;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.care-usage-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 400;
}

/* Product Tabs - Hide for Tramontina Style */
.product-tabs-section {
    display: none;
}

/* Related Products Section */
.related-products-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e5e5e5;
}

.related-products-section .section-title {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 40px;
    text-align: left;
    padding-bottom: 0;
    letter-spacing: -0.5px;
}

.related-products-section .section-title::after {
    display: none;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.related-product-card {
    background: #ffffff;
    border: none;
    transition: transform 0.2s ease;
}

.related-product-card:hover {
    transform: translateY(-4px);
}

.related-product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}

.related-product-info h4 {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-product-category {
    font-size: 12px;
    color: #999999;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.related-product-price .current-price {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}

.related-product-price .compare-price {
    font-size: 14px;
    color: #999999;
    text-decoration: line-through;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-images-section {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .product-info-section {
        padding-left: 0;
    }

    .product-image-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-container {
        padding: 20px 0;
    }

    .product-title {
        font-size: 24px;
    }

    .current-price,
    .compare-price {
        font-size: 20px;
    }

    .info-section-content {
        margin-left: 0;
    }

    .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 20px;
    }

    .current-price,
    .compare-price {
        font-size: 18px;
    }

    .btn-add-to-cart {
        width: 100%;
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }
}

