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

/* Smooth transitions for all interactive elements */
a, button, input, textarea, .feature, .product, .avatar img {
    transition: all 0.3s ease;
}

/* Animated gradient keyframes */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

:root {
    --color-primary: #76153C;
    --color-primary-hover: #C43979;
    --color-text: #2c2c2c;
    --color-text-light: #666666;
    --color-border: #e8e8e8;
    --color-bg-light: #fafafa;
    --color-white-text: #ffffff;
    --max-width: 1260px;
}

/* Section Dividers */
.section-divider-top {
    clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
    padding-top: 80px;
}

.section-divider-bottom {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
    padding-bottom: 80px;
}

.section-divider-diagonal {
    clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 100%);
    padding-top: 80px;
}

.section-divider-wave {
    clip-path: polygon(0 120px, 100% 150px, 100% 100%, 0 100%);
    padding-top: 150px;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

body {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background: #ffffff;
    font-size: 1.1rem;
}

h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.2;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4vw;
}

.top-nav {
    padding: 30px 0;
}

.nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.store-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.store-title .line1 {
    font-size: 3.2rem;
    text-transform: lowercase;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
}

.store-title .line2 {
    font-size: 3.2rem;
    text-transform: lowercase;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
}

.store-title .line3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300;
    letter-spacing: 4px;
    margin-top: 12px;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.nav-links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: border-bottom 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.nav-links a:hover {
    border-bottom-color: var(--color-primary-hover);
}

.language-dropdown {
    position: absolute;
    right: 4vw;
    bottom: 0;
}

.lang-toggle {
    background: none;
    border: 1px solid #f5f5f5;
    font-size: 0.85rem;
    color: var(--color-text-light);
    cursor: pointer;
    padding: 5px 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-toggle::after {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><path fill="currentColor" d="M 9.354 0.646 a 0.5 0.5 0 0 0 -0.708 0 L 5 4.293 L 1.354 0.646 a 0.5 0.5 0 0 0 -0.708 0.708 l 4 4 a 0.5 0.5 0 0 0 0.708 0 l 4 -4 a 0.5 0.5 0 0 0 0 -0.708 Z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.lang-toggle:hover {
    color: var(--color-text);
}

.lang-toggle:hover::after {
    opacity: 1;
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.language-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.lang-menu a:hover {
    background: var(--color-bg-light);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: 4vw;
    bottom: 0;
}

.burger-menu span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    visibility: hidden;
    transition: background 0.3s, visibility 0.3s;
}

.mobile-menu.active {
    visibility: visible;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: white;
    padding: 60px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.mobile-menu-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu-links a:nth-child(4) {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.mobile-menu-links a.lang-link.active {
    color: var(--color-primary-hover);
    font-weight: 600;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text);
    background: none;
    border: none;
}

.header-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 0 80px 0;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.page-title h1 {
    font-size: 2.6rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.header-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    transition: opacity 0.5s ease-in-out;
}

.header-image img.fade {
    opacity: 0;
}

.about-section {
    padding: 280px 0 80px 0;
    background: #f5f5f5;
    text-align: center;
    position: relative;
    margin-top: 0;
}

.avatar {
    margin-bottom: -330px;
    position: relative;
    z-index: 10;
    transform: translateY(-350px);
}

.avatar img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: contain;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
    background-color: rgba(118, 21, 60, 0.8);
}

.features-section {
    padding: 80px 0;
}

.features-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 280px;
    height: 280px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-width: 100%;
    height: auto;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.feature p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.store-description {
    position: relative;
    z-index: 1;
}

.store-description h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.store-description p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.product-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.product {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
}

.product:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.product-badge {
    display: inline-block;
    background: var(--color-primary-hover);
    color: var(--color-white-text);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.product h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.product-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.price-container {
    margin-bottom: 40px;
}

.price {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-text);
    font-family: Georgia, serif;
}

.price-note {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-top: 8px;
}

.buy-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    background-size: 200% 200%;
    color: var(--color-white-text);
    padding: 18px 60px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: gradientShift 3s ease infinite;
}

.buy-button:hover {
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.features {
    margin-top: 0;
    padding-top: 0;
}

.features ul {
    list-style: none;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.features li {
    padding: 12px 0;
    color: var(--color-text);
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-section {
    padding: 120px 0;
    background: #ffffff;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-image {
    overflow: hidden;
    border-radius: 8px 0 0 8px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-quote-panel {
    background: var(--color-primary);
    padding: 60px 50px;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.testimonial-quote-panel blockquote {
    margin: 0;
    padding: 0;
}

.testimonial-quote-panel q {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ffffff;
    font-style: italic;
    display: block;
    margin-bottom: 30px;
    quotes: """ """ "'" "'";
}

.testimonial-quote-panel q::before {
    content: open-quote;
}

.testimonial-quote-panel q::after {
    content: close-quote;
}

.testimonial-citation {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
}

.about-btn:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.contact-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-text h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.2rem;
    color: var(--color-text);
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-text p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--color-text);
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-button {
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    background-size: 200% 200%;
    color: var(--color-white-text);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    animation: gradientShift 3s ease infinite;
}

.submit-button:hover {
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-section {
    padding: 60px 0 40px;
    background: #f5f5f5;
}

footer {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
    text-align: left;
}

.footer-links h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: var(--color-text);
}

.footer-mission h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 15px;
    font-weight: 400;
}

.footer-mission p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
}

.social-links a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .container {
        padding: 0 6vw;
    }

    .top-nav {
        padding: 20px 0 10px 0;
    }

    .nav-content {
        gap: 0;
    }

    .store-title .line1,
    .store-title .line2 {
        font-size: 2.5rem;
    }

    .store-title .line3 {
        font-size: 1.0rem;
    }

    .nav-links {
        display: none;
    }

    .language-dropdown:not(.mobile) {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .avatar {
        margin-bottom: -120px;
        transform: translateY(-110px);
    }

    .avatar img {
        border-radius: 50%,
        /* width: 250px; */
        /* height: 250px; */
    }

    .about-section {
        padding-top: 250px;
    }

    .store-description {
        margin-top: 30px;
    }

    .header-section {
        min-height: auto;
        padding: 20px 0 60px 0;
        align-items: flex-start;
    }

    .header-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .page-title {
        text-align: center;
    }

    .page-title h1 {
        font-size: 2rem;
    }

    .header-image {
        order: -1;
        margin-top: 0;
    }

    .header-image img {
        max-height: 250px;
        display: block;
    }

    .about-section {
        padding: 60px 0;
    }

    .features-section {
        padding: 40px 0;
    }

    .features-section h2 {
        margin-bottom: 0;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 0;
        padding-top: 0;
    }

    .store-description h2 {
        font-size: 1.6rem;
    }

    .product-section {
        padding: 60px 0;
    }

    .product h2 {
        font-size: 1.8rem;
    }

    .price {
        font-size: 2.8rem;
    }

    .buy-button {
        padding: 16px 40px;
        font-size: 0.9rem;
        width: 100%;
    }

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-quote-panel {
        padding: 40px 30px;
    }

    .testimonial-quote-panel q {
        font-size: 1.2rem;
        line-height: 1.7;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-text {
        text-align: center;
    }

    .contact-text h2 {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .submit-button {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
}
