body {
    font-family: 'Inter', sans-serif;
}

.main-container {
    background: #F7F3ED;
    padding: 4rem 2rem;
}

.logo {
    max-height: 120px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.products-section {
    margin: 8rem 0;
}

.product-card {
    position: relative;
    width: 380px;
    height: 380px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #B52F24CC;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    color: white;
}

.product-card:hover .product-info {
    transform: translateY(0);
}

.product-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.product-title {
    color: #F7F3ED;
    font-family: 'Baloo 2', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
}

.product-description {
    color: #F7F3ED;
    max-width: 300px;
    font-family: 'Baloo 2', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
}

.description-text {
    color: #A67C7C;
    max-width: 750px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-weight: 100;
    font-size: 36px;
    line-height: 40px;
}

.heart-countdown {
    position: relative;
    width: 284px;
    height: 264px;
    margin: 2rem auto;
}

.heart-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.countdown-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 100;
    font-style: Thin;
    font-size: 82px;
    text-align: center;
}

@keyframes heartbeat {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 1rem;
    }
    .logo {
        max-height: 80px;
    }
    .products-section {
        margin: 4rem 0;
    }
    .product-card {
        width: 100%;
        max-width: 100%;
        height: 350px;
        margin-bottom: 1.5rem;
    }
    .product-info {
        transform: translateY(0);
        background: #B52F24CC;
        top: auto;
        height: auto;
        padding: 1rem;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        color: #333;
    }
    .product-info .product-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 0;
        margin-right: 0.75rem;
        filter: none;
    }
    .product-info .product-content {
        flex: 1;
    }
    .product-info .product-title {
        font-size: 1.4rem;
        margin-bottom: 0.25rem;
        color: #F7F3ED;
    }
    .product-info .product-description {
        font-size: 0.9rem;
        color: #F7F3ED;
        margin: 0;
    }
    .product-card:hover {
        transform: none;
    }
    .product-card:hover .product-image {
        transform: none;
    }
    .description-text {
        font-size: 32px;
        padding: 0 1rem;
    }
}

.order-form-section {
    margin-top: 8rem;
}

.order-form {
    max-width: 700px;
    width: 700px;
}

.selected-product {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #FFFFFF;
    border-radius: 12px;
}

.selected-product-image {
    width: 160px;
    height: 109px;
    object-fit: cover;
    margin-right: 1rem;
}

.selected-product-info h4 {
    margin: 0;
    color: #B52F24;
    font-family: 'Baloo 2', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 24px;
    vertical-align: middle;
    text-transform: uppercase;
}

.selected-product-info p {
    margin: 0.5rem 0 0 0;
    color: #A67C7C;
    font-family: 'Baloo 2', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    vertical-align: middle;
    text-transform: uppercase;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control {
    height: 74px;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0px 8px 10px 0px #B52F240F;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #746969;
}

.form-control:focus {
    border-color: #746969;
    box-shadow: 0px 8px 10px 0px #B52F240F;
}

.btn-confirm {
    height: 74px;
    background: #E08C8C;
    border: 1px solid #E08C8C;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    color: #FFFBF5;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-confirm:hover,
.btn-confirm:focus {
    transform: translateY(-2px);
    background: #E08C8C;
    color: #FFFBF5;
}

.btn-back {
    height: 44px;
    background: transparent;
    border: 1px solid #746969;
    border-radius: 12px;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #746969;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-back:hover,
.btn-back:focus {
    transform: translateY(-2px);
    background: transparent;
    border: 1px solid #746969;
    color: #746969;
}

.countdown-section {
    margin-top: 8rem;
}

.arrival-text {
    color: #A67C7C;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-style: Light;
    font-size: 36px;
    text-align: center;
}

.success-section {
    margin-top: 8rem;
    max-width: 800px;
    width: 800px;
}

.message {
    padding: 1rem;
    background: #FFFFFF;
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(224, 140, 140, 0.2);
}

.message h3 {
    margin: 0;
    color: #B52F24;
    font-family: 'Baloo 2', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 24px;
    vertical-align: middle;
    text-transform: uppercase;
}

.message p {
    margin: 0.5rem 0 0 0;
    color: #A67C7C;
    font-family: 'Baloo 2', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    vertical-align: middle;
    text-transform: uppercase;
}

.message .btn {
    margin-top: 1rem;
    height: 45px;
    background: #E08C8C;
    border: none;
    border-radius: 12px;
    padding: 0 26px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #FFFBF5;
    text-align: center;
    transition: all 0.3s ease;
}

.message .btn:hover {
    transform: translateY(-2px);
    background: #E08C8C;
    color: #FFFBF5;
}

@media (max-width: 768px) {
    .order-form-section {
        margin-top: 4rem;
    }
    .order-form {
        width: 100%;
        max-width: 100%;
    }
    .selected-product {
        flex-direction: column;
        text-align: center;
    }
    .selected-product-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .btn-back {
        height: 74px;
    }
    .countdown-section {
        margin-top: 4rem;
    }
    .arrival-text {
        font-size: 1.2rem;
    }
    .success-section {
        margin-top: 4rem;
        max-width: 100%;
        width: 100%;
    }
    .message .btn {
        width: 100%;
    }
}

.recaptcha-container {
    margin: 1.5rem 0;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    min-height: 80px;
    width: 100%;
}

.g-recaptcha {
    display: block !important;
    width: 100% !important;
}

.g-recaptcha>div {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.g-recaptcha iframe {
    border: none !important;
    border-radius: 4px !important;
    width: 100% !important;
}

@media (max-width: 768px) {
    .recaptcha-container {
        margin: 1rem 0;
        padding: 0.5rem;
        transform: scale(0.95);
    }
}