* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #1a1a1a;
    color: white;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    padding: 10px 0;
    margin-bottom: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 70px;
}

.divider {
    margin: 0 10px;
    color: #666;
}

.gift-cards-text {
    font-size: 18px;
    font-weight: 500;
}

/* Hero section styles */
.hero h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.gift-card-image {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* Promo banner styles */
.promo-banner {
    background-color: #222;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.promo-icons {
    display: flex;
    margin-right: 15px;
}

.promo-icon {
    width: 40px;
    height: 40px;
    margin-right: -10px;
}

.promo-text .limited-time {
    font-weight: 500;
    margin-bottom: 5px;
}

.promo-details {
    font-size: 14px;
    color: #ccc;
}

/* Card selection styles */
.card-selection h2,
.amount-selection h2,
.recipient-selection h2 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.card-options,
.recipient-options {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.card-option,
.recipient-option {
    flex: 1;
    padding: 15px;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.card-option.active,
.recipient-option.active {
    border-color: #0066ff;
}

/* Amount selection styles */
.amount-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.currency {
    color: #999;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.amount-option {
    padding: 15px;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.custom-amount {
    margin-bottom: 25px;
}

.dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 12px;
    color: #999;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 8px;
    margin-top: 5px;
    z-index: 10;
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 12px 15px;
    text-align: left;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.dropdown-item:hover {
    background-color: #333;
}

.custom-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #333;
}

#custom-amount-input {
    flex: 1;
    padding: 10px;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 4px 0 0 4px;
    color: white;
    font-size: 16px;
}

#apply-custom-amount {
    padding: 10px 15px;
    background-color: #0066ff;
    border: none;
    border-radius: 0 4px 4px 0;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.amount-option.active {
    border-color: #0066ff;
}

/* Add to cart button */
.add-to-cart-btn {
    width: 100%;
    padding: 15px;
    background-color: #0066ff;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 15px;
}

.powered-by {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Add these styles to your existing CSS file */

.amount-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.amount-option {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown {
    display: flex;
    align-items: center;
}

.dropdown-item {
    display: flex;
    align-items: center;
}

.friend-details {
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
}

.text-input {
    width: 100%;
    padding: 15px;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 16px;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.char-count {
    color: #999;
    font-size: 14px;
}

.message-input {
    height: 100px;
    resize: none;
}

/* Make sure the recipient options have cursor pointer */
.recipient-option {
    cursor: pointer;
}

/* Add a subtle hover effect */
.recipient-option:hover {
    background-color: #2a2a2a;
}

/* Add these responsive styles to your existing CSS file */

/* For tablets and smaller devices */
@media screen and (max-width: 768px) {
    .container {
        padding: 15px;
        max-width: 100%;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For mobile phones */
@media screen and (max-width: 480px) {
    .logo {
        height: 24px;
    }
    
    .gift-cards-text {
        font-size: 16px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    h2 {
        font-size: 16px;
    }
    
    .card-options, .recipient-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .card-option, .recipient-option {
        width: 100%;
    }
    
    .promo-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-icons {
        margin-bottom: 10px;
        justify-content: center;
    }
    
    .input-group label {
        font-size: 14px;
    }
    
    .text-input {
        padding: 12px;
        font-size: 14px;
    }
    
    .add-to-cart-btn {
        padding: 12px;
        font-size: 16px;
    }
}

/* For very small screens */
@media screen and (max-width: 320px) {
    h1 {
        font-size: 18px;
    }
    
    .amount-options {
        grid-template-columns: 1fr;
    }
    
    .promo-details {
        font-size: 12px;
    }
}