* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #f6f6f6;
    color: #222;
}

html
{
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.shop-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.page-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 28px 24px 40px;
}

.box {
    background: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.box-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #1f8f39;
    font-weight: 700;
    text-decoration: none;
}

.back-link:hover {
    opacity: 0.94;
}

@media (max-width: 460px) {
    .page-content {
        padding-left: 16px;
        padding-right: 16px;
    }
}