/* Main Styles for Product Website - Dark mode as default */

:root {
    /* Default to dark theme values */
    --primary-color: #5d84c2;
    --secondary-color: #7095d9;
    --accent-color: #ffb700;
    --text-color: #e0e0e0;
    --bg-color: #1a1a1a;
    --card-bg: #2d2d2d;
    --light-gray: #2a2a2a;
    --medium-gray: #3d3d3d;
    --dark-gray: #999;
    --white: #2d2d2d;
    --shadow: 0 2px 10px rgba(0,0,0,0.5);
    --transition: all 0.3s ease;
    --footer-bg: #121212;
    --footer-text: #e0e0e0;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--dark-gray);
}

.btn-secondary:hover {
    background-color: #666;
}

/* Enhanced buttons */
.btn {
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: height 0.3s ease;
    z-index: -1;
}

.btn:hover::after {
    height: 100%;
}

/* Layout */
header, main, footer {
    padding: 0 5%;
}

section {
    margin: 40px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    text-align: center;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto;
}

/* Section headers with accent color */
h2:after {
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    width: 100px;
    margin: 15px auto 25px;
    border-radius: 2px;
}

.section-description {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

/* Header */
header {
    background: linear-gradient(to right, var(--card-bg) 70%, var(--light-gray) 100%);
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding-top: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.header-container h1 {
    margin-bottom: 0;
    font-size: 24px;
}

.cart-icon {
    font-size: 20px;
    position: relative;
}

.cart-icon a {
    color: var(--text-color);
}

/* Cart icon animation */
.cart-icon {
    transition: transform 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.15);
}

#cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav {
    margin: 20px 0 0;
    border-top: 1px solid var(--medium-gray);
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
}

nav ul li {
    margin: 0;
    padding: 0;
}

nav ul li a {
    display: block;
    padding: 15px;
    color: var(--text-color);
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
    background-color: rgba(74, 109, 167, 0.1);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1200x400?text=Produktet+Tona');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    margin: 0 -5% 40px;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero .btn {
    font-size: 18px;
    padding: 12px 30px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.product-card:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--medium-gray);
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.product-description {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 14px;
    height: 40px;
    overflow: hidden;
}

.product-price {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--light-gray);
    border-radius: 20px;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.add-to-cart {
    width: 100%;
    text-align: center;
}

.instagram-link {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

/* About Section */
.about-container {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

/* Testimonials */
.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stars {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.client-name {
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 15px;
}

/* Newsletter */
#newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

#newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.05) 10px,
        rgba(255,255,255,0.05) 20px
    );
    animation: newsletterBgMove 20s linear infinite;
    z-index: 1;
}

#newsletter .newsletter-container {
    position: relative;
    z-index: 2;
}

@keyframes newsletterBgMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

#newsletter-form {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#newsletter-form input {
    padding: 15px 25px;
}

#newsletter-form .btn {
    padding: 15px 30px;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #333;
    color: var(--white);
    padding-top: 50px;
    margin-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Products Page */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.products-header h2 {
    margin-bottom: 0;
}

.products-header h2:after {
    display: none;
}

.filters select {
    padding: 8px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    background-color: var(--white);
}

/* Products page as home page styles */
.products-hero {
    min-height: 250px;
    padding: 40px 0;
    margin-bottom: 30px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url(../assets/images/product1.png);
    background-size: cover;
    background-position: center;
}

.products-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.products-hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.products-hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Checkout Page */
.checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.cart-items-container {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 120px 120px 40px;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-gray);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.quantity-input {
    width: 40px;
    text-align: center;
    margin: 0 5px;
    padding: 5px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4d4d;
    font-size: 24px;
    cursor: pointer;
}

.empty-cart {
    padding: 30px;
    text-align: center;
    color: var(--dark-gray);
}

.customer-info {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
}

.form-group textarea {
    height: 100px;
}

.cart-summary {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.summary-item.total {
    font-weight: bold;
    font-size: 18px;
    color: var(--primary-color);
    border-bottom: none;
}

#checkout-button {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    font-size: 18px;
}

/* Loading and notifications */
.loading {
    text-align: center;
    padding: 30px;
    color: var(--dark-gray);
}

.error-message {
    text-align: center;
    padding: 20px;
    background-color: #ffecec;
    color: #f44336;
    border-radius: 8px;
    margin: 20px 0;
}

.notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: bottom 0.5s ease;
}

.notification.show {
    bottom: 20px;
}

.checkout-success {
    text-align: center;
    padding: 50px 20px;
}

.checkout-success i {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

/* Launch Banner */
.launch-banner {
  background: linear-gradient(45deg, #4a6da7, #5d84c2);
  color: white;
  padding: 12px 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.launch-banner::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}

.launch-banner::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  bottom: -75px;
  right: -75px;
}

.launch-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 5;
}

.launch-tag {
  background-color: #f8b400;
  color: #333;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

.btn-launch {
  background-color: white;
  color: #4a6da7;
  padding: 6px 15px;
}

.btn-launch:hover {
  background-color: #f8b400;
  color: #333;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
}

.site-logo {
  height: 45px;
  width: auto;
  margin-right: 10px;
}

/* Adjust header layout */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .site-logo {
    height: 35px;
  }
  
  .header-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .logo {
    margin-bottom: 10px;
    order: 1;
  }
  
  .theme-toggle-container {
    order: 3;
    margin: 10px 0;
    width: 100%;
    justify-content: center;
  }
  
  .cart-icon {
    order: 2;
  }
}

@media (max-width: 480px) {
  .site-logo {
    height: 30px;
  }
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-wrap: wrap;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr 80px;
        grid-template-areas:
            "image details remove"
            "image quantity total";
        gap: 10px;
    }
    
    .cart-item-image {
        grid-area: image;
    }
    
    .cart-item-details {
        grid-area: details;
    }
    
    .cart-item-quantity {
        grid-area: quantity;
    }
    
    .cart-item-total {
        grid-area: total;
        justify-self: right;
    }
    
    .remove-item {
        grid-area: remove;
        justify-self: right;
    }
    
    #newsletter-form {
        flex-direction: column;
    }
}

/* Mobile Responsiveness Fixes */
@media (max-width: 768px) {
  /* General fixes */
  .container {
    padding: 0 15px;
  }
  
  /* Header fixes */
  .nav-wrapper {
    flex-direction: column;
  }
  
  .main-nav {
    width: 100%;
    justify-content: center;
    padding: 10px 0;
    overflow-x: auto;
  }
  
  .logo {
    margin-bottom: 10px;
  }
  
  /* Product cards */
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  
  .product-card .product-info {
    padding: 8px;
  }
  
  .product-card h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .product-price {
    font-size: 14px;
  }
  
  .product-card .btn {
    padding: 8px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .hero-content p {
    font-size: 0.9rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .btn {
    padding: 8px 12px;
    font-size: 12px;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Enhanced visual effects for all themes */
.product-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.product-card:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.product-card img {
    transition: transform 0.5s ease;
}

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

/* Enhanced header */
header {
    background: linear-gradient(to right, var(--card-bg) 70%, var(--light-gray) 100%);
}

/* Product price tag */
.product-price {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--light-gray);
    border-radius: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

/* Additional styles for About and Contact pages */

/* About Page Styles */
.about-section {
    padding: 40px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.about-content.reverse {
    flex-direction: row-reverse;
}

.about-image, 
.about-text {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-text p {
    margin-bottom: 20px;
}

.about-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-text li {
    margin-bottom: 10px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    padding: 35px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin-top: 0;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* Values Section */
.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    font-size: 24px;
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    background-color: rgba(248, 180, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-content h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.info-content p {
    margin: 5px 0;
    color: var(--dark-gray);
}

/* Map Section */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 40px 0;
}

/* FAQ Section */
.faq-container {
    margin: 40px 0;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content,
    .about-content.reverse,
    .contact-container {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .values-container {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Additional styles for component-based structure and PayPal */

/* PayPal styles */
.payment-options {
    margin-top: 20px;
    border-top: 1px solid var(--medium-gray);
    padding-top: 15px;
}

.payment-options p {
    font-weight: bold;
    margin-bottom: 10px;
}

.payment-methods {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.payment-method {
    flex: 1;
    background-color: var(--light-gray);
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
}

.payment-method:hover {
    background-color: #e8e8e8;
}

.paypal-link {
    display: block;
    color: #003087;
    font-weight: bold;
}

.payment-instructions {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    text-align: left;
}

.checkout-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.payment-method-details {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.payment-method-details h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-paypal {
    background-color: #0070BA;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-paypal:hover {
    background-color: #003087;
}

/* Content containers for component-based structure */
#header-container, #footer-container {
    width: 100%;
}

/* Fix for nested links in components */
a[href].active {
    color: var(--primary-color);
    background-color: rgba(74, 109, 167, 0.1);
}

/* Fix for footer social links */
.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}