﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
}
.giftcard-customer {
    margin-top: 150px;
}
.giftcard-customer .page-header h2{
    color:#000000;
    font-weight:500;
}
.gift-cards-wrapper {
    display: flex;
    gap: 20px;
    justify-content: start;
    flex-wrap: wrap;
    padding: 6px 9px;
    overflow: hidden;
    margin: 40px 0;
}
.gift-card {
    width: 350px;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 18px;
    padding: 15px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.gift-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
/*
.gift-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
*/
.gift-card-image img {
    width: 100%;
    display: block;
}

.gift-card-btn {
    display: block;
    margin-top: 16px;
    background: #003cbf;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 14px 6px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
}

.gift-card-btn:hover {
    background: #002f99;
}

/* Exclusive Ribbon */
.exclusive-badge {
    position: absolute;
    top: 18px;
    left: -42px;
    background: #e21b23;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 36px;
    transform: rotate(-45deg);
    z-index: 2;
    letter-spacing: 1px;
}

.exclusive-badge::before,
.exclusive-badge::after {
    content: "";
    position: absolute;
    border-style: solid;
}

.exclusive-badge::before {
    left: 0;
    bottom: -8px;
    border-width: 8px 8px 0 0;
    border-color: #8f1116 transparent transparent transparent;
}

.exclusive-badge::after {
    right: 0;
    bottom: -8px;
    border-width: 8px 0 0 8px;
    border-color: #8f1116 transparent transparent transparent;
}

/* Responsive */
@media screen and (max-width:1700px) {
    .gift-card {
        width: 300px;
    }
    .gift-card-btn {
        font-size: 14px;
    }
}
@media screen and (max-width:1200px) {
    .giftcard-customer .container-fluid {
        max-width: 95% !important;
    }
    .giftcard-customer {
        margin-top: 100px;
    }
}
@media (max-width: 1199px) {
    .gift-cards-wrapper{
        gap:10px;
    }
    .gift-card {
        width: calc(33.33% - 10px);
    }
    
}
@media screen and (max-width:991px) {
    .giftcard-customer {
        margin-top: 140px;
    }
    .gift-card-btn {
        font-size: 12px;
    }
}

@media screen and (max-width: 767px) {
    .giftcard-customer {
        margin-top: 30px;
    }
    .giftcard-customer .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-header h2 {
        font-size: 24px;
    }
    .gift-cards-wrapper {
        gap: 20px;
        justify-content: center;
        padding: 9px 9px;
        margin: 30px 0;
    }

    .gift-card {
        width: 100%;
        max-width: 400px;
    }

    .gift-card-btn {
        font-size: 16px;
        padding: 12px;
        font-weight: 600;
    }
}
