.menz-downloads {
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
}

.menz-download-zip {
    width: 38px;
    height: 38px;
    border: 2px solid #6f6a64;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f6a64;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.menz-download-zip:hover {
    color: #5f4a3a;
    border-color: #5f4a3a;
    background: #f8f5ef;
    text-decoration: none;
}

.menz-download-zip .et-pb-icon {
    font-family: ETmodules !important;
    font-size: 19px;
    line-height: 1;
}

.menz-download-category {
    padding: 36px 0;
    border-top: 1px solid #ded6cc;
}

.menz-download-category:first-child {
    border-top: none;
}

.menz-download-category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.menz-download-category-header h2 {
    margin: 0;
    color: #6f5643;
    font-size: 37px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.menz-download-category-header p {
    margin: 6px 0 0;
    color: #6f6a64;
    font-size: 15px;
    font-style: italic;
}

.menz-download-header-icon {
    width: 34px;
    height: 34px;
    border: 2px solid #6f6a64;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f6a64;
    font-weight: 700;
    flex-shrink: 0;
}

.menz-download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.menz-download-item {
    min-height: 74px;
    padding: 14px 16px;
    border: 1px solid #b9aea4;
    background: #f8f5ef;
	border-radius: 0 28px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menz-download-item:hover {
    background: #eee7dc;
    border-color: #80634c;
    transform: translateY(-1px);
    text-decoration: none;
}

.menz-download-icon {
    width: 22px;
    height: 22px;
    border: 1.5px solid #6f6a64;
    border-radius: 50%;
    color: #6f6a64;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.menz-download-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menz-download-title {
    color: #5f4a3a;
    font-size: 14px;
	text-transform: uppercase;
    line-height: 1.25;
    font-weight: 700;
}

.menz-download-meta {
    color: #7f7871;
    font-size: 12px;
    line-height: 1.25;
    font-style: italic;
}

.menz-download-icon .et-pb-icon {
    font-family: ETmodules !important;
    font-size: 14px;
    line-height: 1;
}

@media (max-width: 980px) {
    .menz-download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .menz-download-category-header {
        align-items: center;
    }

    .menz-download-category-header h2 {
        font-size: 22px;
    }

    .menz-download-grid {
        grid-template-columns: 1fr;
    }
}