/* Redesigned Gift Section */
.gift-section.redesigned {
    background-image: none !important;
    background-color: #FFFFFF;
    /* White background */
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
}

/* Card Container */
.gift-card {
    background-color: transparent;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #333333;
    /* Dark text */
    font-family: var(--font-secondary);
}

.gift-image-wrapper {
    width: 100%;
    height: 300px;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.gift-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay Text on Image */
.gift-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-family: var(--font-primary);
    font-size: 28px;
    color: #FFFFFF;
    /* Keep white on image */
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.gift-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555555;
    /* Darker gray for text */
    padding: 0 10px;
}

.btn-gift-click {
    display: inline-block;
    background-color: #EAE6DF;
    color: #333333;
    padding: 15px 40px;
    text-decoration: none;
    font-family: var(--font-legan);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
}

.btn-gift-click:hover {
    background-color: #333333;
    color: #FFFFFF;
}