.giftcard-section {
    background-color: var(--bg-body);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.giftcard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.giftcard-content {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Decoración de fondo elegante */
.giftcard-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.giftcard-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge--gift {
    align-self: flex-start;
    background-color: rgba(205, 126, 98, 0.15);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.giftcard-text h2 {
    font-size: 2.8rem;
    color: var(--primary);
    line-height: 1.2;
    margin: 0;
}

.giftcard-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent);
    margin: 0;
}

.giftcard-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin: 0;
}

.giftcard-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.giftcard-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-main);
}

.giftcard-features li i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.giftcard-btn {
    align-self: flex-start;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.giftcard-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    height: 100%;
    min-height: 450px;
}

.giftcard-gallery--2-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: auto;
    min-height: auto;
}

.giftcard-gallery--2-items .gift-img-wrapper {
    width: 100%;
    height: 290px;
}

.gift-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gift-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gift-img-wrapper:hover img {
    transform: scale(1.05);
}

.img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.img-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .giftcard-content {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 3rem;
    }
    
    .giftcard-gallery {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .giftcard-text h2 {
        font-size: 2.2rem;
    }
    
    .giftcard-content {
        padding: 2rem 1.5rem;
    }
    
    .giftcard-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .img-1, .img-2, .img-3 {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 200px;
    }
}
