/* ---------- GLOBAL RESET ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefcf5;
    color: #1e2f2b;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1b4d3e;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #2d6a4f;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #2d4a3b;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #4b6b5e;
    max-width: 680px;
    margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: #2d6a4f;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.btn-primary:hover {
    background-color: #1f543d;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #2d6a4f;
    color: #2d6a4f;
}

.btn-secondary:hover {
    background-color: #e9f5ef;
}

/* ---------- LOGO (bild) ---------- */
.logo {
    font-size: 1.9rem;
    font-weight: 700;
    color: #2d6a4f;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-image {
    height: 45px;
    width: auto;
    max-height: 45px;
    object-fit: contain;
}

/* ---------- HEADER ---------- */
.site-header {
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 245, 0.96);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-weight: 500;
    color: #2c4f3b;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #e76f51;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #2d6a4f;
    cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #fef7e0 0%, #e9f3ea 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 2rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.75rem;
    color: #325a49;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badges span {
    background: white;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    border-radius: 36px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/* ---------- SÄLJ INFO ---------- */
.sell-info-section, .buy-info-section {
    padding: 4rem 0;
    background: #ffffff;
}

.info-grid, .buy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card, .buy-card {
    background: #fafaf2;
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid #e7e0cf;
    transition: transform 0.2s;
}

.info-card ul {
    list-style: none;
    margin-top: 1rem;
}

.info-card li {
    margin: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card i, .buy-card i {
    color: #2d6a4f;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.highlight, .highlight-buy {
    background: #fff7eb;
    border-left: 6px solid #2d6a4f;
}

.social-links-small {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon, .btn-social-follow, .btn-vinted {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e9e5d8;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    text-decoration: none;
    color: #2d4a3b;
    font-weight: 500;
    font-size: 0.9rem;
}

.social-icon:hover, .btn-social-follow:hover, .btn-vinted:hover {
    background: #2d6a4f;
    color: white;
}

.btn-vinted i {
    color: #2d6a4f;
    margin: 0;
}

.btn-vinted:hover i {
    color: white;
}

/* Vinted SVG-ikoner */
.vinted-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.vinted-svg-icon {
    width: 32px;
    height: 32px;
}

.vinted-btn-icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.vinted-social-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
}

.vinted-note {
    margin-top: 0.5rem;
    color: #8f9b8c;
}

.alternative-shop {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #fef4e8;
    border-radius: 60px;
}

/* ---------- KONTAKT & SOCIALA HUVUDKORT inkl Vinted ---------- */
.contact-social-section {
    padding: 4rem 0;
    background: #f0f7f0;
}

.social-main-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.social-card {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: #1e2f2b;
    transition: all 0.2s;
    flex: 1;
    min-width: 220px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    border: 1px solid #e2e6de;
}

.social-card i {
    color: #2d6a4f;
    margin-bottom: 0.75rem;
}

.social-card h3 {
    margin: 0.5rem 0;
}

.btn-social {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    background: #f5ede1;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    transition: background 0.2s;
}

.social-card:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 28px rgba(0,0,0,0.1);
}

.social-card:hover .btn-social {
    background: #e9c46a;
    color: #2d4a3b;
}

/* Vinted card specifik styling */
.vinted-card .btn-social {
    background: #e8f4f0;
}
.vinted-card:hover .btn-social {
    background: #2d6a4f;
    color: white;
}

.extra-contact {
    text-align: center;
    background: white;
    max-width: 600px;
    margin: 1rem auto 0;
    padding: 1.5rem;
    border-radius: 40px;
}

.note {
    font-size: 0.85rem;
    color: #6f7c6e;
    margin-top: 0.5rem;
}

/* ---------- LOKAL REMINDER ---------- */
.local-reminder {
    padding: 2rem 0 4rem;
    background: #ffffff;
}

.reminder-banner {
    background: #fef4e8;
    border-radius: 36px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    border-left: 8px solid #2d6a4f;
}

.reminder-banner i {
    font-size: 2.8rem;
    color: #2d6a4f;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #1f382e;
    color: #dbe9e1;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.85rem;
}

/* ---------- RESPONSIV ---------- */
@media (max-width: 880px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-image {
        order: -1;
        text-align: center;
    }
    h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        width: 100%;
        background: white;
        margin-top: 0.8rem;
        border-radius: 40px;
        padding: 1rem;
        box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    }
    .main-nav.open {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .mobile-menu-btn {
        display: block;
    }
    .social-main-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .reminder-banner {
        flex-direction: column;
        text-align: center;
    }
    .logo-image {
        height: 35px;
    }
}