/* --- 1. Top Header --- */
.gift-top-header {
    width: 100%;
    padding: 15px 0;
    background: linear-gradient(to right, #FFF6DF 0%, #FFFFFF 100%);
    text-align: center;
}

.gift-brand-text {
    font-weight: 300; /* Nét mảnh */
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    -webkit-background-clip: text;
    background-clip: text;
    color: #EBC58E;
}

/* --- 2. Main Section --- */
.gift-main-section {
    background-color: #ffffff; /* Nền trắng */
    padding: 80px 0;
    overflow: hidden;
}

.gift-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Cột Thông tin (Trái) --- */
.gift-info-col {
    flex: 0 0 40%; /* Chiếm 40% chiều rộng */
}

.gift-title {
    font-size: 32px;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 500;
}

.gift-desc {
    color: #000000;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.gift-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #a68b6c; /* Màu nâu nhạt giống hình */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
    font-size: 13px;
}

.gift-btn:hover {
    background-color: #8c7356;
}

/* --- Cột Sản phẩm (Phải) --- */
.gift-products-col {
    flex: 1;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

/* Div bao quanh từng sản phẩm */
.gift-product-card {
    text-align: center;
    width: 250px; /* Độ rộng mỗi hộp sản phẩm */
}

.gift-img-box {
    width: 100%;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.gift-img-box img {
    width: 100%;
    height: auto;
    display: block;
}

.gift-product-card:hover .gift-img-box {
    transform: translateY(-5px); /* Hiệu ứng nhấc lên khi hover */
}

.gift-product-name {
    font-size: 18px;
    color: #333;
    font-weight: 400;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .gift-container {
        flex-direction: column;
        text-align: center;
    }
    
    .gift-info-col {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }

    .gift-desc {
        text-align: center;
    }

    .gift-products-col {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .gift-brand-text {
        font-size: 20px;
    }
}

/* --- Animation Classes --- */
.animate-gift {
    opacity: 0;
    will-change: transform, opacity;
    transition: all 0.8s ease-out;
}

.gift-section-visible .animate-gift {
    opacity: 1;
    transform: translate(0, 0);
}

.from-top { transform: translateY(-30px); }
.from-left { transform: translateX(-50px); }
.from-right { transform: translateX(50px); }
.from-bottom { transform: translateY(30px); }

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }