/*
Theme Name: FungusHead
Theme URI: https://fungushead.com/
Author: FungusHead Team
Author URI: https://fungushead.com/
Description: A custom WordPress theme for FungusHead, featuring a modern design focused on mycology products and education.
Version: 1.0.0
Requires at least: 5.3
Tested up to: 6.1
Requires PHP: 7.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fungushead
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

FungusHead is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/* This file should only contain the theme information above */
/* All styles should be in the /assets/css/ directory */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Variables */
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-600: #6c757d;
  --color-gray-800: #343a40;
  --color-primary: #198754;
  --font-primary: 'Inter', sans-serif;
  --font-secondary: "bebas-neue", sans-serif;
  --shadow-sm: 4px 4px 0px 0px rgba(0, 0, 0, 1);
  --shadow-md: 8px 8px 0px 0px rgba(0, 0, 0, 1);
  --border-bold: 3px solid var(--color-black);
}

/* Base styles */
html {
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: normal;
}

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

a:hover {
  text-decoration: underline;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1585px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* WordPress core styles */
.alignwide {
  margin-left: -10%;
  margin-right: -10%;
  max-width: 120%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 100vw;
  width: 100vw;
}

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
  font-size: 0.875em;
  font-style: italic;
}

.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

/* Global Styles */
body {
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
  color: var(--color-dark);
  background-color: var(--color-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-top: 0;
}

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

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

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--color-light);
  border: var(--border-thick);
  box-shadow: var(--shadow-default);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--color-dark);
}

/* Footer Styles */
.site-footer {
  padding: 60px 0 20px;
  border-top: var(--border-thick);
  margin-top: 60px;
}

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

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

/* Content Styles */
.site-content {
  padding:0;
}

.entry-header {
  margin-bottom: 30px;
}

.entry-title {
  margin-bottom: 10px;
}

.entry-meta {
  font-size: 14px;
  margin-bottom: 20px;
}

.entry-content {
  margin-bottom: 40px;
}

/* Widgets */
.widget {
  margin-bottom: 30px;
}

.widget-title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: var(--border-thick);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-widgets {
    grid-template-columns: 1fr;
  }
}

/* Product Highlights Box */
.product-highlights {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.product-highlights h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.highlights-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.highlight-check {
    color: #7851a9;
    margin-right: 10px;
    font-weight: bold;
}

.highlight-description {
    margin: 0;
    font-style: italic;
    color: #666;
}

/* End Product Highlights Box Styles */

/* Add FH Container styles if not already defined */
.fh-container {
  width: 100%;
  max-width: 1585px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Single Product Page Styles */
.product-single-wrapper {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 20px;
}

/* End Single Product Page Styles */

/* Product Detail Sections Styles */
.product-details-sections {
  margin-top: 60px;
  margin-bottom: 60px;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}

/* Tab Navigation - Button Style */
.product-tabs {
  border-bottom: none;
  text-align: center;
  padding: 20px 0;
  margin: 20px 0;
}

.tabs-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
  border-bottom: none;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.tabs-nav li {
  margin: 0;
  padding: 0;
}

.tabs-nav li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
  text-decoration: none;
  background-color: #fff;
  border: 4px solid #000;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 6px 6px 0px 0px rgba(0,0,0,0.8);
  white-space: nowrap;
  flex: 1;
  min-width: 120px;
  max-width: 180px;
}

.tabs-nav li.tab-active a {
  background-color: #ff69b4;
  color: #fff;
  border-color: #000;
  box-shadow: 6px 6px 0px 0px rgba(0,0,0,1);
  transform: translateY(-1px);
}

.tabs-nav li:hover a {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 8px 8px 0px 0px rgba(0,0,0,1);
  background-color: #f0f0f0;
}

.tabs-nav li.tab-active:hover a {
  background-color: #e5509e;
  color: #fff;
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 20px 0;
}

.tab-content.active {
  display: block;
}

/* Section Styles */
.product-section {
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-secondary);
  font-size: 20px;
  margin-bottom: 15px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-content {
  font-size: 20px;
  line-height: 1.6;
  color: #444;
}

/* Info Columns Layout */
.product-info-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.info-column {
  flex: 1 1 300px;
}

.info-box {
  padding: 25px;
  border: 3px solid #000;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: none;
  min-height: 300px;
}

.info-box h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 600;
}

.feature-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  font-size: 20px;
}

.feature-list li {
  margin-bottom: 10px;
  padding-left: 5px;
  line-height: 1.5;
}

.feature-list li strong {
  font-weight: 600;
}

/* Notice Box */
.product-notice {
  padding: 15px;
  background-color: #fff8e1;
  border-radius: 4px;
  margin: 30px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.notice-content {
  display: flex;
  align-items: flex-start;
}

.notice-icon {
  font-size: 20px;
  color: #f57c00;
  margin-right: 15px;
}

.notice-text {
  font-size: 15px;
  color: #000;
  line-height: 1.5;
}

.notice-text strong {
  font-weight: 600;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .product-info-columns {
    flex-direction: column;
  }
  
  .tabs-nav {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  
  .tabs-nav li a {
    padding: 10px 16px;
    font-size: 14px;
    min-width: 100px;
    max-width: 140px;
    flex: 1;
    box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.8);
  }
  
  .tabs-nav li:hover a {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 6px 6px 0px 0px rgba(0,0,0,1);
  }
  
  .tabs-nav li.tab-active a {
    box-shadow: 4px 4px 0px 0px rgba(0,0,0,1);
    transform: translateY(-1px);
  }
  
  .product-tabs {
    margin-top: -30px;
    padding: 15px 0;
  }
  
  /* Reduce margins for product details sections on mobile */
  .product-details-sections {
    margin-top: 30px;
    margin-bottom: 5px;
    border: none;
  }
}

/* End Product Detail Sections Styles */

/* Related Products Styles */
.related.products {
  margin-top: 50px;
  padding-top: 30px;
}

.related-heading {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Product Cards Styling */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
  border: 1px solid #eee;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #f8f8f8;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.bestseller-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #e91e63;
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  border-radius: 4px;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.overlay-buttons {
  display: flex;
  gap: 10px;
}

.quick-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  color: #000;
  text-decoration: none;
}

.quick-action-btn:hover {
  background-color: #f1f1f1;
  transform: scale(1.1);
}

.product-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
  color: #000;
}

.product-type {
  font-size: 14px;
  color: #666;
  margin: 0 0 15px;
  font-style: italic;
}

.product-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-stock {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-weight: 600;
  font-size: 18px;
  color: #000;
}

.stock-badge {
  font-size: 13px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.stock-badge.in-stock {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.stock-badge.out-of-stock {
  background-color: #ffebee;
  color: #c62828;
}

.add-to-cart-btn {
  display: block;
  background-color: #000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.add-to-cart-btn:hover {
  background-color: #333;
}

.add-to-cart-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .product-content {
    padding: 15px;
  }
  
  .product-title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.added-to-cart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 10;
  animation: fadeIn 0.3s ease;
}

.added-to-cart.error {
  background-color: rgba(198, 40, 40, 0.8);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* End Related Products Styles */

/* Product Benefits Section (Customizer) */
.customizer-benefits {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    justify-content: space-around;
    border: 1px solid #eee;
    padding: 20px 0;
    border-radius: 5px;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: #fce4ec; /* Light pink background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    color: #e91e63; /* Pink icon color */
}

.benefit-details h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.benefit-details p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* End Product Benefits Section */

/* Styling for ACF Content in Tabs */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.specs-table td {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  font-size: 15px;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #000;
  width: 40%; /* Adjust as needed */
}

.specs-table td:last-child {
  color: #555;
  text-align: right;
}

.usage-content ul,
.usage-content ol {
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.usage-content li {
  margin-bottom: 8px;
}

.shipping-content p,
.shipping-content ul,
.shipping-content ol {
  margin-bottom: 15px;
}

.recommended-uses-title {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.pro-tip-notice {
  display: flex;
  align-items: flex-start;
  background-color: #e3f2fd; /* Light blue background */
  border-left: 4px solid #2196f3; /* Blue left border */
  padding: 15px;
  margin-top: 20px;
  border-radius: 4px;
}

.pro-tip-icon {
  font-size: 20px;
  color: #2196f3;
  margin-right: 10px;
  line-height: 1.4;
}

.pro-tip-text {
  font-size: 15px;
  color: #000;
  line-height: 1.4;
}

.pro-tip-text strong {
  font-weight: 600;
}

/* Remove shopping cart icons from add to cart buttons */
.single_add_to_cart_button::before,
.single_add_to_cart_button::after {
    content: none !important;
}

.single_add_to_cart_button {
    position: relative;
}

/* Remove any shopping cart emojis that might be inserted */
.single_add_to_cart_button * {
    text-shadow: none !important;
}

/* Hide shopping cart icons via font awesome or other icon fonts */
.single_add_to_cart_button .fa-shopping-cart,
.single_add_to_cart_button .fa-cart-plus,
.single_add_to_cart_button .fa-shopping-bag,
.single_add_to_cart_button [class*="cart"],
.single_add_to_cart_button [class*="shopping"] {
    display: none !important;
}

/* Hide product tags and stock status on mobile only */
@media (max-width: 768px) {
    .product-tags,
    .product-tag,
    .stock,
    .in-stock,
    .out-of-stock,
    .woocommerce-product-details__short-description .product-tags,
    .summary .product-tags,
    .summary .stock,
    .single-product .product-tags,
    .single-product .stock {
        display: none !important;
    }
    
    /* Remove left and right padding on mobile for single product pages */
    .single-product .fh-container,
    .single-product .product-single-wrapper,
    .single-product .container,
    .woocommerce-page .fh-container,
    .woocommerce-page .product-single-wrapper,
    .woocommerce-page .container {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    /* Also target the main content areas */
    .single-product .product-main-content,
    .single-product .product-gallery-col,
    .single-product .product-summary-col {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* End ACF Content Styles */ 

/* 404 Page Styles */
.error-404-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.error-404-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    border: 3px solid #000;
    background: #fff;
    box-shadow: 8px 8px 0px 0px rgba(0,0,0,1);
}

.error-404-title {
    font-family: var(--font-secondary, 'bebas-neue', sans-serif);
    font-size: 120px;
    font-weight: 700;
    margin: 0;
    color: #000;
    line-height: 1;
}

.error-404-subtitle {
    font-family: var(--font-secondary, 'bebas-neue', sans-serif);
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0 20px 0;
    color: #000;
    text-transform: uppercase;
}

.error-404-description {
    font-size: 18px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.error-404-visual {
    text-align: center;
}

.mushroom-icon {
    font-size: 120px;
    opacity: 0.7;
}

.error-404-search {
    margin-bottom: 60px;
    padding: 30px;
    border: 3px solid #000;
    background: #f8f9fa;
    text-align: center;
}

.error-404-search h3 {
    font-family: var(--font-secondary, 'bebas-neue', sans-serif);
    font-size: 24px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.error-404-search p {
    margin: 0 0 20px 0;
    color: #666;
}

.search-input-wrap {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.search-field {
    flex: 1;
    padding: 12px 15px;
    border: 3px solid #000;
    border-right: none;
    font-size: 16px;
    font-family: var(--font-primary, 'Inter', sans-serif);
}

.search-field:focus {
    outline: none;
    background: #fff;
}

.search-submit-404 {
    padding: 12px 20px;
    background: #000;
    color: #fff;
    border: 3px solid #000;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-submit-404:hover {
    background: #333;
}

.error-404-links {
    margin-bottom: 60px;
}

.error-404-links h3 {
    font-family: var(--font-secondary, 'bebas-neue', sans-serif);
    font-size: 28px;
    text-align: center;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.quick-link-card {
    padding: 25px 20px;
    border: 3px solid #000;
    background: #fff;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px 0px rgba(0,0,0,1);
}

.quick-link-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.quick-link-card h4 {
    font-family: var(--font-secondary, 'bebas-neue', sans-serif);
    font-size: 20px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.quick-link-card p {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.quick-link-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.quick-link-btn:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
}

.error-404-home {
    text-align: center;
    margin-bottom: 40px;
}

.back-home-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    border: 3px solid #000;
    transition: background-color 0.2s ease;
}

.back-home-btn:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
}

/* 404 Page Responsive Design */
@media (max-width: 768px) {
    .error-404-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }
    
    .error-404-title {
        font-size: 80px;
    }
    
    .error-404-subtitle {
        font-size: 28px;
    }
    
    .mushroom-icon {
        font-size: 80px;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .search-input-wrap {
        flex-direction: column;
    }
    
    .search-field {
        border-right: 3px solid #000;
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .error-404-wrapper {
        padding: 0 10px;
    }
    
    .error-404-hero {
        padding: 20px 15px;
    }
    
    .error-404-title {
        font-size: 60px;
    }
    
    .error-404-subtitle {
        font-size: 24px;
    }
}

/* End 404 Page Styles */

 