body {
    background-color: white;
}

:root {
    --accent: #B8312F;
    --accent-dark: #8B2222;
    --black: #1a1a1a;
    --dark: #333333;
    --gray: #666666;
    --light-gray: #999999;
    --border: #e5e5e5;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --success: #10b981;
    --error: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo img {
    height: 44px;
    width: auto;
    border-radius: 4px;
}
.nav-logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
}
.nav-logo-text span {
    color: var(--accent);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--accent);
}
.nav-cta {
    background: var(--accent);
    color: var(--bg-white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    transition: all 0.3s !important;
    font-weight: 500;
}
.nav-cta:hover {
    background: var(--accent-dark) !important;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--black);
}

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
    padding-top: 80px;
}
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}
.hero-text {
    color: var(--black);
}
.hero-brand {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero-motto {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--light-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-left: 30px;
    position: relative;
}
.hero-motto::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--light-gray);
}
.hero h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}
.hero h1 .highlight {
    color: var(--accent);
}
.hero p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--accent);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: var(--black);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-secondary:hover {
    border-color: var(--black);
}
.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.stat-item h3 {
    font-size: 2rem;
    color: var(--black);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}
.stat-item p {
    font-size: 0.85rem;
    color: var(--light-gray);
    margin-top: 0.3rem;
}

.section {
    padding: 6rem 2rem;
}
.section-header {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.section-header.center {
    text-align: center;
}
.section-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.section-header h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}
.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
}

.about {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.about-image .accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--black);
    color: var(--bg-white);
    padding: 1.2rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
}
.about-content h2 {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}
.about-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
}
.about-feature .icon {
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-feature .icon svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.offer-section {
    background: var(--bg-light);
}
.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.offer-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s;
}
.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--accent);
}
.offer-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.offer-card h4 {
    font-size: 1.05rem;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}
.offer-card p {
    color: var(--light-gray);
    font-size: 0.85rem;
}

.products {
    background: var(--bg-white);
}
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.product-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--border);
    transition: all 0.4s;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}
.product-card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-card-image img {
    transform: scale(1.03);
}
.product-card-image .tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--bg-white);
    padding: 0.35rem 0.9rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-card-body {
    padding: 2rem;
}
.product-card-body h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-family: 'Playfair Display', serif;
}
.product-card-body>p {
    color: var(--gray);
    margin-bottom: 1.2rem;
    font-size: 0.92rem;
    line-height: 1.7;
}
.product-subtitle {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    display: block;
}
.product-benefits,
.product-uses,
.product-nutrients {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}
.product-benefits li,
.product-uses li,
.product-nutrients li {
    padding: 0.35rem 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dark);
    font-size: 0.88rem;
    line-height: 1.5;
}
.product-benefits li svg,
.product-uses li svg,
.product-nutrients li svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}
.product-section-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1rem 0 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border);
}

.apparel-section {
    background: var(--bg-light);
}
.apparel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.apparel-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}
.apparel-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}
.apparel-features {
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
}
.apparel-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.2rem;
    background: var(--bg-white);
    border-radius: 4px;
    border-left: 3px solid var(--accent);
    transition: all 0.3s;
}
.apparel-feature:hover {
    background: #f0f0f0;
}
.apparel-feature .icon {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.apparel-feature .icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}
.apparel-feature span {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
}
.apparel-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.team {
    background: var(--bg-white);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.team-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}
.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--black);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bg-white);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}
.team-card h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.3rem;
    font-weight: 700;
}
.team-card .role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.team-card p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.6;
}

.export {
    background: var(--bg-light);
}
.export-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.export-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid transparent;
}
.export-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.export-flag {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.export-card h4 {
    font-size: 1.05rem;
    color: var(--black);
    margin-bottom: 0.3rem;
    font-weight: 700;
}
.export-card p {
    color: var(--light-gray);
    font-size: 0.82rem;
}

.contact {
    background: var(--bg-white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}
.contact-info h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}
.contact-info>p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.contact-details {
    display: grid;
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-item .icon {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item .icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}
.contact-item h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}
.contact-item p {
    color: var(--gray);
    font-size: 0.9rem;
}
.contact-item a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-item a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}
.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.contact-form h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}
.contact-form>p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.form-group label .required {
    color: var(--accent);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    transition: all 0.3s;
    background: var(--bg-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(184, 49, 47, 0.08);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error);
}
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: var(--success);
}
.error-message {
    color: var(--error);
    font-size: 0.78rem;
    margin-top: 0.3rem;
    display: none;
}
.error-message.show {
    display: block;
}
.form-group textarea {
    resize: vertical;
    min-height: 110px;
}
.form-submit {
    width: 100%;
    padding: 0.95rem;
    background: var(--accent);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.form-submit:hover:not(:disabled) {
    background: var(--accent-dark);
}
.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.form-submit .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--bg-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}
.form-submit.loading .spinner {
    display: block;
}
.form-submit.loading .btn-text {
    display: none;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}
.form-success.show {
    display: block;
}
.form-success svg {
    width: 60px;
    height: 60px;
    color: var(--success);
    margin-bottom: 1rem;
}
.form-success h4 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.form-success p {
    color: var(--gray);
}
.form-status {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    font-size: 0.88rem;
    display: none;
}
.form-status.show {
    display: block;
}
.form-status.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.form-status.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 2rem 2rem;
}
.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
    border-radius: 4px;
}
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer-brand .footer-motto {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent);
    font-size: 0.95rem;
    margin-top: 0.8rem;
}
.footer h5 {
    color: var(--bg-white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.6rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--accent);
}
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.footer-social {
    display: flex;
    gap: 0.8rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-decoration: none;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--accent);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.mobile-menu.active {
    display: flex;
}
.mobile-menu a {
    color: var(--black);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}
.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--black);
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero p {
        margin: 0 auto 2rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    .about-grid,
    .apparel-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .export-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .export-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .offer-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--black);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    background: var(--accent);
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}