:root {
    --color-bg: #F8F6F7;
    --color-accent: #C4A484;
    --color-sage: #A8B8A3;
    --color-rose: #E2D4D5;
    --color-sand: #E8D8CB;
    --color-mystic: #D4C4E8;
    --color-light: #FEFCFD;
    --color-shadow: rgba(196, 164, 132, 0.1);
    --gradient-primary: linear-gradient(135deg, #F8F6F7 0%, #FEFCFD 50%, #F0EDF0 100%);
    --gradient-accent: linear-gradient(135deg, #C4A484 0%, #D4C4E8 50%, #A8B8A3 100%);
    --gradient-mystic: linear-gradient(135deg, #E2D4D5 0%, #D4C4E8 50%, #E8D8CB 100%);
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    background: var(--gradient-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #4A4A4A;
    overflow-x: hidden;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Header Styles */
.site-header {
    margin-bottom: 0;
}

.navbar {
    background: rgba(248, 246, 247, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 164, 132, 0.15);
    padding: 1.5rem 0;
    box-shadow: 0 4px 30px rgba(196, 164, 132, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    position: relative;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-brand:hover::after {
    transform: scaleX(1);
}

/* Menu alignment */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.nav-menu .nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #555 !important;
    transition: all 0.4s ease;
    padding: 0.75rem 1rem !important;
    position: relative;
    border-radius: 25px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    min-width: 90px;
    white-space: nowrap;
    text-align: center;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mystic);
    border-radius: 25px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: var(--color-accent) !important;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Cart button styling */
.cart-button {
    position: relative;
    background: var(--gradient-accent);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 164, 132, 0.2);
    min-width: 60px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 164, 132, 0.3);
    color: white;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Hide total price, show only count */
.snipcart-total-price {
    display: none !important;
}

.search-box {
    position: relative;
    width: 280px;
    display: flex;
    align-items: center;
}

.search-box .form-control {
    border-radius: 25px;
    border: 2px solid transparent;
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(196, 164, 132, 0.1);
    width: 100%;
}

.search-box .form-control:focus {
    background: white;
    box-shadow: 0 8px 30px rgba(196, 164, 132, 0.2);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-search {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 1.1rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
}

.btn-search:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(196, 164, 132, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 4rem;
    overflow: hidden;
    min-height: 600px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 164, 132, 0.1) 0%, rgba(212, 196, 232, 0.1) 50%, rgba(168, 184, 163, 0.1) 100%);
    z-index: 1;
}

.carousel {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(196, 164, 132, 0.25);
    margin: 0 1rem;
    position: relative;
}

.carousel-item {
    position: relative;
    height: 600px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.85) contrast(1.2) saturate(1.1);
}

.carousel-caption {
    background: rgba(248, 246, 247, 0.95);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 3rem;
    margin: 3rem;
    border: 1px solid rgba(196, 164, 132, 0.2);
    box-shadow: 0 15px 50px rgba(196, 164, 132, 0.2);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: auto;
    max-width: none;
}

.caption-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(196, 164, 132, 0.3);
    animation: float 3s ease-in-out infinite;
}

.carousel-caption h1,
.carousel-caption h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--color-accent);
}

.carousel-caption .lead {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.caption-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #555;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--gradient-accent);
    border-color: var(--color-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 164, 132, 0.3);
}



/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    margin: auto 2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 1002;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(196, 164, 132, 0.3);
}

.carousel-control-prev,
.carousel-control-next {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1001;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.element-4 {
    top: 40%;
    right: 25%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
        opacity: 0.7;
    }
}

/* Buttons */
.btn {
    border: none;
    background: transparent;
    color: var(--color-accent);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 164, 132, 0.3);
}

.btn-accent {
    background: var(--gradient-accent);
    color: white;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(196, 164, 132, 0.2);
}

.btn-accent:hover {
    background: var(--gradient-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 164, 132, 0.4);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Cards */
.category-card,
.product-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(196, 164, 132, 0.15);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(196, 164, 132, 0.1);
    position: relative;
}

.category-card:hover,
.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(196, 164, 132, 0.25);
    border-color: var(--color-accent);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.category-card .card-img-top,
.product-card .card-img-top {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.category-card:hover .card-img-top,
.product-card:hover .card-img-top {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 164, 132, 0.2) 0%, rgba(212, 196, 232, 0.2) 50%, rgba(168, 184, 163, 0.2) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card:hover .card-overlay,
.product-card:hover .card-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: scale(0);
    transition: all 0.4s ease;
}

.category-card:hover .overlay-icon,
.product-card:hover .overlay-icon {
    transform: scale(1);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 4s ease-in-out infinite;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(196, 164, 132, 0.3);
    z-index: 2;
}

.product-card {
    position: relative;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.card-title a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-title a:hover {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Sections */
.categories-section,
.featured-products,
.products-section {
    padding: 4rem 0;
    position: relative;
}

.section-header {
    position: relative;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(196, 164, 132, 0.2);
    animation: float 4s ease-in-out infinite;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff !important;
    text-shadow: 0 2px 16px rgba(0,0,0,0.18), 0 1px 0 #bfa58a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.categories-section h2,
.featured-products h2,
.products-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-mystic);
    border-radius: 30px;
    margin: 4rem 0;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mystic" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(196,164,132,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23mystic)"/></svg>');
    opacity: 0.3;
}

.newsletter-section .container {
    position: relative;
    z-index: 2;
}

.newsletter-content {
    position: relative;
    z-index: 3;
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: float 4s ease-in-out infinite;
}

.newsletter-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff !important;
    text-shadow: 0 2px 16px rgba(0,0,0,0.18), 0 1px 0 #bfa58a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border-radius: 30px 0 0 30px;
    border: 2px solid transparent;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    background: white;
    border-color: var(--color-accent);
    box-shadow: 0 8px 25px rgba(196, 164, 132, 0.2);
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 1rem 2rem;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    border-top: 1px solid rgba(196, 164, 132, 0.15);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-accent);
}

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

.footer-description {
    color: #666;
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(196, 164, 132, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}



/* Responsive Design */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(248, 246, 247, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(196, 164, 132, 0.1);
    }
    
    .carousel-item {
        height: 450px;
}

    .carousel-caption {
        margin: 1rem;
        padding: 2rem;
        width: 90%;
        max-width: 500px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
}

    .carousel-caption .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
}

    .caption-buttons {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .search-box {
        width: 100%;
        margin-top: 1rem;
}
    
    /* Menu adjustments for tablets */
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-link {
        min-width: 80px;
        padding: 0.6rem 0.8rem !important;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 350px;
    }
    
    .carousel-caption {
        padding: 1.5rem;
        margin: 0.5rem;
        width: 95%;
        max-width: none;
        border-radius: 15px;
}

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }
    
    .carousel-caption .lead {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
}

    .caption-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }
    
    .caption-buttons .btn {
        width: 100%;
        max-width: 200px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    
    .newsletter-section {
        padding: 3rem 0;
        margin: 3rem 0;
    }
    
    .newsletter-section h2 {
    font-size: 2rem;
    }
    
    /* Mobile menu adjustments */
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .nav-menu .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        min-width: auto;
        justify-content: center;
        padding: 0.75rem 1rem !important;
    }
    
    /* Mobile cart button */
    .cart-button {
        min-width: 50px;
        min-height: 45px;
        padding: 0.6rem 1rem;
    }
    
    /* Mobile search box */
    .search-box {
        width: 100%;
        margin: 1rem 0;
}

    .search-box .form-control {
        font-size: 1rem;
        padding: 0.75rem 1rem 0.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 1.25rem;
        margin: 0.25rem;
        width: 98%;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
    font-size: 1.5rem;
        margin-bottom: 0.5rem;
}

    .carousel-caption .lead {
        font-size: 0.9rem;
    margin-bottom: 1rem;
}

    .caption-buttons .btn {
        max-width: 180px;
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Very small screens */
    .navbar-brand {
        font-size: 1.8rem;
    }
    
    .floating-elements {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
}
}

.category-card,
.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.category-card:nth-child(2),
.product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.category-card:nth-child(3),
.product-card:nth-child(3) {
    animation-delay: 0.2s;
}

.category-card:nth-child(4),
.product-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Mystical Elements */
.mystical-border {
    position: relative;
}

.mystical-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-accent);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mystical-border:hover::before {
    opacity: 1;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

.text-mystic {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Breadcrumb Enhancement */
.breadcrumb {
    background: transparent;
    padding: 1.5rem 0;
}

.breadcrumb-item a {
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(196, 164, 132, 0.1);
}

.breadcrumb-item a:hover {
    background: var(--gradient-accent);
    color: white;
    transform: translateY(-2px);
}

.breadcrumb-item.active {
    color: var(--color-sage);
    font-weight: 500;
}
