@charset "UTF-8";

body.info.shop > .nav-mg {
    display: flex;
    align-items: center;
    background: var(--col1-90);
    padding-block: 4px;
    gap: 4px;
    .info {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        * {
            font-size: 1.4rem;
        }
        .phone {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .phone *[class*=material-] {
            font-size: 1.8rem;
        }
    }
    > :is(button, a) {
        aspect-ratio: 1 / 1;
        width: 52px;
        font-size: 4.5rem;
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 1px dotted #fff;
        border-radius: 5px;
    }
    > button.menu {
        background: #000;
    }
    > button.phone {
        background: red;
        border: 1px dotted #000;
    }
}

body.info.shop > .nav-mg.fix {
    position: fixed;
    padding-block: 8px;
    z-index: 9999;
    border-bottom: 4px solid #999;
    background: #000;
    * {
        color: #fff;
    }
    > button.menu {
        background: #fff;
        color: #000;
    }
}

body.info.shop > nav.nav.fix  {
    background: var(--col4-50);
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 2px solid #000;
    > ul {
        display: flex;
        width: 100%;
        justify-content: center;
        border-left: 1px dotted var(--col4-30);
    }
    > ul > * {
        flex-grow: 1;
        padding-block: 4px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 1px dotted var(--col4-30);
        > :is(a, button) {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
        }
        > button.phone {
            position: relative;
            z-index: 1;
            text-decoration: none;
            color: #fff;
        }
        > button.phone {
            font-size: 4rem;
        }
        > button.phone::after {
            content: "";
            line-height: 1;
            position: absolute;
            top: -30px;
            left: 0;
            width: 100%;
            height: 60px;
            background: red;
            border-radius: 50%;
            z-index: -1;
        }
    }
    > ul .phone {
        background: red;
        
    }
}

body.info.shop .modal.fix.snav {
	background: hsla(0, 0%, 0%, .7);
    * {
        font-size: 1.6rem;
    }
	.inner {
		border-top: 5px #000 solid;
	}
    .inner ul {
        display: flex;
        flex-direction: column;
    }
    .inner li a {
        display: block;
        line-height: 1;
        padding: 16px;
        border-top: 1px dotted #999;
        
    }
    .inner .head-line {
        padding-inline: 8px;;
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
    }
    .inner .head-line .btns {
        display: flex;
        gap: 8px;
    }
    .inner .head-line .btns .bookmark {
        display: flex;
        justify-content: center;
        align-items: center;
        aspect-ratio: 1 / 1;
        max-width: 50px;
        font-size: 3rem;
        border-radius: 5px;
        background: #999;
        color: #fff;
    }
    .inner .head-line .btns .bookmark.saved {
        background: var(--col4-50);
        color: #000;
    }
    .inner .head-line .btns .phone {
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4px;
        width: 10%;
        flex-grow: 1;
        padding-inline: 16px;
        background: red;
        border-radius: 10px;
        color: #fff;
        font-size: 1.8rem;
    }
    .inner .head-line .phone *[class*=material-] {
        font-size: 3rem;
    }
}