/* Product Template Display - Frontend */
.wpit-product-template-display {
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wpit-template-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.wpit-template-content {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

/* Section Titles */
.wpit-section-title {
    background: #3d3d3d;
    color: #ffffff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    margin: 0;
}

.wpit-section-title:not(:first-child) {
    margin-top: 2px;
}

/* Field Rows */
.wpit-field-row {
    display: flex;
    padding: 12px 20px;
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.2s ease;
}

.wpit-field-row:last-child {
    border-bottom: none;
}

.wpit-field-row:hover {
    background-color: #f5f5f5 !important;
}

/* Alternating Row Colors */
.wpit-row-even {
    background-color: #f9f9f9;
}

.wpit-row-odd {
    background-color: #ffffff;
}

/* Field Label and Value */
.wpit-field-label {
    flex: 0 0 40%;
    font-weight: 600;
    color: #333;
    padding-right: 20px;
    word-wrap: break-word;
}

.wpit-field-value {
    flex: 1;
    color: #555;
    word-wrap: break-word;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .wpit-field-row {
        flex-direction: column;
        padding: 15px;
    }
    
    .wpit-field-label {
        flex: 1;
        padding-right: 0;
        margin-bottom: 5px;
        font-size: 14px;
    }
    
    .wpit-field-value {
        font-size: 14px;
        padding-left: 10px;
    }
    
    .wpit-section-title {
        padding: 10px 15px;
        font-size: 15px;
    }
    
    .wpit-template-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .wpit-product-template-display {
        margin: 20px 0;
    }
    
    .wpit-field-row {
        padding: 12px;
    }
    
    .wpit-section-title {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .wpit-template-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

/* Print Styles */
@media print {
    .wpit-product-template-display {
        page-break-inside: avoid;
    }
    
    .wpit-field-row {
        page-break-inside: avoid;
    }
    
    .wpit-section-title {
        page-break-after: avoid;
    }
}