.theme-business-profile {
    margin: 0;
    padding: 28px 24px 26px;
    background: color-mix(in srgb, currentColor 3%, transparent);
    border-top: 1px solid color-mix(in srgb, currentColor 12%, transparent);
    color: inherit
}

.theme-business-profile__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px
}

.theme-business-profile__eyebrow {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .58
}

.theme-business-profile h2 {
    margin: 0;
    font: inherit;
    font-size: 23px;
    font-weight: 750;
    letter-spacing: -.025em
}

.theme-opening-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 250px;
    padding: 8px 11px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25
}

.theme-opening-status>span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 18%, transparent)
}

.theme-opening-status.is-open {
    color: #16803b
}

.theme-opening-status.is-closed {
    color: #9b3a32
}

.theme-business-profile__content {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(180px, .65fr);
    gap: 14px
}

.theme-hours,
.theme-phone-link,
.theme-social-links {
    border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
    border-radius: 14px;
    background: color-mix(in srgb, currentColor 4%, transparent)
}

.theme-hours summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 0 15px;
    cursor: pointer;
    list-style: none;
    font-size: 12px;
    font-weight: 700
}

.theme-hours summary::-webkit-details-marker {
    display: none
}

.theme-hours summary>span:first-child {
    display: flex;
    align-items: center;
    gap: 9px
}

.theme-hours__chevron {
    font-size: 18px;
    transition: transform 180ms cubic-bezier(.23, 1, .32, 1)
}

.theme-hours[open] .theme-hours__chevron {
    transform: rotate(180deg)
}

.theme-hours dl {
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 0 14px 13px
}

.theme-hours dl>div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 7px 3px;
    border-top: 1px solid color-mix(in srgb, currentColor 8%, transparent);
    font-size: 11px
}

.theme-hours dl>div.is-today {
    font-weight: 750
}

.theme-hours dt,
.theme-hours dd {
    margin: 0
}

.theme-contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.theme-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 9px 13px;
    color: inherit;
    text-decoration: none;
    transition: transform 140ms cubic-bezier(.23, 1, .32, 1), border-color 140ms
}

.theme-phone-link:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, currentColor 26%, transparent)
}

.theme-phone-link span {
    display: flex;
    min-width: 0;
    flex-direction: column
}

.theme-phone-link small {
    font-size: 10px;
    opacity: .58
}

.theme-phone-link strong {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.theme-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 9px
}

.theme-social-links a {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    transition: transform 140ms cubic-bezier(.23, 1, .32, 1), background-color 140ms
}

.theme-social-links a:hover,
.theme-social-links a:focus-visible {
    background: color-mix(in srgb, currentColor 9%, transparent);
    transform: translateY(-1px)
}

.theme-social-links a:active,
.theme-phone-link:active,
.theme-scroll-top:active {
    transform: scale(.97)
}

.theme-social-links a:focus-visible,
.theme-phone-link:focus-visible,
.theme-scroll-top:focus-visible,
.theme-hours summary:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px
}

.theme-scroll-top {
    position: fixed;
    right: max(16px, calc((100vw - 720px)/2 + 16px));
    bottom: 88px;
    z-index: 45;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid color-mix(in srgb, currentColor 14%, transparent);
    border-radius: 50%;
    background: rgba(24, 24, 24, .9);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms cubic-bezier(.23, 1, .32, 1), transform 180ms cubic-bezier(.23, 1, .32, 1)
}

.theme-scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.theme-scroll-top[hidden] {
    display: none
}

.theme-powered-by {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 20px;
    border-top: 1px solid color-mix(in srgb, currentColor 10%, transparent);
    background: color-mix(in srgb, currentColor 3%, transparent);
    color: inherit;
    font-size: 10px;
    letter-spacing: .02em
}

.theme-powered-by>span {
    opacity: .48
}

.theme-powered-by a {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    color: inherit;
    text-decoration: none;
    opacity: .72;
    transition: opacity 140ms ease
}

.theme-powered-by a:hover,
.theme-powered-by a:focus-visible {
    opacity: 1
}

.theme-powered-by a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px
}

.theme-powered-by strong {
    font-size: 12px;
    letter-spacing: -.01em
}

@media(min-width:760px) {
    .theme-scroll-top {
        bottom: 24px
    }
}

@media(max-width:560px) {
    .theme-business-profile {
        padding: 24px 16px 78px 16px
    }

    .theme-business-profile__heading {
        flex-direction: column
    }

    .theme-opening-status {
        max-width: none
    }

    .theme-business-profile__content {
        grid-template-columns: 1fr
    }

    .theme-hours summary {
        min-height: 56px
    }

    .theme-sultan .theme-powered-by {
        padding: 12px 16px 88px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto !important
    }

    .theme-hours__chevron,
    .theme-phone-link,
    .theme-social-links a,
    .theme-powered-by a,
    .theme-scroll-top {
        transition: none
    }

    .theme-phone-link:hover,
    .theme-social-links a:hover {
        transform: none
    }
}
