/* ===========================
   HEADER & NAVIGATION
   =========================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--color-border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.site-branding {
    flex-shrink: 0;
}

.site-branding .brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform var(--transition-base);
    white-space: nowrap;
}

.site-branding .brand-link:hover {
    transform: scale(1.02);
}

.site-branding .brand-link img {
    flex-shrink: 0;
}

.site-logo,
.custom-logo {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.site-identity {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-foreground);
    margin: 0;
    line-height: 1;
}

.site-description {
    font-size: var(--font-size-xs);
    color: var(--color-muted-foreground);
    margin: 0;
    line-height: 1.2;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-grow: 1;
    justify-content: flex-end;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    margin: 0;
}

.primary-menu a {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-foreground);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-cart {
    flex-shrink: 0;
}

.cart-label {
    white-space: nowrap;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background-color: var(--color-primary);
    color: var(--color-text-on-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    border-radius: 50%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .main-navigation {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .menu-toggle {
        display: block;
    }

    .primary-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding: 1rem 0;
    }

    .primary-menu.is-open {
        display: flex;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--color-background), rgba(255, 255, 255, 0.3));
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background-color: rgba(183, 25, 92, 0.1);
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    width: fit-content;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--color-foreground);
    margin: 0;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.hero-search-form {
    max-width: 600px;
}

.search-input-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted-foreground);
    pointer-events: none;
    z-index: 1;
    flex-shrink: 0;
}

.search-input {
    width: 100%;
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    font-size: var(--font-size-base);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    background-color: var(--color-card);
}

.search-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(183, 25, 92, 0.1);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-image {
    display: none;
}

@media (min-width: 1024px) {
    .hero-image {
        display: block;
        margin-left: 10%;
    }
}

.hero-img {
    width: 100%;
    max-width: 90%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* ===========================
   SECTIONS
   =========================== */
.featured-products-section,
.categories-section {
    padding: 3rem 0;
}

.featured-products-section {
    background-color: rgba(255, 255, 255, 0.3);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--color-muted-foreground);
    margin: 0;
}

/* ===========================
   PRODUCTS GRID
   =========================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.product-card {
    background-color: var(--color-card);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: rgba(183, 25, 92, 0.5);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-image {
    aspect-ratio: 2/3;
    overflow: hidden;
    background-color: var(--color-muted);
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.product-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-foreground);
    margin-bottom: 0.25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-base);
}

.product-card:hover .product-title {
    color: var(--color-primary);
}

.product-author {
    font-size: var(--font-size-xs);
    color: var(--color-muted-foreground);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.5rem;
}

.product-price {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-value {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    color: var(--color-foreground);
}

.star {
    color: var(--color-primary);
    font-size: var(--font-size-xs);
}

/* ===========================
   CATEGORIES GRID
   =========================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 100%;
    }
}

.category-card {
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-name {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-foreground);
    margin: 0;
    transition: color var(--transition-base);
}

.category-card:hover .category-name {
    color: var(--color-primary);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    border-top: 2px solid var(--color-border);
    background-color: rgba(255, 255, 255, 0.3);
}

.footer-main {
    padding: 3rem 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-widgets {
        grid-template-columns: repeat(3, 1fr);
    }
}

.widget-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-foreground);
    margin-bottom: 1rem;
}

.widget-text {
    font-size: var(--font-size-sm);
    color: var(--color-muted-foreground);
    line-height: 1.6;
}

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

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

.footer-links a {
    font-size: var(--font-size-sm);
    color: var(--color-muted-foreground);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
}

.site-info {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-muted-foreground);
}

/* ===========================
   RATING STARS
   =========================== */
.rating-stars {
    display: inline-flex;
    gap: 2px;
}

.rating-stars .star {
    font-size: 1rem;
}

.rating-stars .star.filled {
    color: var(--color-primary);
}

.rating-stars .star.half {
    color: var(--color-primary);
    opacity: 0.5;
}

.rating-stars .star.empty {
    color: var(--color-muted-foreground);
    opacity: 0.3;
}

/* ===========================
   POSTS & ARTICLES
   =========================== */
.post-article {
    background-color: var(--color-card);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    margin-bottom: 0.5rem;
}

.entry-title a {
    color: var(--color-foreground);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

.entry-meta {
    font-size: var(--font-size-sm);
    color: var(--color-muted-foreground);
}

.post-thumbnail {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    line-height: 1.8;
}

.entry-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

/* ===========================
   PAGINATION
   =========================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-foreground);
    background-color: var(--color-card);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition-base);
}

.page-numbers:hover,
.page-numbers.current {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-on-primary);
}

/* ===========================
   BREADCRUMBS
   =========================== */
.breadcrumbs {
    padding: 1rem 0;
    font-size: var(--font-size-sm);
    color: var(--color-muted-foreground);
}

.breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ===========================
   RESPONSIVE UTILITIES
   =========================== */
@media (max-width: 767px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: var(--font-size-xl);
    }

    .featured-products-section,
    .categories-section {
        padding: 2rem 0;
    }
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}
/* ===========================
   FAQ PAGE
   =========================== */
.ll-faq-page {
    min-height: 100vh;
    background-color: var(--color-background);
    padding: 3rem 0;
}

.ll-faq-container {
    max-width: 56rem;
    margin: 0 auto;
}

.ll-faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ll-faq-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 1rem;
}

.ll-faq-subtitle {
    font-size: 1.125rem;
    color: var(--color-muted-foreground);
    margin-bottom: 1.5rem;
}

.ll-faq-search-wrapper {
    max-width: 36rem;
    margin: 0 auto;
}

.ll-faq-search-inner {
    position: relative;
}

.ll-faq-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted-foreground);
    width: 1.25rem;
    height: 1.25rem;
}

.ll-faq-search-input {
    width: 100%;
    padding: 1.5rem 1rem 1.5rem 3rem;
    font-size: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 9999px;
    background-color: var(--color-card);
    transition: all 0.2s ease;
}

.ll-faq-search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(183, 25, 92, 0.1);
}

.ll-faq-content-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.ll-faq-accordion {
    display: block;
}

.ll-faq-item {
    border-bottom: 1px solid var(--color-border);
}

.ll-faq-item:last-child {
    border-bottom: none;
}

.ll-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.ll-faq-trigger:hover {
    color: var(--color-primary);
}

.ll-faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: inherit;
}

.ll-faq-icon {
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s ease;
}

.ll-faq-trigger[aria-expanded="true"] .ll-faq-icon {
    transform: rotate(180deg);
}

.ll-faq-content {
    display: none;
    padding-bottom: 1.5rem;
}

.ll-faq-answer {
    color: var(--color-muted-foreground);
    line-height: 1.6;
}

.ll-faq-answer ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.ll-faq-answer li {
    margin: 0.25rem 0;
}

.ll-faq-no-results {
    text-align: center;
    padding: 3rem;
}

.ll-faq-no-results-icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-muted-foreground);
    margin: 0 auto 1rem;
}

.ll-faq-no-results-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
}

.ll-faq-no-results-text {
    color: var(--color-muted-foreground);
}

.ll-faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.ll-faq-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 1rem;
}

.ll-faq-cta-text {
    color: var(--color-muted-foreground);
    margin-bottom: 1.5rem;
}

.ll-faq-cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.ll-faq-cta-button:hover {
    background-color: #9a1550;
}

/* ===========================
   MY LIBRARY PAGE
   =========================== */
.ll-library-page {
    min-height: 100vh;
    background-color: #f5f5f5;
    padding: 3rem 0;
}

.ll-library-header {
    margin-bottom: 2rem;
}

.ll-library-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.ll-library-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
}

.ll-library-empty {
    background: white;
    border: none;
    border-radius: 1rem;
    padding: 5rem 3rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ll-library-empty-icon {
    width: 5rem;
    height: 5rem;
    color: #6b7280;
    margin: 0 auto 2rem;
    stroke-width: 1.5;
}

.ll-library-empty-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.ll-library-empty-text {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ll-library-empty-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.ll-library-empty-button:hover {
    background-color: #9a1550;
}

.ll-library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.ll-library-card {
    background: var(--color-card);
    border: 2px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ll-library-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(183, 25, 92, 0.5);
}

.ll-library-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ll-library-card-image {
    aspect-ratio: 2/3;
    overflow: hidden;
    background: var(--color-muted);
    position: relative;
}

.ll-library-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ll-library-card:hover .ll-library-card-image img {
    transform: scale(1.05);
}

.ll-library-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    color: var(--color-muted-foreground);
}

.ll-library-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ll-library-card:hover .ll-library-card-overlay {
    opacity: 1;
}

.ll-library-read-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    color: var(--color-foreground);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.ll-library-read-button:hover {
    transform: scale(1.05);
}

.ll-library-card-content {
    padding: 1rem;
}

.ll-library-card-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.ll-library-card:hover .ll-library-card-title {
    color: var(--color-primary);
}

.ll-library-card-author {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    margin-bottom: 0.75rem;
}

.ll-library-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
}

.ll-library-card-badge {
    padding: 0.25rem 0.5rem;
    background: var(--color-muted);
    border-radius: 0.25rem;
    font-weight: 500;
}

.ll-library-card-date {
    color: var(--color-muted-foreground);
}

/* ===========================
   CART PAGE
   =========================== */
.ll-cart-page {
    min-height: 100vh;
    background-color: #f5f5f5;
    padding: 3rem 0;
}

.ll-cart-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
}

.ll-cart-empty {
    background: white;
    border: none;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ll-cart-empty-icon {
    width: 4rem;
    height: 4rem;
    color: var(--color-muted-foreground);
    margin: 0 auto 1rem;
}

.ll-cart-empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
}

.ll-cart-empty-text {
    color: var(--color-muted-foreground);
    margin-bottom: 1.5rem;
}

.ll-cart-empty-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.ll-cart-empty-button:hover {
    background-color: #9a1550;
}

.ll-cart-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .ll-cart-grid {
        grid-template-columns: 2fr 1fr;
        gap: 2.5rem;
    }
}

.ll-cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ll-cart-item {
    background: white;
    border: none;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.ll-cart-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ll-cart-item-image {
    width: 120px;
    height: 160px;
    flex-shrink: 0;
    background: #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.ll-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ll-cart-item-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ll-cart-item-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.ll-cart-item-title:hover {
    color: var(--color-primary);
}

.ll-cart-item-author {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.ll-cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: nowrap;
    margin-top: auto;
}

.ll-cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ll-qty-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
}

.ll-qty-btn:hover:not(:disabled) {
    border-color: #d1d5db;
    background: #f9fafb;
}

.ll-qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ll-qty-input {
    width: 3rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    background: transparent;
    color: #1a1a1a;
}

.ll-cart-item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-left: auto;
}

.ll-cart-item-remove {
    color: var(--color-primary);
    transition: opacity 0.2s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ll-cart-item-remove:hover {
    opacity: 0.7;
}

.ll-cart-summary {
    position: relative;
}

.ll-cart-summary-sticky {
    position: sticky;
    top: 6rem;
    background: white;
    border: none;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ll-cart-summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.ll-cart-summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 1.5rem 0;
}

.ll-cart-summary-totals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ll-cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a1a;
    font-size: 1rem;
}

.ll-cart-summary-row > span:first-child {
    color: #1a1a1a;
}

.ll-cart-summary-row > span:last-child {
    font-weight: 500;
    color: #1a1a1a;
}

.ll-cart-summary-row.ll-cart-tax-row,
.ll-cart-summary-row.ll-cart-tax-row > span {
    color: #9ca3af !important;
}

.ll-cart-summary-discount {
    color: var(--color-primary);
}

.ll-cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.ll-cart-summary-total-label {
    color: #1a1a1a;
}

.ll-cart-summary-total-amount {
    color: var(--color-primary);
    font-size: 1.75rem;
}

.ll-cart-summary-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ll-cart-checkout-button,
.ll-cart-continue-button {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    border: none;
}

.ll-cart-checkout-button {
    background-color: var(--color-primary);
    color: white;
}

.ll-cart-checkout-button:hover {
    background-color: #9a1550;
}

.ll-cart-continue-button {
    background-color: white;
    color: #1a1a1a;
    border: 1px solid #e5e7eb;
}

.ll-cart-continue-button:hover {
    background-color: #f9fafb;
}

/* ===========================
   AUTH GATE
   =========================== */
.ll-auth-gate {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: var(--color-background);
}

.ll-auth-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    max-width: 28rem;
    width: 100%;
}

.ll-auth-icon {
    width: 4rem;
    height: 4rem;
    color: var(--color-muted-foreground);
    margin: 0 auto 1rem;
}

.ll-auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
}

.ll-auth-text {
    color: var(--color-muted-foreground);
    margin-bottom: 1.5rem;
}

.ll-auth-button {
    display: inline-block;
    width: 100%;
    padding: 0.75rem 2rem;
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.ll-auth-button:hover {
    background-color: #9a1550;
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */
@media (max-width: 768px) {
    .ll-faq-title {
        font-size: 1.875rem;
    }

    .ll-library-page {
        padding: 2rem 0;
    }

    .ll-library-title {
        font-size: 2rem;
    }

    .ll-library-subtitle {
        font-size: 1rem;
    }

    .ll-library-empty {
        padding: 3rem 2rem;
    }

    .ll-library-empty-icon {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1.5rem;
    }

    .ll-library-empty-title {
        font-size: 1.5rem;
    }

    .ll-library-empty-text {
        font-size: 1rem;
    }

    .ll-library-empty-button {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }

    .ll-library-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .ll-cart-title {
        font-size: 2rem;
    }

    .ll-cart-item {
        flex-direction: column;
        padding: 1.5rem;
    }

    .ll-cart-item-image {
        width: 100%;
        height: auto;
        aspect-ratio: 2/3;
        max-width: 200px;
        margin: 0 auto;
    }

    .ll-cart-item-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ll-cart-item-quantity {
        order: 1;
        flex: 1 1 auto;
    }

    .ll-cart-item-price {
        order: 2;
        margin-left: 0;
        flex: 1 1 auto;
    }

    .ll-cart-item-remove {
        order: 3;
    }

    .ll-cart-summary-sticky {
        position: relative;
        top: 0;
    }
}
/* ===========================
   SHOP PAGE / BROWSE
   =========================== */
.ll-shop-page {
    min-height: 100vh;
    background-color: #f5f5f5;
    padding: 3rem 0;
}

.ll-shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .ll-shop-grid {
        grid-template-columns: 300px 1fr;
    }
}

/* Filters Sidebar */
.ll-shop-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ll-shop-filters {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.ll-shop-filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.ll-shop-filters-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin: 0;
}

.ll-shop-filters-clear {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ll-shop-filters-clear:hover {
    color: var(--color-primary);
}

.ll-shop-filters-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ll-shop-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ll-shop-filter-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
}

.ll-shop-search-wrapper {
    position: relative;
}

.ll-shop-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted-foreground);
}

.ll-shop-search-input {
    width: 100%;
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    font-size: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    background: var(--color-background);
    transition: all 0.2s ease;
}

.ll-shop-search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(183, 25, 92, 0.1);
}

.ll-shop-filter-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 0.375rem;
    background: var(--color-background);
    cursor: pointer;
    transition: all 0.2s ease;
}

.ll-shop-filter-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(183, 25, 92, 0.1);
}

.ll-shop-filters-apply {
    padding: 0.75rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.ll-shop-filters-apply:hover {
    background-color: #9a1550;
}

/* Shop Header */
.ll-shop-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ll-shop-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ll-shop-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin: 0 0 0.5rem 0;
}

/* Platform Containers */
.ll-shop-platforms {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .ll-shop-platforms {
        grid-template-columns: 1fr 1fr;
    }
}

.ll-platform-card {
    background: var(--color-card);
    border-radius: 0.75rem;
    padding: 1rem;
}

.ll-platform-primary {
    border: 2px solid rgba(183, 25, 92, 0.2);
}

.ll-platform-secondary {
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.ll-platform-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.ll-platform-logo {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
}

.ll-platform-logo-wide {
    height: 48px;
    width: auto;
}

.ll-platform-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.ll-platform-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ll-platform-list li {
    font-size: 0.75rem;
    color: var(--color-foreground);
    padding-left: 1rem;
    position: relative;
}

.ll-platform-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.ll-platform-list-blue li::before {
    color: #3b82f6;
}

/* Hashtags */
.ll-shop-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ll-shop-hashtag {
    padding: 0.375rem 1rem;
    background: rgba(183, 25, 92, 0.1);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
}

.ll-shop-count {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

/* Product Grid */
.ll-shop-products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .ll-shop-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .ll-shop-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ll-product-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.ll-product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ll-product-image {
    height: 12rem;
    overflow: hidden;
    background: var(--color-muted);
    position: relative;
}

.ll-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ll-product-card:hover .ll-product-image img {
    transform: scale(1.05);
}

.ll-product-content {
    padding: 1rem;
}

.ll-product-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin: 0 0 0.25rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ll-product-author {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin: 0 0 0.5rem 0;
}

.ll-product-description {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    margin: 0 0 0.75rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ll-product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.ll-product-rating svg {
    color: #facc15;
}

.ll-product-rating-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
}

.ll-product-rating-count {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
}

.ll-product-cart-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.ll-product-checkbox {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.ll-product-checkbox-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
    cursor: pointer;
}

.ll-product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.5rem 0;
}

.ll-product-view-more {
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    color: var(--color-muted-foreground);
    font-size: 0.75rem;
    cursor: pointer;
    transition: color 0.2s ease;
    text-align: center;
}

.ll-product-view-more:hover {
    color: var(--color-primary);
}

/* Empty State */
.ll-shop-empty {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 3rem;
    text-align: center;
}

.ll-shop-empty-icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-muted-foreground);
    margin: 0 auto 1rem;
}

.ll-shop-empty-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin: 0 0 0.5rem 0;
}

.ll-shop-empty-text {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin: 0;
}

/* ===========================
   PRODUCT MODAL / OVERLAY
   =========================== */
.ll-product-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.ll-product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.ll-product-modal-content {
    position: relative;
    background: var(--color-card);
    border-radius: 1rem;
    max-width: 56rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ll-product-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-muted);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease;
    z-index: 10;
}

.ll-product-modal-close:hover {
    background: var(--color-border);
}

.ll-product-modal-loading {
    text-align: center;
    padding: 3rem;
    color: var(--color-muted-foreground);
}

.ll-product-modal-header {
    margin-bottom: 1.5rem;
}

.ll-product-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.ll-product-modal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .ll-product-modal-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ll-product-modal-image {
    width: 100%;
}

.ll-product-modal-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

.ll-product-modal-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ll-product-modal-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ll-product-modal-field-label {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin: 0;
}

.ll-product-modal-field-value {
    font-weight: 500;
    color: var(--color-foreground);
    margin: 0;
}

.ll-product-modal-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ll-product-modal-rating svg {
    color: #facc15;
}

.ll-product-modal-rating-value {
    font-weight: 600;
    color: var(--color-foreground);
}

.ll-product-modal-rating-count {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.ll-product-modal-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-foreground);
    margin: 0;
}

.ll-product-modal-purchase {
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ll-product-modal-price {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.ll-product-modal-cart-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ll-product-modal-close-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--color-foreground);
    cursor: pointer;
    transition: all 0.2s ease;
}

.ll-product-modal-close-btn:hover {
    background: var(--color-muted);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .ll-shop-grid {
        grid-template-columns: 1fr;
    }

    .ll-shop-sidebar {
        order: 1;
    }

    .ll-shop-main {
        order: 2;
    }
}

@media (max-width: 768px) {
    .ll-shop-title {
        font-size: 1.5rem;
    }

    .ll-platform-list li {
        font-size: 0.7rem;
    }

    .ll-product-modal-content {
        padding: 1.5rem;
    }

    .ll-product-modal-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   PAGE TEMPLATE (Gutenberg Support)
   =========================== */
.page-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.page-article {
    background: var(--color-card);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .page-content-wrapper {
        padding: 2rem 1rem;
    }

    .page-article {
        padding: 2rem 1.5rem;
    }
}

.entry-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .entry-title {
        font-size: 2rem;
    }
}

.entry-content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-foreground);
}

.entry-content > * + * {
    margin-top: 1.5rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-foreground);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content h1 { font-size: 2.25rem; }
.entry-content h2 { font-size: 1.875rem; }
.entry-content h3 { font-size: 1.5rem; }
.entry-content h4 { font-size: 1.25rem; }
.entry-content h5 { font-size: 1.125rem; }
.entry-content h6 { font-size: 1rem; }

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.entry-content a:hover {
    color: #9a1550;
}

.entry-content ul,
.entry-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-muted-foreground);
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.entry-content figure {
    margin: 2rem 0;
}

.entry-content figcaption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    text-align: center;
}

.entry-content pre {
    background: var(--color-muted);
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.entry-content code {
    background: var(--color-muted);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
}

.entry-content pre code {
    background: none;
    padding: 0;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.entry-content th,
.entry-content td {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    text-align: left;
}

.entry-content th {
    background: var(--color-muted);
    font-weight: 600;
}

.page-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    font-weight: 600;
}

.entry-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.edit-link a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.edit-link a:hover {
    color: #9a1550;
    text-decoration: underline;
}

/* Gutenberg Block Styles */
.wp-block-image {
    margin: 2rem 0;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.wp-block-image.alignleft {
    margin-right: 2rem;
}

.wp-block-image.alignright {
    margin-left: 2rem;
}

.wp-block-button__link {
    background-color: var(--color-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.wp-block-button__link:hover {
    background-color: #9a1550;
}

.wp-block-quote {
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

.wp-block-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.wp-block-pullquote {
    border-top: 4px solid var(--color-primary);
    border-bottom: 4px solid var(--color-primary);
    padding: 2rem 0;
    margin: 2rem 0;
    text-align: center;
}

.wp-block-separator {
    border: none;
    border-top: 2px solid var(--color-border);
    margin: 2rem 0;
}

.wp-block-code {
    background: var(--color-muted);
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
}

.wp-block-table {
    margin: 2rem 0;
}

.wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.alignwide {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ===========================
   FEATURE CARDS PATTERN
   =========================== */
.feature-card-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.feature-card-shadow:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}
