/*
 * Single Product Page Redesign Styles
 * Replicates the look and feel of the modern React component.
 */

/* Main Grid Layout */
.mkdf-product-single-redesigned .mkdf-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 40px;
    margin-bottom: 60px;
}

/* Gallery Column */
.mkdf-product-gallery-column .woocommerce-product-gallery {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Info Column */
.mkdf-product-info-column .summary {
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mkdf-product-info-column .product_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mkdf-product-info-column .woocommerce-product-rating {
    margin-bottom: 15px;
}

.mkdf-product-info-column .price {
    font-size: 2rem;
    font-weight: 700;
    color: #eeb332;
    margin-bottom: 20px;
}

.mkdf-product-info-column .woocommerce-product-details__short-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.mkdf-product-info-column .cart .quantity {
    margin-right: 15px;
}

.mkdf-product-info-column .cart .button {
    font-size: 1rem;
    padding: 15px 30px;
    border-radius: 30px;
    background: #eeb332;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mkdf-product-info-column .cart .button:hover {
    background: #d4a429;
    transform: translateY(-2px);
}

.mkdf-product-info-column .product_meta {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #777;
}

/* Tabs Section */
.mkdf-product-tabs-section .woocommerce-tabs ul.tabs {
    border-bottom: 2px solid #eee;
    padding-left: 0;
}

.mkdf-product-tabs-section .woocommerce-tabs ul.tabs li {
    background: none;
    border: none;
    padding: 0;
    margin-right: 30px;
}

.mkdf-product-tabs-section .woocommerce-tabs ul.tabs li a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #999;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.mkdf-product-tabs-section .woocommerce-tabs ul.tabs li.active a,
.mkdf-product-tabs-section .woocommerce-tabs ul.tabs li a:hover {
    color: #eeb332;
    border-bottom-color: #eeb332;
}

.mkdf-product-tabs-section .woocommerce-tabs .panel {
    padding: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .mkdf-product-single-redesigned .mkdf-product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mkdf-product-info-column .product_title {
        font-size: 2rem;
    }
}
