/* Reset og grunnleggende styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animasjoner */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

.animate-slide-up[data-delay="200"] {
    animation-delay: 0.2s;
}

.animate-slide-up[data-delay="400"] {
    animation-delay: 0.4s;
}

/* Header og navigasjon */
header {
    background-color: #000;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Modern Hero Section */
.hero-modern {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-text p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 500px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.btn-modern {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
}

/* Modern Features Section */
.features-modern {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    color: #000;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: #000;
    color: #fff;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 700;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background-color: #000;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.about-content p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background-color: #f8f8f8;
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #000;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.btn-cta:hover {
    background-color: transparent;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Products Page */
.products-hero-modern {
    background-color: #000;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.products-hero-modern h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #000;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Product Grid Modern */
.product-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card-modern {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-modern:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #000;
    font-weight: 700;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: #333;
}

/* Filter Buttons Modern */
.products-filter {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    border: 2px solid #000;
    display: inline-flex;
}

.filter-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border-right: 1px solid #000;
}

.filter-btn:last-child {
    border-right: none;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #000;
    color: #fff;
}

/* Modern Footer */
.footer-modern {
    background-color: #000;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ccc;
}

.footer-section p {
    color: #999;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.made-in {
    font-style: italic;
}

/* Hero seksjon */
.hero {
    background-color: #f8f8f8;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid #000;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Features seksjon */
.features {
    padding: 4rem 0;
    background-color: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid #000;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Popup styling - moderne design */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #fff;
    border: none;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-header {
    background-color: #000;
    color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #ccc;
    transform: rotate(90deg);
}

.popup-body {
    padding: 2rem;
}

.popup-body p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-features {
    margin-bottom: 2rem;
}

.popup-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    padding: 1rem;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.popup-feature:hover {
    border-color: #000;
    transform: translateX(5px);
}

.popup-feature-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.popup-feature:hover .popup-feature-icon {
    background-color: #000;
    color: #fff;
}

.popup-feature span {
    font-weight: 600;
    color: #333;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.popup-btn-primary {
    flex: 1;
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #000;
    cursor: pointer;
}

.popup-btn-primary:hover {
    background-color: transparent;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.popup-btn-secondary {
    flex: 1;
    text-align: center;
    background-color: #666;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #666;
    cursor: pointer;
}

.popup-btn-secondary:hover {
    background-color: transparent;
    color: #666;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102,102,102,0.1);
}

/* Produkter side */
.products-hero {
    background-color: #000;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.products-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.products-content {
    padding: 4rem 0;
}

.products-filter {
    margin-bottom: 3rem;
    text-align: center;
}

.products-filter h3 {
    margin-bottom: 1rem;
    color: #000;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #000;
    color: #fff;
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-products p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Produkter */
.products {
    padding: 4rem 0;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    border: 2px solid #000;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    background-color: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.product-card p {
    color: #666;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
}

/* Kontakt side */
.contact-hero {
    background-color: #000;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.contact-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #000;
}

/* Skjemaer */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #000;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #000;
    background-color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #666;
}

.btn {
    background-color: #000;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: #333;
}

.btn-secondary {
    background-color: #666;
}

.btn-secondary:hover {
    background-color: #888;
}

.btn-danger {
    background-color: #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Admin panel */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
}

.login-box {
    background-color: #fff;
    padding: 2rem;
    border: 2px solid #000;
    width: 100%;
    max-width: 400px;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #000;
}

.error-message {
    color: #dc3545;
    text-align: center;
    margin-top: 1rem;
    padding: 0.5rem;
    border: 1px solid #dc3545;
    background-color: #f8d7da;
}

.admin-container {
    min-height: 100vh;
    background-color: #f8f8f8;
}

.admin-header {
    background-color: #000;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-main {
    padding: 2rem;
}

.admin-section {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #000;
}

.admin-section h2 {
    margin-bottom: 1.5rem;
    color: #000;
}

.product-form {
    max-width: 600px;
}

.admin-product-list {
    display: grid;
    gap: 1rem;
}

.admin-product-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    align-items: center;
}

.admin-product-item img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.admin-product-info h4 {
    margin-bottom: 0.5rem;
    color: #000;
}

.admin-product-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Responsiv design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .admin-product-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* Pop
up styling - oppdatert for moderne design */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #fff;
    border: none;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-header {
    background-color: #000;
    color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #ccc;
    transform: rotate(90deg);
}

.popup-body {
    padding: 2rem;
}

.popup-body p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-features {
    margin-bottom: 2rem;
}

.popup-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.feature-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 25px;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.popup-btn {
    flex: 1;
    text-align: center;
    background-color: #000;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.popup-btn:hover {
    background-color: transparent;
    color: #000;
}

/* Contact Page Styling */
.contact-hero {
    background-color: #000;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.contact-hero h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000;
    font-weight: 700;
}

.info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #000;
    font-weight: 700;
}

/* Form Styling - Modern */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

input,
textarea,
select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #000;
    background-color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.btn {
    background-color: #000;
    color: #fff;
    padding: 1rem 2rem;
    border: 2px solid #000;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn:hover {
    background-color: transparent;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: #666;
    border-color: #666;
}

.btn-secondary:hover {
    background-color: transparent;
    color: #666;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive Design - Oppdatert */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    .filter-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .product-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .popup-header {
        padding: 1rem;
    }
    
    .popup-body {
        padding: 1rem;
    }
}/* 
Popup Responsive Fixes */
@media (max-width: 768px) {
    .popup-header {
        padding: 1.5rem;
    }
    
    .popup-body {
        padding: 1.5rem;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    .popup-feature {
        padding: 0.75rem;
    }
    
    .popup-feature-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .popup-header {
        padding: 1rem;
    }
    
    .popup-body {
        padding: 1rem;
    }
    
    .popup-header h2 {
        font-size: 1.2rem;
    }
    
    .popup-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .popup-feature-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}