/* ========================================
   Luminous Creations - Global Styles
   Pure CSS (no Tailwind, no external fonts)
   ======================================== */

/* CSS Variables */
:root {
    --sky-blue: #87CEEB;
    --soft-pink: #FFB6C1;
    --warm-orange: #FF8C42;
    --warm-yellow: #FFD93D;
    --cream: #FFF8E7;
    --dark-brown: #5D4037;
    --white: #FFFFFF;
    --light-pink: #FFE4E1;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force light mode */
html,
html.light {
    color-scheme: light;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #faf8f6;
    color: var(--dark-brown);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 100vh;
}

.container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* ── Animations ── */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(255, 182, 193, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 182, 193, 0.9), 0 0 50px rgba(255, 140, 66, 0.5);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.anim-float {
    animation: float 4s ease-in-out infinite;
}

.anim-bounce {
    animation: bounce 2s ease-in-out infinite;
    display: inline-block;
}

.anim-sparkle {
    animation: sparkle 2s ease-in-out infinite;
    display: inline-block;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #FFD93D 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {

    .anim-float,
    .anim-bounce,
    .anim-sparkle,
    .sparkle,
    .logo-img,
    .hero-image-wrap,
    .hero-image-glow,
    .about-image,
    .about-image-glow,
    .product-card-emoji,
    .sparkle-bounce,
    .sparkle-bounce-left,
    .sparkle-bounce-right,
    .sparkle-float,
    .sparkle-icon,
    .thankyou-emoji {
        animation: none !important;
    }

    .hero-title,
    .hero-subtitle,
    .hero-cta {
        animation: none !important;
        opacity: 1 !important;
    }
}

/* ── Section Common ── */
section {
    padding: 80px 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

section>*:not(.decorative-emoji):not(.sparkle) {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark-brown);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-pink), var(--warm-orange));
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--dark-brown);
}

.title-inner {
    position: relative;
}

.sparkle-bounce {
    position: absolute;
    top: -12px;
    right: -24px;
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.sparkle-bounce-left {
    position: absolute;
    top: -8px;
    left: -32px;
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.sparkle-bounce-right {
    position: absolute;
    top: -8px;
    right: -32px;
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.sparkle-float {
    position: absolute;
    bottom: -4px;
    left: -32px;
    font-size: 1.25rem;
    animation: sparkle 2s ease-in-out infinite;
}

.decorative-emoji {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
}

.top-right {
    top: 20px;
    right: 20px;
}

.top-left {
    top: 20px;
    left: 20px;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
}

.bottom-left {
    bottom: 20px;
    left: 20px;
}

.loading-state {
    text-align: center;
    padding: 4rem 1.25rem;
    color: var(--dark-brown);
    font-size: 1.25rem;
}

.error-state {
    text-align: center;
    padding: 2.5rem 1.25rem;
    background: rgba(255, 182, 193, 0.2);
    border-radius: 20px;
    color: var(--dark-brown);
    font-size: 1.125rem;
}

.empty-state-public {
    text-align: center;
    padding: 4rem 1.25rem;
    color: var(--dark-brown);
    font-size: 1.25rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* ── Header ── */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 0.875rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 182, 193, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-link {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-brown);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(255, 182, 193, 0.3));
}

.logo-text {
    position: relative;
}

.sparkle-icon {
    position: absolute;
    top: -4px;
    right: -8px;
    font-size: 1.125rem;
    animation: sparkle 2s ease-in-out infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--soft-pink), var(--warm-orange));
    border-radius: 999px;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--warm-orange);
    background: rgba(255, 182, 193, 0.15);
}

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

/* Language Toggle - inline in header */
.lang-toggle {
    display: flex;
    flex-direction: row;
    gap: 0;
    border: 1px solid rgba(255, 182, 193, 0.5);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.lang-btn {
    padding: 6px 8px;
    border: none;
    border-radius: 0;
    background: white;
    color: var(--dark-brown);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.lang-btn+.lang-btn {
    border-left: 1px solid rgba(255, 182, 193, 0.5);
}

.lang-btn.active {
    background: linear-gradient(to bottom, var(--soft-pink), var(--warm-orange));
    color: white;
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 182, 193, 0.15);
}

/* ── Hero Section ── */
.hero-section {
    text-align: center;
    padding: 100px 20px;
    width: 100%;
    background: linear-gradient(135deg, #5ba8c8, #6db8d4 40%, #7ec4db 60%, #5ba8c8);
    border: none;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), 0 0 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-title-inner {
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease;
    font-weight: 500;
}

.hero-image-wrap {
    max-width: 320px;
    margin: 2.5rem auto;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-cta {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(to bottom, #ffa94d, #ff8c42);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.2s ease;
    box-shadow:
        0 4px 12px rgba(255, 140, 66, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1.4s ease;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 24px rgba(255, 140, 66, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(to bottom, #ffb566, #ffa04d);
}

.hero-cta:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to bottom, #e87d30, #ff8c42);
}

.hero-cta-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ── About Section ── */
.about-section {
    background: var(--cream);
    padding: 80px 40px;
    border-top: 1px solid rgba(255, 182, 193, 0.2);
    border-bottom: 1px solid rgba(255, 182, 193, 0.2);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--dark-brown);
}

.about-text-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.15);
    border: 1px solid rgba(255, 182, 193, 0.3);
}

.about-image-wrap {
    text-align: center;
    position: relative;
}

.about-image-glow {
    display: none;
}

.about-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 182, 193, 0.3);
    border-radius: 16px;
    padding: 12px;
    background: white;
    box-shadow: 0 4px 16px rgba(255, 182, 193, 0.2);
}

/* ── Products Section ── */
.products-section {
    background: white;
    padding: 80px 40px;
    border-top: 1px solid rgba(255, 182, 193, 0.15);
    border-bottom: 1px solid rgba(255, 182, 193, 0.15);
    position: relative;
    overflow: hidden;
}

.products-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.product-card-link {
    background: linear-gradient(to bottom, #fff, var(--cream));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 182, 193, 0.4);
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 2px 8px rgba(255, 182, 193, 0.15);
}

.product-card-link:hover {
    transform: translateY(-6px);
    border-color: var(--warm-orange);
    box-shadow: 0 12px 32px rgba(255, 182, 193, 0.35);
}

.product-card-image {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    height: 192px;
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.2);
}

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

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

.product-card-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    height: 192px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 228, 225, 0.4), rgba(255, 248, 231, 0.4));
    border-radius: 12px;
    border: 2px dashed rgba(255, 182, 193, 0.4);
}

.product-card-title {
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.product-card-desc {
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.product-card-price {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--warm-orange);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    border: 2px solid rgba(255, 140, 66, 0.3);
}

/* ── Gallery Section ── */
.gallery-section {
    background: linear-gradient(to bottom, #fdf8f4, #fff8f0);
    padding: 80px 40px;
    border-top: 1px solid rgba(255, 182, 193, 0.15);
    border-bottom: 1px solid rgba(255, 182, 193, 0.15);
    position: relative;
    overflow: hidden;
}

.gallery-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 182, 193, 0.3);
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.15);
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: var(--warm-orange);
    box-shadow: 0 12px 32px rgba(255, 182, 193, 0.35);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(93, 64, 55, 0.7) 0%, rgba(93, 64, 55, 0.2) 40%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-caption {
    color: white;
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    max-height: 3.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ── Gallery Modal ── */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 64rem;
    width: 100%;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    color: white;
    font-size: 1.875rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    color: var(--warm-orange);
}

.gallery-modal {
    flex-direction: row;
}

.gallery-modal-image {
    flex-shrink: 0;
    width: 50%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-modal-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gallery-modal-caption {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 182, 193, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.comment-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--soft-pink), var(--warm-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.comment-body {
    flex: 1;
    min-width: 0;
}

.comment-author {
    font-weight: 600;
    color: var(--dark-brown);
    font-size: 0.875rem;
}

.comment-text {
    color: var(--dark-brown);
    font-size: 0.875rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
}

.comment-meta {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}

.comment-time {
    color: rgba(93, 64, 55, 0.5);
    font-size: 0.75rem;
}

.gallery-modal-comments {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-item {
    display: flex;
    gap: 0.75rem;
}

.comments-empty {
    text-align: center;
    padding: 2rem;
    color: rgba(93, 64, 55, 0.6);
}

.comments-loading {
    text-align: center;
    padding: 2rem;
    font-size: 1.5rem;
}

/* ── Contact Section ── */
.contact-section {
    background: var(--cream);
    padding: 80px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 182, 193, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-desc {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.contact-card {
    background: linear-gradient(to bottom, #fff, var(--light-pink));
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(255, 182, 193, 0.2);
    border: 1px solid rgba(255, 182, 193, 0.3);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 182, 193, 0.35);
    border-color: var(--warm-orange);
}

.contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, var(--soft-pink), var(--warm-orange));
    border-radius: 14px;
    color: white;
    box-shadow: 0 3px 8px rgba(255, 140, 66, 0.3);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.contact-card-title {
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.nostr-link {
    word-break: break-all;
    color: var(--dark-brown);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 182, 193, 0.5);
    transition: all 0.3s;
}

.nostr-link:hover {
    color: var(--warm-orange);
    text-decoration-color: var(--warm-orange);
}

/* ── Footer ── */
.site-footer {
    background: linear-gradient(135deg, var(--dark-brown), #6B4E3D, var(--dark-brown));
    color: white;
    text-align: center;
    padding: 3rem 1.25rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 182, 193, 0.3);
}

.footer-content {
    position: relative;
    z-index: 10;
}

.footer-text {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.footer-emojis {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* ── Blog Page ── */
.blog-page-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.25);
    border: 3px solid rgba(255, 182, 193, 0.4);
    transition: all 0.3s;
    overflow: hidden;
    max-width: 320px;
    width: 100%;
    background: linear-gradient(135deg, white, #fffbfb);
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 182, 193, 0.4);
    border-color: var(--soft-pink);
}

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

.blog-card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
    position: relative;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    pointer-events: none;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-header {
    padding: 18px 22px 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}

.blog-card-title {
    font-size: 1.4rem;
    line-height: 1.25;
    font-weight: 600;
    color: var(--dark-brown);
    transition: color 0.3s;
    flex: 1;
}

.blog-card:hover .blog-card-title {
    color: var(--warm-orange);
}

.blog-card-date {
    font-size: 0.8rem;
    white-space: nowrap;
    color: var(--warm-orange);
    font-weight: 500;
    padding: 4px 10px;
    background: rgba(255, 182, 193, 0.2);
    border-radius: 15px;
}

.blog-card-preview {
    padding: 0 22px 22px;
    color: var(--dark-brown);
    line-height: 1.6;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* ── Blog Article ── */
.blog-article {
    max-width: 900px;
    margin: 0 auto;
}

.blog-article-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding-bottom: 1.25rem;
    border-bottom: 3px solid rgba(255, 182, 193, 0.3);
}

.blog-article-title {
    font-size: 2.8rem;
    color: var(--dark-brown);
    flex: 1;
    min-width: 200px;
    line-height: 1.2;
}

.blog-article-date {
    color: var(--warm-orange);
    font-weight: 600;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background: rgba(255, 182, 193, 0.2);
    border-radius: 20px;
}

.blog-article-image {
    margin-bottom: 2rem;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.3);
    max-width: 256px;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid rgba(255, 182, 193, 0.3);
    transition: all 0.3s;
}

.blog-article-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 182, 193, 0.4);
}

.blog-article-image img {
    max-width: 256px;
    width: 100%;
    height: auto;
    display: block;
}

/* Prose styling for blog content */
.prose {
    color: var(--dark-brown);
    line-height: 1.75;
    font-size: 1.125rem;
}

.prose p {
    margin-bottom: 1.25rem;
}

.prose h1,
.prose h2,
.prose h3 {
    color: var(--dark-brown);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.prose h1 {
    font-size: 2.5rem;
}

.prose h2 {
    font-size: 2rem;
}

.prose h3 {
    font-size: 1.5rem;
}

.prose a {
    color: var(--warm-orange);
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 140, 66, 0.3);
    transition: all 0.3s;
}

.prose a:hover {
    color: var(--warm-yellow);
    border-color: var(--warm-yellow);
}

.prose code {
    background: rgba(255, 182, 193, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

.prose pre {
    background: rgba(255, 182, 193, 0.2);
    padding: 1.25rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.25rem 0;
}

.prose pre code {
    background: transparent;
    padding: 0;
}

.prose blockquote {
    border-left: 4px solid var(--soft-pink);
    padding-left: 1.25rem;
    margin: 1.25rem 0;
    font-style: italic;
}

.prose ul,
.prose ol {
    margin: 1.25rem 0;
    padding-left: 2rem;
}

.prose li {
    margin-bottom: 0.625rem;
}

.prose img {
    max-width: 256px;
    height: auto;
    display: block;
    margin: 1.25rem auto;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(255, 182, 193, 0.3);
    border: 3px solid rgba(255, 182, 193, 0.3);
}

/* ── Product Detail Page ── */
.product-page-section {
    padding: 40px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.product-article {
    max-width: 56rem;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--warm-orange);
}

.product-card {
    background: white;
    border-radius: 40px;
    padding: 2rem 3rem;
    box-shadow: 0 15px 50px rgba(255, 182, 193, 0.3);
    border: 4px solid rgba(255, 182, 193, 0.4);
}

.product-images {
    margin-bottom: 2rem;
}

.product-image-single {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.25);
}

.product-image-single img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.product-image-item {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.25);
}

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

.product-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 182, 193, 0.3);
}

.product-title {
    font-size: 3rem;
    color: var(--dark-brown);
    flex: 1;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warm-orange);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
    border: 2px solid rgba(255, 140, 66, 0.3);
    white-space: nowrap;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-tag {
    padding: 0.25rem 1rem;
    background: rgba(255, 182, 193, 0.2);
    color: var(--dark-brown);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-summary {
    font-size: 1.25rem;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.product-description {
    color: var(--dark-brown);
    line-height: 1.6;
    margin-bottom: 2rem;
    white-space: pre-wrap;
}

.product-shipping {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(255, 228, 225, 0.2), rgba(255, 248, 231, 0.4));
    border-radius: 25px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 182, 193, 0.4);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.shipping-icon {
    font-size: 1.5rem;
}

.product-shipping h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.product-shipping p {
    line-height: 1.6;
    margin: 0;
}

.product-location {
    margin-bottom: 1rem;
    color: var(--dark-brown);
}

.product-location span {
    font-weight: 600;
}

.product-status {
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-active {
    background: rgba(76, 175, 80, 0.2);
    color: #2e7d32;
}

.status-sold {
    background: rgba(255, 182, 193, 0.2);
    color: var(--dark-brown);
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 182, 193, 0.3);
    flex-wrap: wrap;
}

.btn-bitcoin,
.btn-etsy {
    flex: 1;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 30px;
    transition: all 0.3s;
    border: 3px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: white;
    min-width: 200px;
}

.btn-bitcoin {
    background: linear-gradient(135deg, var(--warm-orange), var(--warm-yellow), var(--warm-orange));
}

.btn-bitcoin:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.5);
}

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

.btn-etsy {
    background: linear-gradient(135deg, var(--soft-pink), var(--light-pink), var(--soft-pink));
}

.btn-etsy:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.5);
}

/* ── Payment Modal ── */
.payment-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.payment-modal-content {
    background: white;
    border-radius: 40px;
    padding: 2rem;
    max-width: 40rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 182, 193, 0.4);
    position: relative;
}

.payment-modal-content h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.invoice-box {
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.15), rgba(255, 140, 66, 0.08), rgba(255, 217, 61, 0.15));
    border-radius: 25px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 140, 66, 0.25);
    margin-bottom: 1.5rem;
    text-align: center;
}

.qr-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.qr-link:hover {
    transform: scale(1.03);
}

.qr-code {
    display: inline-block;
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 260px;
    width: 100%;
}

.qr-code svg {
    display: block;
    width: 100%;
    height: auto;
}

.qr-hint {
    font-size: 0.75rem;
    color: rgba(93, 64, 55, 0.5);
    margin: 0.5rem 0 1rem;
}

.invoice-text-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
}

.invoice-text {
    flex: 1;
    padding: 0.75rem 1rem;
    word-break: break-all;
    font-size: 0.7rem;
    font-family: monospace;
    color: var(--dark-brown);
    line-height: 1.4;
    text-align: left;
    max-height: 4.5rem;
    overflow-y: auto;
    display: block;
}

.btn-copy {
    background: var(--warm-orange);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.btn-copy:hover {
    background: var(--dark-brown);
}

.payment-form-group {
    margin-bottom: 1.5rem;
}

.payment-form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.payment-form-group input,
.payment-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 182, 193, 0.4);
    font-size: 1rem;
    color: var(--dark-brown);
}

.payment-form-group input:focus,
.payment-form-group textarea:focus {
    outline: none;
    border-color: var(--warm-orange);
}

.payment-status-box {
    border-radius: 25px;
    padding: 1rem;
    border: 2px solid;
    text-align: center;
    margin-bottom: 1rem;
}

.payment-status-pending {
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.2), rgba(255, 140, 66, 0.1), rgba(255, 217, 61, 0.2));
    border-color: rgba(255, 140, 66, 0.3);
}

.payment-status-paid {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05), rgba(76, 175, 80, 0.15));
    border-color: rgba(76, 175, 80, 0.5);
}

.btn-submit-order {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--warm-orange), var(--warm-yellow));
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-order:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.5);
}

.btn-submit-order:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Thank You Page ── */
.thankyou-card {
    background: linear-gradient(135deg, white, rgba(255, 228, 225, 0.3), rgba(255, 182, 193, 0.4));
    border-radius: 50px;
    padding: 3rem 4rem;
    box-shadow: 0 20px 60px rgba(255, 182, 193, 0.4);
    border: 4px solid rgba(255, 182, 193, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 56rem;
    margin: 0 auto;
}

.thankyou-emoji {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.thankyou-title {
    font-size: 3.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.thankyou-subtitle {
    font-size: 1.5rem;
    color: rgba(93, 64, 55, 0.9);
    margin-bottom: 2rem;
    font-weight: 600;
}

.thankyou-message {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(255, 182, 193, 0.4);
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.25);
    font-size: 1.125rem;
    line-height: 1.6;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thankyou-actions a {
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.thankyou-actions a:first-child {
    background: linear-gradient(135deg, var(--warm-orange), var(--warm-yellow), var(--warm-orange));
}

.thankyou-actions a:last-child {
    background: linear-gradient(135deg, var(--soft-pink), var(--light-pink), var(--soft-pink));
}

.thankyou-actions a:hover {
    transform: scale(1.05);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1.25rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .product-header {
        flex-direction: column;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .gallery-modal {
        flex-direction: column;
    }

    .gallery-modal-image {
        width: 100%;
        aspect-ratio: 1;
    }

    .gallery-image-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .blog-article-title {
        font-size: 2rem;
    }

    .lang-toggle {
        order: -1;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-bitcoin,
    .btn-etsy {
        min-width: unset;
    }
}

/* Admin body override */
.admin-body {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}