  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        
        body {
            height: 100vh;
            padding: 10px 0 90px;
            overflow-x: hidden;
            background-color: #f5f5f5;
        }
        .ton-icon {
			display: inline-block;
			width: 13.5px;
			height: 12px;
			background-image: url('/shablon/img/ton_symbol.svg');
			background-size: contain;
			background-repeat: no-repeat;
			vertical-align: middle;
			margin: 0 2px;
		}
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            /* background-color: #4285f4; */
            /* color: white; */
			color: #4285f4;
			background-color: #fcfcfc;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .header-content {
            width: 100%;
            max-width: 600px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 20px;
        }
                  
        .gift-name {
            font-weight: bold;
            margin-bottom: 5px;
            font-size: 14px;
        }
        
        .gift-price {
            color: #666;
            font-size: 12px;
        }
        
        .play-button {
            background-color: #4285f4;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 5px;
            width: 100%;
            font-size: 12px;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .play-button:hover {
            background-color: #3367d6;
        }
        
        .footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 90px;
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 100;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        }
        
        .footer-content {
            width: 100%;
            max-width: 600px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 0 10px;
        }
        
        .menu-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #555;
            text-decoration: none;
            font-size: 12px;
            padding: 5px 2px;
            width: 25%;
            height: 70px;
            text-align: center;
        }
        
        .menu-item i {
            font-size: 20px;
            margin-bottom: 3px;
        }
        
        .menu-item span {
            display: inline-block;
            white-space: normal;
            word-break: break-word;
            line-height: 1.3;
            max-width: 100%;
        }
        
        .menu-item.active {
            color: #4285f4;
            font-weight: bold;
        }
		
		
.content {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;

    /* Удаляем фиксированную высоту и ограничение прокрутки */
    height: auto;
    overflow: visible;
}

.gift-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
    height: auto; /* авто-высота */
}

.gift-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.gift-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Хедер стили */
