:root {
    --primary-color: #E6A0B4;
    --secondary-color: #FFB6C1;
    --background-color: #FFF5F6;
    --text-color: #4A4A4A;
    --gold-accent: #D4AF37;
}

body {
    background-color: var(--background-color);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.header {
    background: linear-gradient(to right, #FFF5F6, #FFE4E8);
    box-shadow: 0 2px 10px rgba(230, 160, 180, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-nav .nav-item {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    color: var(--gold-accent);
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 0.75rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.search-form {
    max-width: 400px;
    width: 100%;
}

.search-input {
    border-radius: 20px 0 0 20px;
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.9);
}

.search-input:focus {
    box-shadow: none;
    border-color: var(--gold-accent);
}

.btn-search {
    border-radius: 0 20px 20px 0;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
}

.btn-search:hover {
    background-color: var(--gold-accent);
    border-color: var(--gold-accent);
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn {
    background-color: var(--primary-color);
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    color: white;
    transition: all 0.3s ease;
}

.snipcart-checkout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 50px;
    justify-content: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 160, 180, 0.2);
}

.breadcrumb {
    background: transparent;
    padding: 0.5rem 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--gold-accent);
}

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

.footer {
    background: linear-gradient(to right, #FFF5F6, #FFE4E8);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-heading {
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

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

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

.footer a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer hr {
    border-color: var(--primary-color);
    opacity: 0.2;
}

.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 245, 246, 0.95);
    box-shadow: 0 -2px 10px rgba(230, 160, 180, 0.2);
    padding: 1rem 0;
    z-index: 1000;
}

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

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

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Hero Section & Carousel Styles */
.hero-section {
    position: relative;
    overflow: hidden;
}

.carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(230, 160, 180, 0.3);
    margin: 2rem 0;
}

.carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(1.2);
    transition: all 0.5s ease;
}

.carousel-item:hover img {
    filter: brightness(0.9) saturate(1.3);
    transform: scale(1.02);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 3rem 2rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.carousel-caption h1,
.carousel-caption h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.carousel-caption p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-caption .btn {
    background: linear-gradient(45deg, var(--primary-color), var(--gold-accent));
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(230, 160, 180, 0.4);
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(230, 160, 180, 0.6);
    background: linear-gradient(45deg, var(--gold-accent), var(--primary-color));
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
    background: linear-gradient(45deg, var(--primary-color), var(--gold-accent));
    border-color: var(--gold-accent);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(230, 160, 180, 0.6);
}

.carousel-indicators [data-bs-target]:hover {
    border-color: var(--gold-accent);
    transform: scale(1.1);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(230, 160, 180, 0.2);
    border-color: var(--gold-accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(230, 160, 180, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    filter: brightness(0) invert(1);
}

/* Glamorous overlay effects */
.carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(230, 160, 180, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(212, 175, 55, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.carousel::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(230, 160, 180, 0.05) 0%, 
        transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

/* Responsive Carousel Styles */
@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .carousel-caption .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel {
        margin: 1rem 0;
        border-radius: 15px;
    }
    
    .carousel-inner {
        border-radius: 15px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 350px;
    }
    
    .carousel-caption {
        padding: 2rem 1rem 1.5rem;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel-caption .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Categories Section Styles */
.categories-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF5F6 0%, #FFE4E8 100%);
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(230, 160, 180, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(230, 160, 180, 0.05) 0%, 
        transparent 50%, 
        rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(230, 160, 180, 0.3);
}

.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.category-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.category-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Featured Products Section */
.featured-products {
    background: linear-gradient(135deg, #fff 0%, #FFF5F6 100%);
}

.featured-products .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(230, 160, 180, 0.15);
    transition: all 0.3s ease;
}

.featured-products .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(230, 160, 180, 0.25);
}

.featured-products .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.featured-products .card-title a {
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    transition: color 0.3s ease;
}

.featured-products .card-title a:hover {
    color: var(--primary-color);
}

.featured-products .price {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Product page styles */
.product-image-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(230, 160, 180, 0.1);
    transition: all 0.3s ease;
}

.product-image-container:hover {
    box-shadow: 0 6px 20px rgba(230, 160, 180, 0.2);
}

.product-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}
/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #FFF5F6 0%, #FFE4E8 100%);
    padding: 4rem 0;
}

.contact-hero h1 {
    color: var(--text-color);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.contact-info .card {
    transition: transform 0.3s ease;
    border: none;
    background: linear-gradient(to bottom right, #fff, #FFF5F6);
    box-shadow: 0 4px 15px rgba(230, 160, 180, 0.1);
}

.contact-info .card:hover {
    transform: translateY(-5px);
}

.contact-info .card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info .card a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info .card a:hover {
    color: var(--primary-color);
}

.contact-form {
    background-color: #fff;
}

.contact-form .form-control {
    border-radius: 20px;
    border: 1px solid rgba(230, 160, 180, 0.2);
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(230, 160, 180, 0.25);
}

.contact-form .btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.accordion-button {
    background: linear-gradient(to right, #FFF5F6, #FFE4E8);
    border: none;
    color: var(--text-color);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
}

.accordion-body {
    background-color: #fff;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}
