/* Euroform - Mavi Tema */

.euroform-page {
    background-color: #f0f4f8;
}

/* Header */
.euroform-header {
    background-color: #fff;
    border-bottom: 3px solid #1976d2;
}

.euroform-header .nav-link.active,
.euroform-header .euroform-link.active {
    color: #1976d2;
    font-weight: bold;
}

.euroform-header .euroform-link:hover {
    color: #1976d2;
}

/* Page Header */
.euroform-page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d1117 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 4px solid #1976d2;
}

.euroform-page-header::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1a1a1a;
    margin-top: -4px;
}

.euroform-page-header .page-title {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.euroform-page-header .page-subtitle {
    font-size: 20px;
    color: #1976d2;
}

/* Products */
.euroform-product {
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.euroform-product:hover {
    border-color: #1976d2;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.2);
    transform: translateY(-5px);
}

.euroform-product .product-name {
    color: #1976d2;
}

.euroform-button {
    background-color: #1976d2;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.euroform-button:hover {
    background-color: #1565c0;
    transform: scale(1.02);
}

.euroform-product .product-price {
    color: #1976d2;
    font-size: 22px;
}

/* Footer */
.euroform-footer {
    background-color: #1a1a1a;
    border-top: 3px solid #1976d2;
}

/* Dropdown */
.euroform-menu {
    border-top: 3px solid #1976d2;
}

.euroform-menu .euroform-title {
    color: #1976d2;
}

.euroform-menu .euroform-category-link:hover {
    color: #1976d2 !important;
}

/* Expandable Card for Euroform */
.euroform-product.expanded .product-details {
    border-top-color: #1976d2;
}

.euroform-product .details-content h4 {
    color: #1976d2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .euroform-page-header {
        padding: 30px 0;
        border-bottom: 2px solid #1976d2;
    }
    
    .euroform-page-header::after {
        display: none;
    }
    
    .euroform-page-header .page-title {
        font-size: 24px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .euroform-page-header .page-subtitle {
        font-size: 14px;
        opacity: 0.9;
    }
}

