/**
* 2007-2026 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2026 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

.lvw-gift-card-box {
	--lvw-main: #6C9792;
	--lvw-main-soft: #eef5f4;
	margin: 8px 8px;
	padding: 16px;
	border: 1px solid var(--lvw-main);
	border-radius: 12px;
	background: linear-gradient(135deg, #ffffff 0%, var(--lvw-main-soft) 100%);
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
	flex-direction: column;
	margin-bottom: 20px;
}

.lvw-gift-card-title {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	color: #204240;
}

.lvw-gift-switch-row {
	display: inline-flex;
	gap: 10px;
	margin-top: 12px;
	flex-wrap: wrap;
}

.lvw-switch-option {
	position: relative;
	cursor: pointer;
}

.lvw-switch-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.lvw-switch-option span {
	display: inline-block;
	min-width: 52px;
	text-align: center;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid var(--lvw-main);
	color: #2f5d59;
	background: #fff;
	font-weight: 600;
	transition: all 0.2s ease;
}

.lvw-switch-option input:checked + span {
	background: var(--lvw-main);
	color: #fff;
	box-shadow: 0 6px 16px rgba(108, 151, 146, 0.25);
}

.lvw-gift-message-wrapper {
	margin-top: 12px;
	width: 100%;
}

.lvw-gift-message-wrapper label {
	display: block;
	margin-bottom: 6px;
	color: #204240;
	font-weight: 600;
	text-align: left;
}

.lvw-gift-message-wrapper .form-control {
	border: 1px solid #bcd2cf;
}

.lvw-gift-message-wrapper .form-control:focus {
	border-color: var(--lvw-main);
	box-shadow: 0 0 0 0.2rem rgba(108, 151, 146, 0.2);
}

@media (max-width: 768px) {
	.lvw-gift-card-box {
		padding: 12px;
	}

	.lvw-gift-card-title {
		font-size: 15px;
		line-height: 1.4;
	}
}
