* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pharmacy-green: #2d8659;
    --pharmacy-green-light: #4a9d7a;
    --pharmacy-green-dark: #1f5d3f;
    --pharmacy-green-bright: #3ba372;
    --primary-color: #2d8659;
    --primary-dark: #1f5d3f;
    --primary-light: #4a9d7a;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-gradient: linear-gradient(135deg, #2d8659 0%, #3ba372 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* System dark mode will be handled by JavaScript applying dark-mode class */

/* Dark mode variables (manual override) */
body.dark-mode {
    --primary-color: #4a9d7a;
    --primary-dark: #2d8659;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: radial-gradient(circle at top center, var(--bg-secondary) 0%, var(--bg-primary) 45%);
    position: relative;
    transition: background 0.5s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Mobile optimizations */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Subtle noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 1;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="3.5" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 0.75rem 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 640px) {
    .navbar {
        padding: 1rem 0;
    }
}

body.dark-mode .navbar {
    background: rgba(17, 24, 39, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    z-index: 1001;
}

@media (min-width: 640px) {
    .nav-brand {
        font-size: 1.5rem;
    }
}

.nav-brand:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .nav-links {
        gap: 2rem;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 640px) {
    .nav-links a {
        font-size: 1rem;
        padding: 0;
    }
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2d8659 0%, #3ba372 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    text-align: center;
    padding: 5rem 1rem 3rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .hero {
        padding: 8rem 2rem 4rem;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
}

.welcome-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

@media (min-width: 640px) {
    .welcome-card {
        border-radius: 24px;
        padding: 3rem 2rem;
        margin-bottom: 3rem;
    }
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.25rem;
    opacity: 0.85;
}

.welcome-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #e0f5ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .welcome-name {
        font-size: 3.25rem;
        letter-spacing: -1px;
    }
}

.welcome-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
}

.release-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    width: 100%;
}

@media (min-width: 640px) {
    .release-info {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }
}

.release-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 640px) {
    .release-card {
        padding: 2rem;
    }
}

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

.release-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.release-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.release-card .date {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.release-card .phone {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 1rem;
}

.release-card .dimensions {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

.release-card .release-note {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
    font-style: italic;
}

.front-page-preview {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.front-page-preview .section-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.calendar-cover {
    max-width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
}

.calendar-cover-large {
    max-width: 100%;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.calendar-cover-large:hover {
    transform: scale(1.02);
}

@media (min-width: 640px) {
    .calendar-cover {
        max-width: 500px;
        padding: 2rem;
    }
    
    .calendar-cover-large {
        max-width: 600px;
        padding: 2.5rem;
    }
}

.cover-image-large {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cover-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.placeholder-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    padding: 2rem;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

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

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

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.benefit-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

body.dark-mode .benefit-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Order Section */
.order-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.05), rgba(74, 157, 122, 0.05));
}

body.dark-mode .order-section {
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.1), rgba(74, 157, 122, 0.1));
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
}

.order-content {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-color);
    text-align: center;
}

body.dark-mode .order-content {
    border-color: var(--primary-color);
}

.order-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.order-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.order-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .order-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.order-contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    text-align: left;
}

body.dark-mode .order-contact-item {
    background: rgba(255, 255, 255, 0.05);
}

.order-contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.order-contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.order-contact-value {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.order-contact-value-small {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.order-info-box {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-color);
}

body.dark-mode .order-info-box {
    background: rgba(45, 134, 89, 0.1);
}

.order-price-info,
.order-min-info {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.order-price-info strong,
.order-min-info strong {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.order-note-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.5rem;
}

.order-person {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 1rem;
}

.order-person strong {
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 3rem 0;
    background: var(--bg-primary);
}

@media (min-width: 640px) {
    .features {
        padding: 6rem 0;
    }
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
}

.feature-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 640px) {
    .feature-card {
        padding: 2.5rem;
    }
}

body.dark-mode .feature-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Archive Preview Section */
.archive-preview {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

@media (min-width: 640px) {
    .archive-preview {
        padding: 6rem 0;
    }
}

.archive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .archive-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
}

.archive-item {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.archive-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.archive-cover {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    max-height: 300px;
    object-fit: cover;
}

.archive-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 1rem;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: var(--primary-dark);
}

/* Page Hero (for separate pages) */
.page-hero {
    padding: 5rem 1rem 3rem;
    background: linear-gradient(135deg, #2d8659 0%, #3ba372 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    text-align: center;
    margin-top: 56px;
}

@media (min-width: 640px) {
    .page-hero {
        padding: 8rem 2rem 4rem;
        margin-top: 64px;
    }
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .page-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* About Page */
.about-page {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.about-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-3px);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.contact-info-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
    border-top: 4px solid var(--primary-color);
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

/* Archive Page */
.archive-page {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.archive-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .archive-grid-full {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
        margin-top: 3rem;
    }
}

.archive-item-full {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.archive-item-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.archive-cover-full {
    background: var(--bg-secondary);
    padding: 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-image-full {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 400px;
    object-fit: cover;
}

.archive-info {
    padding: 2rem;
}

.archive-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.archive-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Settings Page */
.settings-page {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.settings-content {
    max-width: 800px;
    margin: 0 auto;
}

.settings-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-mode .settings-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-mode .settings-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.settings-item-content h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.settings-item-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.theme-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.theme-toggle-btn:hover {
    transform: translateY(-2px) rotate(15deg);
    box-shadow: var(--shadow-lg);
}

.language-badge {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

body.dark-mode .footer {
    background: #000000;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
}

.footer-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Mobile-first: Hamburger menu always visible on mobile */
.hamburger {
    display: flex;
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

.nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 1rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body.dark-mode .nav-links {
    background: rgba(17, 24, 39, 0.98);
}

.nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

@media (min-width: 769px) {
    .nav-links {
        position: static;
        flex-direction: row;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        gap: 2rem;
        box-shadow: none;
        transform: none;
        opacity: 1;
        pointer-events: all;
        max-height: none;
        overflow-y: visible;
    }
}

/* Touch-friendly buttons and links */
button, .cta-button, a {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    .theme-toggle-btn,
    .hamburger {
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Shop Page Styles */
.shop-notice {
    padding: 2rem 0;
    background: var(--bg-primary);
}

.notice-card {
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.1), rgba(74, 157, 122, 0.1));
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
}

body.dark-mode .notice-card {
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.2), rgba(74, 157, 122, 0.2));
}

.notice-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.notice-card h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.notice-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.notice-card strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Shop Products Section */
.shop-products {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

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

.product-card {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

body.dark-mode .product-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(45, 134, 89, 0.2);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.product-image {
    width: 100%;
    height: 250px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

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

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-specs-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.spec-tag {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

body.dark-mode .spec-tag {
    background: rgba(255, 255, 255, 0.1);
}

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

.price-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.contact-form {
    max-width: 700px;
    margin: 2rem auto 0;
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-mode .contact-form {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

body.dark-mode .form-input,
body.dark-mode .form-textarea {
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-secondary);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    font-style: italic;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-primary);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}

.form-actions {
    margin-top: 2rem;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: rgba(45, 134, 89, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 2px solid #ef4444;
}

body.dark-mode .form-message.success {
    background: rgba(74, 157, 122, 0.2);
}

body.dark-mode .form-message.error {
    background: rgba(239, 68, 68, 0.2);
}

/* Mobile optimizations for form */
@media (max-width: 640px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .notice-card {
        flex-direction: column;
        text-align: center;
    }
    
    .product-image {
        height: 200px;
    }
}
