
:root {
    --primary-color: #FF85A2; /* Soft pink */
    --secondary-color: #A78AFF; /* Lavender */
    --accent-color: #FFD166; /* Soft yellow */
    --light-color: #FFF5F7; /* Very light pink */
    --dark-color: #5E4B56; /* Deep mauve */
}

body {
    background-color: var(--light-color);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 15px rgba(94, 75, 86, 0.1);
}

.hero-section {
    background: linear-gradient(135deg, rgba(255,133,162,0.2) 0%, rgba(167,138,255,0.2) 100%);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: rotate(15deg);
}

.brand-text {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 12px !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    border-radius: 3px;
}

.nav-link:hover:after {
    width: 100%;
    opacity: 1;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 10px;
    animation: fadeIn 0.3s ease;
}

.dropdown-menu-lg {
    min-width: 300px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.2s ease;
}

.theme-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 2px 10px;
}

.theme-item:hover {
    background-color: rgba(232, 62, 140, 0.1);
    transform: translateX(5px);
}

.dropdown-divider {
    margin: 5px 20px;
    opacity: 0.5;
}

.cart-icon {
    position: relative;
    margin-left: 10px;
}

.cart-count {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    padding: 3px 8px;
    font-size: 0.7rem;
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.cart-icon:hover .cart-count {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.search-form {
    margin-left: 15px;
}

.search-input {
    border-radius: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 20px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.2);
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    margin-left: -40px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    animation: zoomInOut 15s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: absolute;
    color: white;
    width: 100%;
    padding: 0 20px;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary-color);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
    background-size: 100% 100%;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.5));
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light {
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.category-link {
    text-decoration: none;
}

.category-card {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(232, 62, 140, 0.8);
    color: white;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    background-color: #fff5f8;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 62, 140, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(232, 62, 140, 0.1);
    border-color: rgba(232, 62, 140, 0.3);
}

.feature-icon i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(232, 62, 140, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(232, 62, 140, 0.1);
    border-color: rgba(232, 62, 140, 0.3);
}

.testimonial-img-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-img {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.quote-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.testimonial-text {
    position: relative;
    font-style: italic;
    color: #555;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
    color: #333;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .rating-stars {
    transform: scale(1.1);
}

.leaf-slider {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(232, 62, 140, 0.1);
    border-bottom: 1px solid rgba(232, 62, 140, 0.1);
}

.leaf-slider-container {
    display: flex;
    animation: leafScroll 20s linear infinite;
    width: max-content;
}

.leaf-item {
    display: flex;
    align-items: center;
    margin: 0 30px;
    white-space: nowrap;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.leaf-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.leaf-item:hover {
    transform: scale(1.05);
}

.leaf-item:hover i {
    transform: rotate(360deg);
    color: var(--secondary-color);
}

@keyframes leafScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.image-slider-container {
    width: 100%;
    overflow: hidden;
    background-color: #f8f9fa;
    padding: 20px 0;
    position: relative;
}

.image-slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.image-slide {
    width: 250px;
    height: 180px;
    margin: 0 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    flex-shrink: 0;
    position: relative;
}

.image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(232, 62, 140, 0.2);
}

.image-slide:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.image-slider-container:hover .image-slider-track,
.leaf-slider:hover .leaf-slider-container {
    animation-play-state: paused;
}

#birthday-collection {
    background-color: #fafafa;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.premium-flower-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.premium-flower-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(232, 62, 140, 0.15);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
}

.card-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: -1;
    opacity: 0.9;
}

.flower-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.flower-main-img,
.flower-hover-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.flower-hover-img {
    opacity: 0;
    transform: scale(1.05);
}

.premium-flower-card:hover .flower-main-img {
    opacity: 0;
    transform: scale(1.05);
}

.premium-flower-card:hover .flower-hover-img {
    opacity: 1;
    transform: scale(1);
}

.card-body {
    padding: 20px;
}

.flower-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.premium-flower-card:hover .flower-name {
    color: var(--primary-color);
}

.flower-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

.flower-rating {
    background: rgba(255, 215, 0, 0.1);
    color: #FFA500;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.flower-rating i {
    margin-right: 3px;
    font-size: 0.8rem;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #999;
}

.btn-add-to-cart {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-add-to-cart i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.3);
}

.contact-section {
    background-color: #f8f9fa;
}

.section-header {
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #e83e8c;
    margin-top: 1.5rem;
}

.contact-form {
    background-color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #2c3e50;
    font-weight: 600;
}

.form-control {
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #e83e8c;
    box-shadow: 0 0 0 0.25rem rgba(232, 62, 140, 0.25);
}

.btn-primary {
    background-color: #e83e8c;
    border-color: #e83e8c;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #d62a7a;
    border-color: #d62a7a;
    transform: translateY(-2px);
}

.contact-details h3 {
    color: #2c3e50;
    font-weight: 600;
}

.contact-details ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-details ul li:last-child {
    border-bottom: none;
}

.contact-details i {
    width: 24px;
    text-align: center;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

footer {
    background-color: #1a1a2e;
}

footer h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #e83e8c;
}

.footer-about {
    color: #e6e6e6;
}

.footer-about a {
    color: #ffffff;
    text-decoration: none;
}

.footer-about p {
    color: #b3b3b3;
    line-height: 1.8;
}

.footer-links a {
    display: block;
    color: #cccccc;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #e83e8c;
    padding-left: 5px;
}

footer .text-muted {
    color: #b3b3b3 !important;
}

footer .form-control {
    background-color: #2a2a3e;
    border-color: #3a3a4e;
    color: #ffffff;
}

footer .form-control::placeholder {
    color: #999999;
}

footer .btn-primary {
    background-color: #e83e8c;
    border-color: #e83e8c;
}

.payment-methods {
    opacity: 0.9;
}

footer hr {
    border-color: rgba(255,255,255,0.1);
}

footer .text-muted {
    color: #999999 !important;
}

footer .text-danger {
    color: #e83e8c !important;  
}

.social-icons a {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #e83e8c;
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .search-form {
        margin: 15px 0 0 0;
        width: 100%;
    }
    
    .dropdown-menu {
        border-radius: 0;
        box-shadow: none;
        border: none;
        margin-top: 0;
    }
    
    .theme-item {
        margin: 2px 0;
    }
    
    .nav-link {
        padding: 10px 15px !important;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section,
    .carousel-item {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .btn-primary,
    .btn-outline-light {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .leaf-item {
        margin: 0 15px;
    }
    
    .image-slide {
        width: 200px;
        height: 140px;
        margin: 0 10px;
    }
    
    @keyframes scroll {
        100% {
            transform: translateX(-50%);
        }
    }
}

@media (max-width: 1199px) {
    .flower-img-container {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .flower-img-container {
        height: 200px;
    }
}

@media (max-width: 767px) {
    #birthday-collection {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .flower-name {
        font-size: 1.2rem;
    }
}
 
#birthday-collection, 
#wedding-collection, 
#anniversary-collection {
    transition: all 0.5s ease;
}

 
.payment-methods {
    display: none;
}

 
footer {
    background-color: #1a1a2e;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-about {
    padding-right: 30px;
}

.footer-links {
    margin-bottom: 30px;
}