/*
 Theme Name:   LogoTech ITS Child
 Theme URI:    https://www.logotech-its.de
 Description:  Child Theme für Divi mit individuellen Anpassungen
 Author:       Dein Name
 Author URI:   https://www.logotech-its.de
 Template:     Divi
 Version:      2.1.0
*/

/* Hier können eigene Anpassungen hinzugefügt werden */
@import url("../Divi/style.css");
  



/* Tabs */
.zustand-tabs {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
    border-bottom: 4px solid #002a4a;
    gap: 4px;
}

.zustand-tab {
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    background: #eee;
    color: #000;
    border: none;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 4px solid transparent;
}

.zustand-tab.active {
    background-color: #002a4a;
    color: #fff;
    border-bottom: 4px solid #002a4a;
    position: relative;
    z-index: 2;
}

.zustand-tab:hover {
    background-color: #ddd;
}

/* Kategorie-Gruppen */
.main-cat-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #003d73;
}

/* Grid für Unterkategorien */
.subcategory-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

/* Kategorie-Box */
.subcategory-box {
    width: 350px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border: 1px solid #002a4a;
    text-decoration: none;
    color: #002a4a;
    font-weight: bold;
    transition: all 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
    position: relative;
}

.subcategory-box:hover {
    background-color: #007AFF;
    color: #fff;
}

.subcategory-box:hover .subcategory-arrow {
    color: #fff;
}

.subcategory-title {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.subcategory-arrow {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007AFF;
    margin-left: auto;
    transition: color 0.3s;
}

/* Maschinen-Archiv Seite*/

.custom-product-wrapper {
    max-width: 1200px;
    margin: auto;
    font-family: 'Arial', sans-serif;
}

.product-title h1 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #007AFF;
}

.product-specs {
    background-color: #f2f4f6;
    padding: 20px;
    border-radius: 8px;
}

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

.product-specs td {
    padding: 8px;
    border-bottom: 1px solid #ccc;
}

.product-actions {
    margin-top: 20px;
}

.button.print,
.button.contact {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 15px;
    background: #007AFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.phone {
    margin-top: 15px;
    font-size: 18px;
}

.subcategory-box-empty{
    width: 350px;
}


/* HOMEPAGE_NEWENTRY*/
.zoma-neuzugaenge-wrapper {
    background-color: #002b6b;
    padding: 50px 20px;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.zoma-neuzugaenge-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
}

.zoma-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.zoma-card {
    background: #fff;
    color: #002b6b;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.zoma-card:hover {
    transform: translateY(-5px);
}

.zoma-card-badge {
    position: absolute;
    background: #002b6b;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    top: 10px;
    left: 10px;
    z-index: 2;
    border-radius: 3px;
}

.zoma-card-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
}

.zoma-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.zoma-card-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.zoma-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    font-size: 14px;
}

.zoma-card-button {
    background: #ffa500;
    color: #002b6b;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    transition: background 0.3s ease;
}

.zoma-card-button:hover {
    background: #ffb733;
}

.card-info {
    background: #007AFF !important;
}