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

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'styrene-a', 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: #fafafa;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background: white;
    color: #333;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin: 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.nav-list li {
    display: inline;
}

.nav-list a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    white-space: nowrap;
    font-weight: 500;
}

.nav-list a:hover {
    color: #000;
    background-color: #f0f0f0;
}

.nav-list a.active {
    color: #8B1538;
    background: linear-gradient(135deg, #8B153815, #8B153805);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 70px;
    min-height: calc(100vh - 80px);
    width: 100%;
    box-sizing: border-box;
}

.welcome-section {
    text-align: center;
    margin-top: 0;
    padding: 4.5rem 1rem 0;
}

.welcome-section h1 {
    font-family: 'styrene-b', 'Poppins', sans-serif;
    font-size: 3.5rem;
    background: linear-gradient(135deg, #8B1538, #C41E3A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    font-weight: 700;
}

.welcome-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.registration-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8B1538, #C41E3A);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(124, 58, 237, 0.3);
    min-width: 200px;
    text-align: center;
    touch-action: manipulation;
}

.registration-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(124, 58, 237, 0.4);
}

.registration-btn:active {
    transform: translateY(-1px);
}

.story-promo {
    margin: 2rem 0 1rem;
    padding: 0 1rem;
}

.story-promo-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 2.25rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff8f1, #fff2f5);
    border: 1px solid rgba(139, 21, 56, 0.12);
    box-shadow: 0 10px 28px rgba(139, 21, 56, 0.08);
    text-align: center;
}

.story-promo-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(139, 21, 56, 0.08);
    color: #8B1538;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.story-promo h2 {
    font-family: 'styrene-b', 'Poppins', sans-serif;
    font-size: 2rem;
    color: #8B1538;
    margin-bottom: 0.85rem;
    font-weight: 700;
}

.story-promo p {
    font-size: 1.05rem;
    color: #5e5e5e;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 1.4rem;
}

.story-promo-btn {
    display: inline-block;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    background: #8B1538;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 10px 18px rgba(139, 21, 56, 0.22);
}

.story-promo-btn:hover {
    transform: translateY(-2px);
    background: #a11b42;
    box-shadow: 0 14px 24px rgba(139, 21, 56, 0.26);
}

.catalog-preview {
    margin: 2rem 0 1rem;
    padding: 0 1rem;
}

.catalog-preview-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 18px;
    background: white;
    border: 1px solid #f0e6ea;
    box-shadow: 0 10px 28px rgba(139, 21, 56, 0.06);
    text-align: center;
}

.catalog-preview-inner h2 {
    font-family: 'styrene-b', 'Poppins', sans-serif;
    font-size: 2rem;
    color: #8B1538;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.catalog-preview-inner p {
    font-size: 1.05rem;
    color: #5e5e5e;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 1.5rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0 1.5rem;
    text-align: left;
}

.catalog-card {
    display: block;
    padding: 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    background: linear-gradient(135deg, #fff8f1, #fff2f5);
    border: 1px solid rgba(139, 21, 56, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(139, 21, 56, 0.12);
    border-color: rgba(139, 21, 56, 0.22);
}

.catalog-card-tag {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: rgba(139, 21, 56, 0.08);
    color: #8B1538;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.catalog-card h3 {
    font-family: 'styrene-b', 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #8B1538;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.catalog-card p {
    margin: 0;
    font-size: 0.98rem;
    color: #5e5e5e;
    line-height: 1.65;
}

.catalog-link {
    display: inline-block;
    margin-top: 0.25rem;
    color: #8B1538;
    font-weight: 700;
    text-decoration: none;
}

.catalog-link:hover {
    text-decoration: underline;
}

.story-cta-secondary {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
}

.story-cta-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

.site-page {
    padding: 2rem 0 4rem;
}

.page-shell {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero {
    padding: 4.5rem 0 2rem;
    text-align: center;
}

.page-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(139, 21, 56, 0.08);
    color: #8B1538;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-hero h1 {
    font-family: 'styrene-b', 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    color: #8B1538;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.1rem;
    color: #5e5e5e;
    max-width: 760px;
    margin: 0 auto 1.5rem;
    line-height: 1.75;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.secondary-btn {
    display: inline-block;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(139, 21, 56, 0.22);
    color: #8B1538;
    background: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.secondary-btn:hover {
    transform: translateY(-2px);
    background: #fff7f9;
    box-shadow: 0 8px 18px rgba(139, 21, 56, 0.08);
}

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

.content-card {
    background: white;
    border-radius: 18px;
    padding: 1.7rem;
    border: 1px solid #f0e6ea;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.content-card h2,
.content-card h3 {
    font-family: 'styrene-b', 'Poppins', sans-serif;
    color: #8B1538;
    margin-bottom: 0.85rem;
    font-weight: 700;
}

.content-card p {
    color: #5e5e5e;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.feature-list,
.faq-list {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.feature-list li,
.faq-list li {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: #faf7f8;
    color: #444;
    line-height: 1.65;
}

.note-box {
    margin-top: 1.5rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: #fff6f1;
    color: #7a4a2c;
    border: 1px solid rgba(122, 74, 44, 0.12);
    line-height: 1.7;
}

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

.related-card {
    display: block;
    padding: 1.2rem;
    border-radius: 14px;
    border: 1px solid #f0e6ea;
    text-decoration: none;
    color: #333;
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 21, 56, 0.08);
}

.related-card span {
    display: inline-block;
    margin-bottom: 0.6rem;
    color: #8B1538;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.related-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.related-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.55;
}

.cta-band {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #8B1538, #C41E3A);
    color: white;
    text-align: center;
    box-shadow: 0 12px 28px rgba(139, 21, 56, 0.18);
}

.cta-band h2 {
    font-family: 'styrene-b', 'Poppins', sans-serif;
    margin-bottom: 0.75rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.cta-band p {
    max-width: 760px;
    margin: 0 auto 1.4rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.cta-band .registration-btn {
    background: white;
    color: #8B1538;
    box-shadow: none;
}

.cta-band .registration-btn:hover {
    background: #f8efef;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

/* Story Page Styles */
.story-section {
    padding: 2rem 0;
    margin-top: 0;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-section h1 {
    font-family: 'styrene-b', 'Poppins', sans-serif;
    font-size: 3rem;
    background: linear-gradient(135deg, #8B1538, #C41E3A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.story-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.story-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.story-chapter {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f7f3ff, #fce4ec);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.story-chapter:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

.story-chapter h3 {
    font-family: 'styrene-b', 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #8B1538;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.story-chapter p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.story-chapter-image {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 1rem auto 0;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.story-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #8B1538, #C41E3A);
    border-radius: 16px;
    color: white;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.2);
}

.story-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.story-cta .registration-btn {
    background: white !important;
    color: #8B1538 !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid white;
}

.story-cta .registration-btn:hover {
    background: #f0f0f0 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Contact Section Styles */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff, #fafafa);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-section h2 {
    font-family: 'styrene-b', 'Poppins', sans-serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #8B1538, #C41E3A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #f0f0f0;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: #8B1538;
    text-decoration: none;
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
}

.contact-info {
    text-align: left;
    flex-grow: 1;
}

.contact-info h3 {
    font-family: 'styrene-b', 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* WhatsApp styling */
.contact-card.whatsapp .contact-icon {
    background: linear-gradient(135deg, #25D366, #1fa952);
    color: white;
}

.contact-card.whatsapp:hover {
    border-color: #25D366;
}

.contact-card.whatsapp .contact-info h3 {
    color: #25D366;
}

/* Facebook styling */
.contact-card.facebook .contact-icon {
    background: linear-gradient(135deg, #1877F2, #0a66c2);
    color: white;
}

.contact-card.facebook:hover {
    border-color: #1877F2;
}

.contact-card.facebook .contact-info h3 {
    color: #1877F2;
}

/* TikTok styling */
.contact-card.tiktok .contact-icon {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.contact-card.tiktok:hover {
    border-color: #000000;
}

.contact-card.tiktok .contact-info h3 {
    color: #000000;
}

/* Footer Styles */
.footer {
    background: #ffffff;
    color: #333;
    padding-top: 3rem;
    border-top: 1px solid #f0f0f0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'styrene-b', 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8B1538, #C41E3A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #8B1538, #C41E3A);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

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

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B1538;
}

.footer-register-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8B1538, #C41E3A);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.footer-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
    text-decoration: none;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #f0f0f0;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom-content p {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.footer-bottom-content p:last-child {
    margin-bottom: 0;
}

/* Products Page Styles */
.products-section {
    padding: 2rem 0;
}

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

.products-section h1 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.products-intro {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Category Selector Styles */
.category-selector {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-selector label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.category-selector select {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #007bff;
    border-radius: 8px;
    background-color: white;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.category-selector select:hover {
    border-color: #0056b3;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

.category-selector select:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Category Message Styles */
.category-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.category-message h2 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-message p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.product-category {
    margin-bottom: 4rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-category h2 {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 0.5rem;
    font-weight: 600;
    border-bottom: 3px solid #007bff;
    padding-bottom: 0.5rem;
}

.category-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

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

.product-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.product-card.featured {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-left: 4px solid white;
}

.product-card.featured h3 {
    color: white;
}

.product-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

/* Product Image Styles */
.product-image {
    margin-bottom: 1rem;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

.product-card.featured .product-image {
    background: rgba(255, 255, 255, 0.9);
}

.product-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.products-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 12px;
    color: white;
}

.products-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.products-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.products-cta .registration-btn {
    background-color: white;
    color: #007bff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.products-cta .registration-btn:hover {
    background-color: #f8f9fa;
    color: #0056b3;
    transform: translateY(-2px);
}

/* Responsive Design for Products */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-section h1 {
        font-size: 2rem;
    }
    
    .product-category h2 {
        font-size: 1.5rem;
    }
    
    .products-container {
        padding: 0 1rem;
    }
    
    .product-category {
        padding: 1.5rem;
    }
}

/* Enhanced Responsive Design for All Pages */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    nav {
        padding: 0 1rem;
    }
    
    main {
        padding: 1.5rem;
    }
    
    .welcome-section {
        margin-top: 0;
        padding-top: 3rem;
    }
    
    .story-container {
        padding: 0 1rem;
    }
    
    .products-container {
        padding: 0 1rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 0 1rem;
    }
    
    .nav-list {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-list a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Main content */
    main {
        padding: 1rem;
    }
    
    /* Welcome section */
    .welcome-section {
        margin-top: 0;
        padding-top: 2rem;
        text-align: center;
    }
    
    .welcome-section h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .welcome-section h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .welcome-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .registration-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Story page */
    .story-section h1 {
        font-size: 2rem;
    }
    
    .story-content {
        padding: 1.5rem;
    }
    
    .story-intro h2 {
        font-size: 1.3rem;
    }
    
    .story-chapter {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .story-chapter h3 {
        font-size: 1.1rem;
    }
    
    .story-cta {
        padding: 1.5rem;
    }
    
    .story-cta p {
        font-size: 1rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    /* Header and navigation */
    header {
        padding: 0.8rem 0;
    }
    
    nav {
        padding: 0 0.5rem;
    }
    
    .nav-list {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .nav-list a {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
        border-radius: 4px;
    }
    
    /* Main content */
    main {
        padding: 0.5rem;
    }
    
    /* Welcome section */
    .welcome-section {
        margin-top: 0;
        padding: 1.5rem 1rem 1rem;
    }
    
    .welcome-section h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .welcome-section h2 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .welcome-section p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .registration-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    /* Story page mobile */
    .story-section {
        padding: 1rem 0;
    }
    
    .story-container {
        padding: 0 0.5rem;
    }
    
    .story-section h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .story-content {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .story-intro {
        margin-bottom: 2rem;
    }
    
    .story-intro h2 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .story-intro p {
        font-size: 0.9rem;
    }
    
    .story-chapter {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .story-chapter h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .story-chapter p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .story-cta {
        padding: 1.2rem 0.8rem;
        margin-top: 2rem;
    }
    
    .story-cta p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .story-cta .registration-btn {
        width: 100%;
        max-width: none;
    }
    
    /* Contact section tablet */
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-options {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .contact-info h3 {
        font-size: 1.1rem;
    }
    
    .contact-info p {
        font-size: 0.85rem;
    }
    
    /* Product image tablet styles */
    .product-image img {
        height: 180px;
    }
    
    /* Products page mobile */
    .products-section {
        padding: 1rem 0;
    }
    
    .products-container {
        padding: 0 0.5rem;
    }
    
    .products-section h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .products-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    /* Category selector mobile */
    .category-selector {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    .category-selector label {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .category-selector select {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    /* Category message mobile */
    .category-message {
        padding: 2rem 1rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .category-message h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .category-message p {
        font-size: 0.9rem;
    }
    
    .product-category {
        margin-bottom: 2.5rem;
        padding: 1rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    .product-category h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .category-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .products-grid {
        gap: 1rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }
    
    .product-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Product image mobile styles */
    .product-image {
        margin-bottom: 0.8rem;
    }
    
    .product-image img {
        height: 150px;
    }
    
    .products-cta {
        margin-top: 2.5rem;
        padding: 2rem 1rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    .products-cta h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .products-cta p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    /* Category selector tablet */
    .category-selector {
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .category-selector label {
        font-size: 1.1rem;
    }
    
    .category-selector select {
        max-width: 350px;
        font-size: 0.95rem;
    }
    
    /* Category message tablet */
    .category-message {
        padding: 2.5rem 1.5rem;
    }
    
    .category-message h2 {
        font-size: 1.3rem;
    }
    
    .category-message p {
        font-size: 1rem;
    }
    
    /* Footer tablet styles */
    .footer {
        padding-top: 2.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-register-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .products-cta .registration-btn {
        width: 100%;
        max-width: none;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Contact section mobile */
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-container {
        padding: 0 0.5rem;
    }
    
    .contact-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-section p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .contact-card {
        padding: 1.2rem;
        gap: 1rem;
        margin: 0 0.5rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-info h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-info p {
        font-size: 0.8rem;
        padding: 0;
    }
    
    /* Footer mobile styles */
    .footer {
        padding-top: 2rem;
    }
    
    .footer-container {
        padding: 0 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-social {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
    }
    
    .footer-social svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-register-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-bottom-content p {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .nav-list {
        gap: 0.3rem;
    }
    
    .nav-list a {
        padding: 0.2rem 0.4rem;
        font-size: 0.7rem;
    }
    
    .welcome-section h1 {
        font-size: 1.5rem;
    }
    
    .story-section h1,
    .products-section h1 {
        font-size: 1.5rem;
    }
    
    .product-category {
        padding: 0.8rem;
    }
    
    .story-content,
    .products-cta {
        padding: 0.8rem;
    }
}
