/* === Base Styles (Minimalist Version) === */
.ewf-gift-card {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    padding: 5px 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}
.ewf-gift-card-title {
    font-size: 12px;
    color: #8c7d6e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    transition: text-shadow 0.3s ease;
}
.ewf-recipient-name {
    font-family: serif;
    font-size: 20px;
    font-weight: 700;
    color: #3d3d3d;
    margin-bottom: 15px;
    line-height: 1.2;
    transition: text-shadow 0.3s ease;
}
.ewf-separator {
    width: 60px;
    height: 1px;
    background-color: rgba(192, 159, 122, 0.3);
    margin: 0 auto 20px auto;
}
.ewf-recipient-address {
    font-size: 14px;
    color: #666;
    white-space: pre-wrap;
    line-height: 1.5;
    margin-bottom: 25px;
}
.ewf-gift-card-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 8px;
    background-color: #c09f7a;
    color: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(192, 159, 122, 0.4);
    transition: all 0.3s ease;
}
.ewf-gift-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(192, 159, 122, 0.5);
}
.ewf-ribbon-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 16px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}
.ewf-gift-card.has-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 75px 75px 0;
    border-style: solid;
    border-color: transparent #c09f7a transparent transparent;
    transition: all 0.3s ease;
    z-index: 1;
}
.ewf-button-icon-before {
    margin-right: 5px;
}
.ewf-button-icon-after {
    margin-left: 5px;
}
.ewf-card-emboss .ewf-recipient-name,
.ewf-card-emboss .ewf-gift-card-title {
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
/* === Skin Styles === */
.ewf-gift-card--skin-gold .ewf-gift-card {
    background: linear-gradient(135deg, #1d2b3a 0%, #0f171e 100%);
    border-color: #3a2d1c;
}
.ewf-gift-card--skin-gold .ewf-gift-card-title {
    color: #FBDB93;
}
.ewf-gift-card--skin-gold .ewf-recipient-name {
    color: #f5eeda;
}
.ewf-gift-card--skin-gold .ewf-separator {
    background-color: rgba(212, 175, 55, 0.3);
}
.ewf-gift-card--skin-gold .ewf-recipient-address {
    color: #b0a99a;
}
.ewf-gift-card--skin-gold .ewf-gift-card.has-ribbon::before {
    border-right-color: #FBDB93;
}
.ewf-gift-card--skin-gold .ewf-ribbon-icon {
    color: #0f171e;
}
.ewf-gift-card--skin-gold .ewf-gift-card-btn {
    background-color: #FBDB93;
    color: #1d2b3a;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}
.ewf-gift-card--skin-dark .ewf-gift-card {
    background: #1e1e1e;
    border-color: #333;
}
.ewf-gift-card--skin-dark .ewf-gift-card-title {
    color: #888;
}
.ewf-gift-card--skin-dark .ewf-recipient-name {
    color: #fff;
}
.ewf-gift-card--skin-dark .ewf-separator {
    background-color: #444;
}
.ewf-gift-card--skin-dark .ewf-recipient-address {
    color: #ccc;
}
.ewf-gift-card--skin-dark .ewf-gift-card.has-ribbon::before {
    border-right-color: #fff;
}
.ewf-gift-card--skin-dark .ewf-ribbon-icon {
    color: #1e1e1e;
}
.ewf-gift-card--skin-dark .ewf-gift-card-btn {
    background-color: #fff;
    color: #1e1e1e;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}
.ewf-gift-card--skin-light .ewf-gift-card {
    background: #fff;
    border: 1px solid #f0f0f0;
}
.ewf-gift-card--skin-light .ewf-gift-card-title {
    color: #999;
}
.ewf-gift-card--skin-light .ewf-recipient-name {
    color: #2c3e50;
}
.ewf-gift-card--skin-light .ewf-separator {
    background-color: #e0e0e0;
}
.ewf-gift-card--skin-light .ewf-recipient-address {
    color: #7f8c8d;
}
.ewf-gift-card--skin-light .ewf-gift-card.has-ribbon::before {
    border-right-color: #393E46;
}
.ewf-gift-card--skin-light .ewf-ribbon-icon {
    color: #fff;
}
.ewf-gift-card--skin-light .ewf-gift-card-btn {
    background-color: #393E46;
    color: #fff;
}