/* Base Site Styles */
body { font-family: 'Poppins', sans-serif; background-color: #F9F9F9; color: #1a1a1a; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
.bg-primary { background-color: #1a1a1a; }
.text-primary { color: #1a1a1a; }
.bg-accent { background-color: #E57A44; }
.text-accent { color: #E57A44; }
.border-accent { border-color: #E57A44; }
.ring-accent { --tw-ring-color: #E57A44; }
.text-muted { color: #555555; }
.nav-link { @apply text-sm font-medium uppercase tracking-wider text-gray-700 hover:text-accent transition-colors duration-300; }
#cart-sidebar { transition: transform 0.3s ease-in-out; }
#cart-overlay { transition: opacity 0.3s ease-in-out; }
#mobile-menu { transition: transform 0.3s ease-in-out; }
body.mobile-menu-active { overflow: hidden; }

/* Custom Swiper Styles */
.featured-swiper .swiper-button-next, .featured-swiper .swiper-button-prev,
.journal-swiper .swiper-button-next, .journal-swiper .swiper-button-prev {
    color: #1a1a1a; background-color: rgba(255, 255, 255, 0.8); backdrop-filter: blur(4px);
    border-radius: 9999px; width: 44px; height: 44px; transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.featured-swiper .swiper-button-next:hover, .featured-swiper .swiper-button-prev:hover,
.journal-swiper .swiper-button-next:hover, .journal-swiper .swiper-button-prev:hover {
    background-color: #1a1a1a; color: #ffffff;
}
.featured-swiper .swiper-button-next::after, .featured-swiper .swiper-button-prev::after,
.journal-swiper .swiper-button-next::after, .journal-swiper .swiper-button-prev::after {
    font-size: 20px; font-weight: bold;
}
.featured-swiper .swiper-pagination-bullet, .journal-swiper .swiper-pagination-bullet {
    background: #555555; opacity: 0.8; width: 10px; height: 10px;
}
.featured-swiper .swiper-pagination-bullet-active, .journal-swiper .swiper-pagination-bullet-active {
    background-color: #E57A44;
}

/* New Divider Styles */
.divider-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
}

.divider-overlay-container {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: white;
    overflow: hidden; /* Ensures rounded corners clip the pseudo-element */
}

.divider-overlay-color {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.divider-overlay-text {
    position: relative;
    z-index: 2;
}

.prose img {
    display: inline-block;
    margin: 0 0.5rem;
}

#contact-section form input,
#contact-section form textarea {
    transition: all 0.3s ease-in-out;
}

#contact-section form input:focus,
#contact-section form textarea:focus {
    box-shadow: 0 0 0 3px rgba(229, 122, 68, 0.3);
    border-color: #E57A44;
}

/* Cart Icon Animation */
@keyframes jiggle {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(0.9) rotate(-3deg); }
  50% { transform: scale(1.1) rotate(3deg); }
  75% { transform: scale(0.95) rotate(-2deg); }
}

.cart-jiggle {
    animation: jiggle 0.6s ease-in-out;
}

/* Responsive Video Embed */
.prose iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* --- UPDATED: Sidebar Navigation Styles --- */
.sidebar-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
    font-weight: 500;
    position: relative;
    border-left: 3px solid transparent;
    color: #555555; /* Muted text color by default */
}
.sidebar-nav-link:hover {
    background-color: #f9f9f9;
    color: #E57A44; /* Accent color on hover */
    border-left-color: #E57A44;
    transform: translateX(4px);
}
.sidebar-nav-link.active {
    background-color: #fef2e8; /* Lighter accent color */
    color: #E57A44; /* Accent color */
    font-weight: 600;
    border-left-color: #E57A44;
}