:root {
    --background-color: #F5F2EF;
    --accent-lavender: #D2C5E8;
    --accent-peach: #FFD6B2;
    --accent-pistachio: #B7E4C7;
    --accent-lemon: #F9F871;
    --dark-text: #333333;
    --light-text: #666666;
    --border-color: #E0E0E0;
    --box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    --transition: all 0.3s ease;
}

body {
    background-color: var(--background-color);
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

/* Main Content Styles */
.container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-lavender);
}

.section-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    height: 100%;
    background: white;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.card-text {
    color: var(--light-text);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.card-price {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-lavender);
}

/* Product Styles */
.product-card {
    margin-bottom: 30px;
    position: relative;
}

.product-card .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 2;
}

.badge-new {
    background-color: var(--accent-lavender);
    color: white;
}

.badge-sale {
    background-color: var(--accent-peach);
    color: var(--dark-text);
}

.product-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    justify-content: center;
    padding: 12px;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    bottom: 0;
}

.btn-wishlist, .btn-quickview {
    background: none;
    border: none;
    color: var(--dark-text);
    margin: 0 10px;
    transition: var(--transition);
}

.btn-wishlist:hover, .btn-quickview:hover {
    color: var(--accent-lavender);
    transform: translateY(-3px);
}

.original-price {
    text-decoration: line-through;
    color: var(--light-text);
    font-size: 0.95rem;
    margin-right: 10px;
}

/* Category Display */
.category-box {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 250px;
    margin-bottom: 25px;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-box:hover .category-img {
    transform: scale(1.08);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: white;
    transition: var(--transition);
}

.category-box:hover .category-content {
    padding-bottom: 30px;
}

.category-title {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.category-count {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Feature Boxes */
.feature-box {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent-lavender), var(--accent-peach));
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-lavender);
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-text {
    color: var(--light-text);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.testimonial-icon {
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--accent-lavender);
    opacity: 0.2;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--light-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.testimonial-author-title {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-pistachio);
    border: none;
    box-shadow: 0 4px 10px rgba(183, 228, 199, 0.5);
}

.btn-primary:hover {
    background-color: var(--accent-lemon);
    color: var(--dark-text);
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(183, 228, 199, 0.6);
}

.btn-secondary {
    background-color: var(--accent-lavender);
    border: none;
    color: white;
    box-shadow: 0 4px 10px rgba(210, 197, 232, 0.5);
}

.btn-secondary:hover {
    background-color: #c2b2d8;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(210, 197, 232, 0.6);
}

.btn-outline-primary {
    border: 2px solid var(--accent-pistachio);
    color: var(--dark-text);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--accent-pistachio);
    color: white;
    transform: translateY(-3px);
}

.btn-cart-add {
    background-color: var(--accent-lavender);
    color: white;
    border: none;
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-cart-add:hover {
    background-color: var(--dark-text);
    transform: translateY(-3px);
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-featured {
    background-color: white;
    padding: 80px 0;
    margin: 60px 0;
    position: relative;
}

.section-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(210, 197, 232, 0.1) 0%, rgba(255, 214, 178, 0.1) 100%);
    z-index: 0;
}

.section-wave {
    position: relative;
    padding-bottom: 100px;
}

.section-wave::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L60,106.7C120,117,240,139,360,133.3C480,128,600,96,720,90.7C840,85,960,107,1080,117.3C1200,128,1320,128,1380,128L1440,128L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
}

/* Banner Styles */
.banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: rgba(0,0,0,0.3);
    transition: var(--transition);
}

.banner:hover .banner-content {
    background: rgba(0,0,0,0.4);
}

.banner-subtitle {
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.banner-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.banner-text {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    max-width: 500px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .banner-title {
        font-size: 1.6rem;
    }
    
    .category-box {
        height: 200px;
    }
}

/* Page-specific Styles */

/* Home Page */
.home-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(210, 197, 232, 0.2) 0%, rgba(255, 214, 178, 0.2) 100%);
    margin-bottom: 50px;
    border-radius: 0 0 30px 30px;
}

.hero-content {
    padding: 30px 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.hero-image img {
    width: 100%;
    transition: var(--transition);
}

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

/* Shop Page */
.shop-filters {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.filter-heading {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.price-slider .slider-value {
    margin-top: 10px;
    font-weight: 600;
}

.filter-options {
    margin-bottom: 20px;
}

.filter-options .form-check {
    margin-bottom: 8px;
}

.custom-checkbox .form-check-input:checked {
    background-color: var(--accent-lavender);
    border-color: var(--accent-lavender);
}

.shop-sorting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sort-by select {
    border-radius: 30px;
    padding: 8px 15px;
    border: 1px solid var(--border-color);
}

.view-options button {
    background: white;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 5px;
    color: var(--light-text);
    transition: var(--transition);
}

.view-options button.active,
.view-options button:hover {
    background-color: var(--accent-lavender);
    color: white;
    border-color: var(--accent-lavender);
}

/* Product Detail Page */
.product-gallery {
    margin-bottom: 30px;
}

.product-main-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-thumbs {
    display: flex;
    gap: 10px;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.product-thumb:hover {
    opacity: 0.8;
}

.product-thumb.active {
    border: 2px solid var(--accent-lavender);
}

.product-details .product-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.product-rating .stars {
    color: gold;
    margin-right: 10px;
}

.product-rating .review-count {
    color: var(--light-text);
}

.product-price-box {
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-lavender);
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.8;
}

.product-meta {
    margin-bottom: 25px;
}

.meta-item {
    margin-bottom: 10px;
    display: flex;
}

.meta-label {
    font-weight: 600;
    min-width: 120px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--accent-lavender);
    color: white;
    border-color: var(--accent-lavender);
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
}

.add-to-cart-box {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

/* Contact Styles */
.contact-info-section .card {
    background: linear-gradient(145deg, #ffffff 0%, var(--background-color) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-details i {
    color: var(--accent-lavender);
    width: 25px;
    margin-right: 10px;
}

.opening-hours {
    background: linear-gradient(145deg, var(--accent-peach) 0%, var(--accent-pistachio) 100%);
    padding: 20px;
    border-radius: 10px;
    color: #333;
}

.opening-hours h3 {
    color: #222;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.opening-hours ul li {
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form label {
    color: #333;
    font-weight: 500;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--accent-lavender);
    box-shadow: 0 0 0 0.25rem rgba(210, 197, 232, 0.25);
}

.faq-section .accordion-button {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    color: #333;
    background-color: #fff;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--accent-lavender);
    background-color: rgba(210, 197, 232, 0.1);
}

.faq-section .accordion-body {
    color: #666;
    line-height: 1.8;
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .contact-info-section .card {
        margin-bottom: 15px;
    }
    
    .opening-hours {
        margin-top: 15px;
    }
}

/* Header Styles */
.site-header {
    width: 100%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.top-bar {
    background-color: var(--dark-text);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.contact-bar a {
    color: white;
    margin-right: 20px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-bar a:hover {
    opacity: 0.8;
}

.contact-bar i {
    margin-right: 5px;
    color: var(--accent-lavender);
}

.social-bar a {
    color: white;
    margin-left: 15px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.social-bar a:hover {
    transform: translateY(-2px);
    color: var(--accent-lavender);
}

.custom-nav {
    background-color: white;
    padding: 0;
    height: 80px;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--dark-text);
    letter-spacing: 0.5px;
    padding: 0;
    height: 80px;
    display: flex;
    align-items: center;
}

.logo-first {
    color: var(--dark-text);
}

.logo-second {
    color: var(--accent-lavender);
}

.main-menu {
    display: flex;
    align-items: center;
    height: 80px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item {
    height: 80px;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 5px;
}

.nav-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0 15px !important;
    transition: all 0.3s ease;
    position: relative;
    color: var(--dark-text);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 80px;
    border-bottom: 3px solid transparent;
}

.nav-icon {
    font-size: 1.1rem;
    margin-right: 10px;
    color: var(--accent-lavender);
    transition: all 0.3s ease;
}

.nav-text {
    display: block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent-lavender);
    background-color: rgba(210, 197, 232, 0.1);
    border-bottom: 3px solid var(--accent-lavender);
}

.nav-link:hover .nav-icon {
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--accent-lavender);
    background-color: rgba(210, 197, 232, 0.1);
    border-bottom: 3px solid var(--accent-lavender);
}

.nav-link.active .nav-icon {
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    align-items: center;
    height: 80px;
}

.search-form {
    position: relative;
}

.search-input {
    border-radius: 50px;
    border: 1px solid var(--border-color);
    padding: 8px 15px;
    width: 180px;
    transition: all 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(210, 197, 232, 0.25);
    border-color: var(--accent-lavender);
    width: 220px;
}

.btn-search {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--light-text);
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.btn-search:hover {
    color: var(--accent-lavender);
}

.btn-cart, .btn-account {
    background: none;
    border: none;
    padding: 8px;
    font-size: 1.2rem;
    color: var(--dark-text);
    position: relative;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-cart:hover, .btn-account:hover {
    color: var(--accent-lavender);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-lavender);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Responsive adjustments for the navigation */
@media (max-width: 991.98px) {
    .custom-nav {
        height: auto;
        padding: 15px 0;
    }
    
    .main-menu, .navbar-nav, .nav-item {
        height: auto;
    }
    
    .nav-link {
        height: auto;
        padding: 12px 15px !important;
        flex-direction: row;
        justify-content: flex-start;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .nav-icon {
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }
    
    .nav-link:hover, .nav-link.active {
        border-bottom: none;
        border-left: 3px solid var(--accent-lavender);
    }
    
    .navbar-brand {
        height: 60px;
    }
    
    .header-actions {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        margin-top: 15px;
    }
    
    .search-form {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .search-input, .search-input:focus {
        width: 100%;
    }
}

.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: var(--accent-lavender);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--dark-text);
}

.breadcrumb-item.active {
    color: var(--light-text);
}

/* Footer Styles */
.site-footer {
    background-color: white;
    color: var(--dark-text);
    box-shadow: 0 -2px 15px rgba(0,0,0,0.05);
    margin-top: 5rem;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    font-size: 1.8rem;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-lavender);
}

.footer-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.contact-item i {
    color: var(--accent-lavender);
    margin-right: 10px;
    font-size: 1rem;
    margin-top: 5px;
}

.contact-item p {
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(210, 197, 232, 0.2);
    color: var(--dark-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-lavender);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--accent-lavender);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-lavender);
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.opening-hours-card {
    background: linear-gradient(135deg, rgba(210, 197, 232, 0.2) 0%, rgba(255, 214, 178, 0.2) 100%);
    padding: 25px;
    border-radius: 10px;
    height: 100%;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.day {
    font-weight: 600;
}

.time {
    color: var(--accent-lavender);
    font-weight: 600;
}

.newsletter h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.newsletter-form .input-group {
    position: relative;
}

.newsletter-form input {
    border-radius: 50px;
    padding: 10px 15px;
    padding-right: 60px;
    border: 1px solid var(--border-color);
}

.btn-subscribe {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--accent-lavender);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 5px 15px;
    font-weight: 600;
    z-index: 10;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: var(--dark-text);
    color: white;
}

.footer-bottom {
    background-color: #f8f8f8;
    padding: 20px 0;
    margin-top: 40px;
}

.copyright {
    color: var(--light-text);
}

.payment-methods {
    font-size: 1.8rem;
}

.payment-methods i {
    margin-left: 10px;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: var(--accent-lavender);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    padding: 1rem 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 3px solid var(--accent-lavender);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-lavender);
    color: var(--accent-lavender);
    border-radius: 30px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--accent-lavender);
    color: white;
}

.btn-primary {
    background-color: var(--accent-pistachio);
    border: none;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-lemon);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: var(--dark-text);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .site-header .top-bar {
        text-align: center;
    }
    
    .contact-bar, .social-bar {
        display: flex;
        justify-content: center;
        margin-bottom: 5px;
    }
    
    .social-bar {
        margin-top: 5px;
    }
    
    .search-input, .search-input:focus {
        width: 100%;
    }
    
    .header-actions {
        margin-top: 10px;
        justify-content: center;
        width: 100%;
    }
    
    .navbar-brand {
        margin-right: auto;
    }
    
    .footer-title {
        margin-top: 20px;
    }
}
