
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}


.main-header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
}

.nav-links i {
    font-size: 10px;
    margin-left: 4px;
}

.header-icons a {
    font-size: 18px;
    margin-left: 15px;
}



.gift-recipient-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
}

.recipient-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.recipient-card {
    flex-basis: calc(25% - 15px);
    min-width: 200px; 
    display: block;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
}



.card-image-wrapper {
    position: relative;
    width: 100%;
    
    padding-bottom: 75%; 
    height: 0;
}

.card-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black bar */
    color: #fff;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


@media (max-width: 992px) {
    .recipient-card {
        flex-basis: calc(50% - 10px); 
               margin-bottom: 20px;
    }
}

/* @media (max-width: 576px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        display: none; 
    }
    
    .header-icons {
        position: absolute;
        top: 15px;
        right: 20px;
    }
    
    .recipient-grid {
        gap: 10px;
    }
    
    .recipient-card {
        flex-basis: 100%;
       }
} */


/* 3 */
   

         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f7f9fc;
            color: #333;
            line-height: 1.6;
            padding: 20px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
        }
        
        h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .subtitle {
            font-size: 1.2rem;
            /* color: #7f8c8d; */
            max-width: 600px;
            margin: 0 auto;
        }
        
        .price-categories {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .category {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 25px;
            width: 100%;
            max-width: 350px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        
        .category-header {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .category-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .price-range {
            font-size: 1.2rem;
            font-weight: 500;
            color: #3498db;
        }
        
        .gift-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .gift-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            transition: background-color 0.3s ease;
        }
        .brand-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .card-type {

            color: #7f8c8d;
            margin-bottom: 10px;
        }
        
        .card-value {
            /*  */
            font-weight: 700;
            color: #27ae60;
        }
        
        @media (max-width: 768px) {
            .price-categories {
                flex-direction: column;
                align-items: center;
            }
            
            .category {
                max-width: 100%;
            }
        }

/* 4 */


/* footer */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}


.site-footer {
    background-color: #191818; 
    color: #fff;
    padding-top: 50px;
    padding-bottom: 20px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; 
}


.footer-column {
    margin-bottom: 30px;
    padding-right: 20px; 
}

.column-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}


.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}


.contact-column {
    
    flex-basis: 250px; 
}

.social-icons a, 
.contact-column > a {
    color: #fff;
    font-size: 18px;
    margin-right: 15px;
    margin-bottom: 15px; 
    display: inline-block;
    transition: color 0.3s;
}

.social-icons a:hover,
.contact-column > a:hover {
    color: #e44d26; 
}

.contact-title {
    margin-top: 20px;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.contact-label {
    color: #aaa;
    font-size: 14px;
}

.signup-column {
    flex-basis: 300px; 
    padding-right: 0;
}

.signup-text {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.signup-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #333;
    background-color: #000;
    color: #fff;
    font-size: 14px;
}

.signup-form input::placeholder {
    color: #555;
}

.subscribe-btn {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;

    font-size: 14px;
    font-weight: bold;
    
}

.subscribe-btn:hover {
    background-color: #fff;
    color: #000;
}


.copyright-row {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 30px;
}

.copyright-row p {
    font-size: 12px;
    color: #555;
}


.sticky-offer {
    position: fixed;
    bottom: 50px;
    left: 20px;
    background-color: #333; 
    color: gold; 
    padding: 10px 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
 
}


.scroll-to-top {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #000; 
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    z-index: 1000;
}

/* --Mobile --- */
@media (min-width: 768px) {

    .footer-container {
        justify-content: flex-start;
        gap: 30px;
    }

    .footer-column {
    
        flex-basis: calc(20% - 20px); 
    }
    
    .contact-column {
        flex-basis: 25%; 
    }

    .signup-column {
        flex-basis: 30%;
    }
}



        
