

 
.hero-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;

}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 20px;
}
.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin: 0 auto;
    color: #d4af37;
}
.birthday-theme {
    
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 2px dashed #9c27b0;
}
.birthday-header {
    text-align: center;
    color: #d4af37;
    margin-bottom: 20px;
}
 .events-theme {
            background: #fff8f8;
            padding: 30px;
            margin: 30px 20px;
            border-radius: 10px;
            border: 2px dashed #9c27b0;
        }
.events-theme h2, p{
    color: #d4af37;
    text-align: center;
}
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.item-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.item-image {
    height: 200px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.item-card:hover .item-image img {
    transform: scale(1.05);
}

.item-details {
    padding: 1.5rem;
}

.item-details h3 {
    font-size: 1.4rem;
    color: #292F36;
    margin-bottom: 0.5rem;
}

.item-details p {
    color: #666;
    margin-bottom: 1rem;
    min-height: 60px;
}

.item-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 1rem;
}
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #d4af37;
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: #9c27b0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #d4af37;
}

.btn-secondary:hover {
    background: #9c27b0;
}
.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFE66D;
    color: #292F36;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}
.terms {
    background: #eee;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 5px solid #9c27b0;
}

.terms h3 {
    font-size: 1.5rem;
    color: #292F36;
    margin-bottom: 1rem;
    text-align: center;
}

.terms ul {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.terms li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #9c27b0;
    position: relative;
    padding-left: 2rem;
    color: #292F36;
}

.terms li:last-child {
    border-bottom: none;
}

.terms li::before {
    content: '✓';
    color: #9c27b0;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Testimonial */
.testimonial {
    background: #F7F7F7;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: bold;
    color: #292F36;
}
.cta-section {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(to right, #F7F7F7, #eee);
    border-radius: 12px;
    color: #292F36;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #292F36;
}

.btn.cta-btn {
    background: #d4af37;
    color: white;
    max-width: 250px;
    margin: 20px auto;
    display: block;
}




/* Responsive Design */
@media screen and (max-width: 1200px) {
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .hero-banner {
        height: 500px;
    }
}

@media screen and (max-width: 768px) {
    .hero-banner {
        height: 400px;
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }
    
    .hero-banner img {
        padding: 15px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .birthday-theme,
    .events-theme {
        padding: 15px;
        margin: 15px 10px;
    }
    
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .item-details {
        padding: 1rem;
    }
    
    .item-details h3 {
        font-size: 1.2rem;
    }
    
    .item-details p {
        font-size: 0.9rem;
        min-height: 50px;
    }
    
    .item-price {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .terms,
    .testimonial {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .terms h3 {
        font-size: 1.3rem;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-banner {
        height: 300px;
        border-radius: 6px;
        margin-bottom: 1rem;
    }
    
    .hero-banner img {
        padding: 10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .birthday-theme,
    .events-theme {
        padding: 10px;
        margin: 10px 5px;
        border-width: 1px;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .item-image {
        height: 180px;
    }
    
    .item-details {
        padding: 0.8rem;
    }
    
    .item-details h3 {
        font-size: 1.1rem;
    }
    
    .item-details p {
        font-size: 0.85rem;
        min-height: auto;
        margin-bottom: 0.8rem;
    }
    
    .item-price {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .btn.cta-btn {
        max-width: 200px;
    }
    
    .badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .terms,
    .testimonial {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .terms h3 {
        font-size: 1.2rem;
    }
    
    .terms li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .testimonial-content {
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 1rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 320px) {
    .hero-banner {
        height: 250px;
    }
    
    .items-grid {
        gap: 0.8rem;
    }
    
    .item-details {
        padding: 0.6rem;
    }
}

/* Large Screens */
@media screen and (min-width: 1440px) {
    .hero-banner {
        height: 700px;
    }
    
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2.5rem;
    }
    
    .container {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .item-card:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .item-card:hover .item-image img {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-banner img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}