.teddmeg-phone-btn-wrap {
    display: inline-block;
}

.teddmeg-phone-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #F96506;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 50px;
    line-height: 1.3;
    transition: background-color 0.2s ease;
}

.teddmeg-phone-btn:hover {
    background-color: #d44d20;
    color: #ffffff;
    text-decoration: none;
}

.teddmeg-btn-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.teddmeg-btn-phone {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

/**
 * Accordion Template Widget
 */
.teddmeg-accordion {
    width: 100%;
}

.teddmeg-acc-item {
    border-bottom: 1px solid #e0e0e0;
}

.teddmeg-acc-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.teddmeg-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
    user-select: none;
}

.teddmeg-acc-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    color: #F96505;
    letter-spacing: 0;
}

.teddmeg-acc-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #F96505;
    transition: transform 0.3s ease;
}

.teddmeg-acc-icon .icon-chevron {
    width: 100%;
    height: 100%;
}

.teddmeg-acc-item.is-open .teddmeg-acc-icon {
    transform: rotate(180deg);
}

.teddmeg-acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.teddmeg-acc-item.is-open .teddmeg-acc-body {
    grid-template-rows: 1fr;
}

.teddmeg-acc-body-inner {
    overflow: hidden;
}

.teddmeg-acc-body-inner>.elementor {
    padding-bottom: 20px;
}

/**
 * Location Info Widget
 */
.teddmeg-location-wrap {
    width: 100%;
    background-color: #e8f4fb;
    padding: 30px;
    box-sizing: border-box;
}

.teddmeg-location-inner {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.teddmeg-loc-info {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.teddmeg-loc-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.teddmeg-loc-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #F96505;
    margin-top: 2px;
}

.teddmeg-loc-icon img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
}

.teddmeg-loc-content {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

.teddmeg-loc-label {
    font-size: 17px;
    line-height: 26px;
    font-weight: 700;
    color: #F96505;
}

.teddmeg-loc-value {
    color: #333333;
    font-size: 18px;
    font-family: 'Avenir Next', sans-serif;
    line-height: 26px;
}

.teddmeg-loc-link {
    color: #333;
    text-decoration: underline;
}

.teddmeg-loc-link:hover {
    color: #F96505;
}

.teddmeg-loc-address>.teddmeg-loc-content>span {
    color: #333;
    font-size: 18px;
    line-height: 26px;
}

.teddmeg-loc-map-wrap {
    flex: 1;
    min-height: 300px;
}

.teddmeg-loc-map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: #ccc;
}

/**
 * Breadcrumb Widget
 */
.teddmeg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.teddmeg-bc-home-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.teddmeg-bc-home-icon {
    width: 16px;
    height: 19px;
    object-fit: contain;
    display: block;
}

.teddmeg-bc-sep {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.teddmeg-bc-current {
    font-size: 14px;
    font-weight: 700;
    color: #F96505;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .teddmeg-location-inner {
        flex-direction: column;
    }

    .teddmeg-loc-info {
        flex: none;
    }
}