/* Page-specific styles for Homepage */
.content-area {
    margin-top: 70px;
    padding: 0;
}

/* Carousel Styles */
.hero-carousel {
    margin-top: 0;
}

.carousel-item {
    height: 600px;
    position: relative;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
}

.carousel-caption h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.carousel-caption p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.carousel-btn {
    background: linear-gradient(45deg, #f3274c, #e91e63);
    border: none;
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(243, 39, 76, 0.4);
}

.carousel-btn:hover {
    background: linear-gradient(45deg, #ff6b6b, #f3274c);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(243, 39, 76, 0.6);
    color: white;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(243, 39, 76, 0.8);
    border-radius: 50%;
    padding: 2rem;
}

.carousel-indicators button {
    background-color: #f3274c;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 4rem;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #f3274c, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: #aaa;
    font-size: 1.1rem;
}

/* Products Section */
.products-section {
    padding: 2rem 0 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.product-card {
    background: linear-gradient(145deg, #21243b, #1a1e32);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(243, 39, 76, 0.3);
    border-color: rgba(243, 39, 76, 0.5);
}

.product-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #f3274c, #e91e63);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3274c;
    margin-bottom: 1rem;
}

.btn-product {
    background: linear-gradient(45deg, #f3274c, #e91e63);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-product:hover {
    background: linear-gradient(45deg, #ff6b6b, #f3274c);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 39, 76, 0.4);
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(243, 39, 76, 0.05), rgba(233, 30, 99, 0.05));
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(243, 39, 76, 0.1);
    border-color: rgba(243, 39, 76, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f3274c, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(243, 39, 76, 0.3);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-description {
    color: #aaa;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
}

.testimonial-card {
    background: linear-gradient(145deg, #21243b, #1a1e32);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3274c, #e91e63);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.testimonial-info h4 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
}

.testimonial-info .stars {
    color: #ffc107;
}

.testimonial-text {
    color: #ccc;
    font-style: italic;
    line-height: 1.6;
}

/* Footer */
/* .footer {
    background: linear-gradient(180deg, #1a1e32 0%, #0f1219 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1.5rem 0;
    margin-top: 4rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #f3274c;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #f3274c, #e91e63);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .carousel-item {
    height: 400px;
    }
    
    .section-title {
    padding-top: 2rem;
    margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .carousel-item {
    height: 350px;
    }
} */