/* ============================================
   GAZU Product Enhancement - CSS Styles
   Soubor: product-styles.css
   Určení: Stylování vylepšeného popisu produktu
   ============================================ */

/* ============================================
   1. PRODUCT FEATURES - Ikony a vlastnosti
   ============================================ */

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #333;
    flex: 1;
    min-width: 200px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive - na mobilech se ikony zobrazí pod sebou */
@media (max-width: 768px) {
    .product-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-item {
        min-width: 100%;
    }
}

/* ============================================
   2. PRODUCT SPECS - Tabulka technických parametrů
   ============================================ */

.product-specs {
    margin: 30px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
}

.product-specs h3 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
}

.product-specs table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs td {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    vertical-align: top;
}

.product-specs tr:last-child td {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #555;
    padding-right: 20px;
    min-width: 120px;
    display: inline-block;
}

.product-specs td:last-child {
    color: #333;
    font-weight: 500;
}

/* ============================================
   3. OUR TIP BOX - Doporučení a související produkty
   ============================================ */

.our-tip-box {
    background: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
    border-left: 5px solid #007bff;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.our-tip-box h4 {
    color: #007bff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.our-tip-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.our-tip-box a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.our-tip-box a:hover {
    color: #003d82;
    text-decoration: underline;
}

/* ============================================
   4. PRODUCT DESCRIPTION - Vylepšený popis
   ============================================ */

.product-description {
    margin: 30px 0;
    line-height: 1.8;
    color: #333;
}

.product-description h2 {
    color: #222;
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0 15px 0;
}

.product-description h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 12px 0;
}

.product-description p {
    font-size: 15px;
    margin: 12px 0;
    text-align: justify;
}

.product-description ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.product-description li {
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.product-description li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 16px;
}

.product-description strong {
    color: #e74c3c;
    font-weight: 600;
}

/* ============================================
   5. HIGHLIGHT BOX - Zvýraznění důležitých informací
   ============================================ */

.highlight-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    font-size: 14px;
    color: #856404;
}

.highlight-box strong {
    color: #856404;
}

/* ============================================
   6. COLLECTION SECTION - Kolekce a doporučení
   ============================================ */

.collection-section {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.collection-section h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.collection-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.collection-section a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.collection-section a:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* ============================================
   7. RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .product-specs {
        padding: 15px;
    }
    
    .product-specs h3 {
        font-size: 18px;
    }
    
    .spec-label {
        display: block;
        margin-bottom: 5px;
        min-width: auto;
    }
    
    .our-tip-box {
        padding: 15px;
        border-left-width: 4px;
    }
    
    .our-tip-box h4 {
        font-size: 16px;
    }
    
    .product-description h2 {
        font-size: 20px;
    }
    
    .product-description h3 {
        font-size: 16px;
    }
}

/* ============================================
   8. PRINT STYLES
   ============================================ */

@media print {
    .product-features,
    .our-tip-box {
        page-break-inside: avoid;
    }
    
    .product-specs {
        border: 1px solid #000;
    }
}
