/* Модальное окно */
.gift-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.gift-modal-content {
    background: var(--widget-bg);
    padding: 25px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.gift-modal-title {
    margin-top: 0;
}

/* Сетка подарков */
.gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.gift-option {
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 8px;
    transition: border-color 0.3s ease;
}

.gift-option:hover {
    border-color: #ddd;
}

.gift-option-image {
    margin-bottom: 6px;
}

.gift-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.gift-placeholder {
    width: 60px;
    height: 60px;
    background: #2222;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Форма отправки */
.gift-form.hidden {
    display: none;
}

.gift-checkbox-label {
    display: block;
    margin: 15px 0;
}

.gift-message-wrapper {
    margin: 15px 0;
}

.gift-message-label {
    display: block;
    margin-bottom: 5px;
}

.gift-textarea {
    width: 100%;
    height: 60px;
    margin-top: 5px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

.gift-button-group {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.gift-response {
    margin-top: 15px;
}

/* Контейнеры для подарков */
.sent-gifts,
.received-gifts {
    margin: 20px 0;
}

.gifts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Карточка подарка */
.gift-card {
	position: relative;
	width: 110px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.gift-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-gift-delete {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 1rem;
	color: var(--body-bg);
	background: var(--accent-color);
	border-radius: 5px;
	cursor: pointer;
	padding: 0 4px;
}

.gift-card-image {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border-radius: 4px;
}

.gift-card-placeholder {
    width: 100%;
    height: 100px;
    background: #2222;
    border-radius: 4px;
}

.gift-card-info {
    font-size: 0.85em;
    margin-top: 8px;
}

.gift-private-badge {
    color: #999;
    display: inline-block;
    margin-top: 4px;
}

/* Уведомления */
.notice {
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
}

.notice-info {
    background: var(--body-bg);
    border-left: 4px solid #0073aa;
}

.notice-success {
    background: var(--body-bg);
    border-left: 4px solid #46b450;
}

.notice-error {
    background: var(--body-bg);
    border-left: 4px solid #dc3232;
}