/*
Theme Name: HookPoint USA
Description: Bold adventurous WooCommerce theme for fishing gear retail
Version: 1.0
Author: HookPoint Provisions LLC
*/

:root {
  --primary-color: #1a472a;
  --secondary-color: #2d5a3d;
  --accent-color: #ff6b35;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --border-light: #e1e8ed;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #f8f9fa;
  padding-top: 35px; /* MUCH smaller mobile header */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8px; /* Minimal mobile padding */
}

/* ULTRA-COMPACT Mobile Header */
.site-header {
  background: rgba(26, 71, 42, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow);
  padding: 0.1rem 0; /* Minimal padding */
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem 0; /* Minimal padding */
  flex-wrap: nowrap; /* NEVER wrap on mobile */
  gap: 0.2rem;
  min-height: 33px; /* Fixed small height */
}

.logo {
  font-size: 0.9rem; /* Even smaller mobile logo */
  font-weight: bold;
  color: var(--text-light);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.15rem 0;
  flex-shrink: 0; /* Don't shrink */
}

/* SINGLE LINE Mobile Navigation with Dropdown */
.main-navigation {
  flex: 1;
  overflow: visible; /* Allow dropdown to show */
  padding: 0;
  margin: 0 0.5rem; /* Small side margins */
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 0.5rem; /* Minimal gap */
  padding: 0.15rem 0;
  white-space: nowrap;
  margin: 0;
}

.main-navigation a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.7rem; /* Very small mobile font */
  transition: color 0.3s ease;
  padding: 0.15rem 0.3rem;
  white-space: nowrap;
  display: block;
}

.main-navigation a:hover {
  color: var(--accent-color);
}

/* Dropdown Menu Styles - VERTICAL LIST */
.main-navigation .has-dropdown {
  position: relative;
}

.main-navigation .has-dropdown > a {
  cursor: pointer;
  position: relative;
}

.main-navigation .has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.8em;
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
}

.main-navigation .has-dropdown:hover > a::after,
.main-navigation .has-dropdown.active > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-color);
  min-width: 250px;
  max-width: 300px;
  padding: 0.5rem 0;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  max-height: 70vh;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu li {
  display: block !important; /* Force vertical stacking */
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropdown-menu a {
  color: var(--text-light) !important;
  padding: 0.7rem 1.2rem !important;
  font-size: 0.85rem !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap !important;
  display: block !important;
  width: 100%;
  text-align: left;
  line-height: 1.4;
  transition: all 0.3s ease;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.15) !important;
  color: var(--accent-color) !important;
  padding-left: 1.8rem !important;
  transform: translateX(5px);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li:first-child a {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.dropdown-menu li:last-child a {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Show dropdown on hover for desktop */
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile dropdown - convert to click/touch and full-screen style */
@media (max-width: 767px) {
  .dropdown-menu {
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    min-width: 100%;
    max-width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }
  
  .dropdown-menu li {
    display: block !important;
    width: 100%;
  }
  
  .dropdown-menu a {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.85rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block !important;
    width: 100%;
  }
  
  .dropdown-menu a:hover {
    padding-left: 2rem !important;
  }
  
  /* Mobile: Click to toggle dropdown */
  .has-dropdown:hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
  
  .has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.header-cart {
  position: relative;
  flex-shrink: 0; /* Don't shrink */
}

.cart-link {
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.7rem; /* Small mobile cart */
  padding: 0.15rem;
}

.cart-count {
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  width: 14px; /* Very small for mobile */
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: bold;
}

/* Tablet breakpoint - Medium sizing */
@media (min-width: 768px) {
  body {
    padding-top: 55px;
  }
  
  .site-header {
    padding: 0.4rem 0;
  }
  
  .header-content {
    padding: 0.4rem 0;
    flex-wrap: nowrap;
    gap: 0.5rem;
    min-height: auto;
  }
  
  .logo {
    font-size: 1.3rem;
    padding: 0.4rem 0;
  }
  
  .main-navigation {
    flex: none;
    overflow: visible;
    margin: 0 1rem;
  }
  
  .main-navigation ul {
    gap: 1rem;
    padding: 0;
  }
  
  .main-navigation a {
    font-size: 0.85rem;
    padding: 0;
  }
  
  .dropdown-menu {
    min-width: 240px;
    max-width: 320px;
    padding: 1rem 0;
  }
  
  .dropdown-menu a {
    font-size: 0.85rem !important;
    padding: 0.7rem 1.5rem !important;
  }
  
  .dropdown-menu a:hover {
    padding-left: 1.8rem !important;
  }
  
  .cart-link {
    font-size: 0.85rem;
    gap: 0.4rem;
    padding: 0;
  }
  
  .cart-count {
    width: 17px;
    height: 17px;
    font-size: 0.65rem;
  }
  
  .container {
    padding: 0 12px;
  }
}

/* Desktop breakpoint - Full sizing */
@media (min-width: 1024px) {
  body {
    padding-top: 70px;
  }
  
  .site-header {
    padding: 0.6rem 0;
  }
  
  .header-content {
    padding: 0.6rem 0;
  }
  
  .logo {
    font-size: 1.7rem;
  }
  
  .main-navigation {
    margin: 0 1.5rem;
  }
  
  .main-navigation ul {
    gap: 1.5rem;
  }
  
  .main-navigation a {
    font-size: 0.95rem;
  }
  
  .dropdown-menu {
    min-width: 260px;
    max-width: 350px;
    padding: 1.2rem 0;
  }
  
  .dropdown-menu a {
    font-size: 0.9rem !important;
    padding: 0.8rem 1.8rem !important;
  }
  
  .dropdown-menu a:hover {
    padding-left: 2.2rem !important;
  }
  
  .cart-link {
    font-size: 0.95rem;
  }
  
  .cart-count {
    width: 19px;
    height: 19px;
    font-size: 0.75rem;
  }
  
  .container {
    padding: 0 15px;
  }
}

/* Hero Section - Mobile First with reduced top margin */
.hero-section {
  height: 41vh; /* Reduced by 25% from 55vh */
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://hookpointusa.com/wp-content/uploads/2025/10/brad-fishing.jpg');
  background-size: cover;
  background-position: center 150%; /* Move background image down 150% */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  margin-top: -35px; /* Match smaller mobile header */
}

.hero-content h1 {
  font-size: 1.6rem; /* Smaller mobile hero text */
  margin-bottom: 0.4rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content p {
  font-size: 0.8rem; /* Smaller mobile paragraph */
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  padding: 0 0.8rem;
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 0.6rem 1.1rem; /* Smaller mobile button */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
}

.cta-button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

/* Tablet hero adjustments */
@media (min-width: 768px) {
  .hero-section {
    height: 53vh; /* Reduced by 25% from 70vh */
    margin-top: -55px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.6rem;
    padding: 0;
  }
  
  .cta-button {
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
  }
}

/* Desktop hero adjustments */
@media (min-width: 1024px) {
  .hero-section {
    height: 64vh; /* Reduced by 25% from 85vh */
    margin-top: -70px;
    background-attachment: fixed;
  }
  
  .hero-content h1 {
    font-size: 3.2rem;
  }
  
  .hero-content p {
    font-size: 1.3rem;
  }
  
  .cta-button {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* Product Categories - Mobile First */
.categories-section {
  padding: 1.2rem 0; /* Reduced mobile padding */
  background: white;
}

.section-title {
  text-align: center;
  font-size: 1.4rem; /* Smaller mobile title */
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.category-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-3px);
}

.category-image {
  width: 100%;
  height: 140px; /* Smaller mobile image */
  object-fit: cover;
}

.category-content {
  padding: 0.7rem; /* Reduced mobile padding */
  text-align: center;
}

.category-title {
  font-size: 1rem; /* Smaller mobile category title */
  margin-bottom: 0.3rem;
  color: var(--primary-color);
}

.category-description {
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.8rem;
}

.category-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.8rem;
}

/* Tablet categories adjustments */
@media (min-width: 768px) {
  .categories-section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.6rem;
  }
  
  .category-image {
    height: 170px;
  }
  
  .category-content {
    padding: 1rem;
  }
  
  .category-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .category-description {
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
  }
  
  .category-link {
    font-size: 0.9rem;
  }
}

/* Desktop categories adjustments */
@media (min-width: 1024px) {
  .categories-section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2.1rem;
    margin-bottom: 2.2rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
  }
  
  .category-image {
    height: 200px;
  }
  
  .category-content {
    padding: 1.2rem;
  }
  
  .category-title {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }
  
  .category-description {
    font-size: 0.95rem;
  }
  
  .category-link {
    font-size: 0.95rem;
  }
}

/* Products Grid - Mobile First */
.products-section {
  padding: 1.2rem 0;
  background: #f8f9fa;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* Even smaller mobile */
  gap: 1rem;
}

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

.product-card:hover {
  transform: translateY(-3px);
}

.product-image {
  width: 100%;
  height: 120px; /* Smaller mobile product images */
  object-fit: cover;
}

.product-info {
  padding: 0.6rem; /* Reduced mobile padding */
}

.product-title {
  font-size: 0.9rem; /* Smaller mobile product title */
  margin-bottom: 0.3rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.product-price {
  font-size: 1rem; /* Smaller mobile price */
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.add-to-cart {
  width: 100%;
  background: var(--primary-color);
  color: white;
  padding: 0.4rem; /* Smaller mobile button */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
  font-size: 0.75rem;
}

.add-to-cart:hover {
  background: var(--secondary-color);
}

/* Tablet products adjustments */
@media (min-width: 768px) {
  .products-section {
    padding: 2rem 0;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.3rem;
  }
  
  .product-image {
    height: 150px;
  }
  
  .product-info {
    padding: 0.8rem;
  }
  
  .product-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  
  .product-price {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
  
  .add-to-cart {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}

/* Desktop products adjustments */
@media (min-width: 1024px) {
  .products-section {
    padding: 3rem 0;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.6rem;
  }
  
  .product-image {
    height: 170px;
  }
  
  .product-info {
    padding: 0.9rem;
  }
  
  .product-title {
    font-size: 1.1rem;
  }
  
  .product-price {
    font-size: 1.25rem;
  }
  
  .add-to-cart {
    padding: 0.6rem;
    font-size: 0.85rem;
  }
}

/* Footer - Mobile First */
.site-footer {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 1.2rem 0 0.6rem; /* Reduced mobile padding */
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-section h3 {
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.3rem;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.8rem;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #ccc;
  font-size: 0.75rem;
}

/* Tablet footer adjustments */
@media (min-width: 768px) {
  .site-footer {
    padding: 1.8rem 0 0.6rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
    margin-bottom: 1.4rem;
  }
  
  .footer-section h3 {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
  }
  
  .footer-section a {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    padding-top: 1.4rem;
    font-size: 0.8rem;
  }
}

/* Desktop footer adjustments */
@media (min-width: 1024px) {
  .site-footer {
    padding: 2.2rem 0 0.8rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.6rem;
    margin-bottom: 1.6rem;
  }
  
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .footer-section a {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    padding-top: 1.6rem;
    font-size: 0.85rem;
  }
}

/* Enhanced WooCommerce Shop Page Styles */
.woocommerce-container {
  padding: 0.5rem 0; /* Reduced mobile padding */
  min-height: 70vh;
}

.woocommerce-products-header {
  text-align: center;
  margin-bottom: 1rem;
  background: white;
  padding: 0.8rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.woocommerce-products-header h1 {
  color: var(--primary-color);
  font-size: 1.3rem; /* Smaller mobile title */
  margin-bottom: 0.3rem;
}

.woocommerce-breadcrumb {
  margin-bottom: 0.6rem;
  color: #666;
  font-size: 0.7rem;
}

.woocommerce-result-count,
.woocommerce-ordering {
  background: white;
  padding: 0.5rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  font-size: 0.75rem;
}

.woocommerce-ordering select {
  padding: 0.3rem;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  background: white;
  font-size: 0.7rem;
}

/* Tablet WooCommerce adjustments */
@media (min-width: 768px) {
  .woocommerce-container {
    padding: 1rem 0;
  }
  
  .woocommerce-products-header {
    padding: 1.2rem;
    margin-bottom: 1.6rem;
  }
  
  .woocommerce-products-header h1 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
  }
  
  .woocommerce-breadcrumb {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }
  
  .woocommerce-result-count,
  .woocommerce-ordering {
    padding: 0.7rem;
    margin-bottom: 1.3rem;
    font-size: 0.8rem;
  }
  
  .woocommerce-ordering select {
    padding: 0.4rem;
    font-size: 0.75rem;
  }
}

/* Desktop WooCommerce adjustments */
@media (min-width: 1024px) {
  .woocommerce-container {
    padding: 1.3rem 0;
  }
  
  .woocommerce-products-header {
    padding: 1.6rem;
    margin-bottom: 2rem;
  }
  
  .woocommerce-products-header h1 {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
  
  .woocommerce-breadcrumb {
    font-size: 0.85rem;
  }
  
  .woocommerce-result-count,
  .woocommerce-ordering {
    padding: 0.8rem;
    margin-bottom: 1.6rem;
    font-size: 0.85rem;
  }
  
  .woocommerce-ordering select {
    padding: 0.45rem;
    font-size: 0.8rem;
  }
}

/* Enhanced WooCommerce Products Grid - Your Categories */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important; /* Even smaller mobile cards */
  gap: 0.8rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce ul.products li.product {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.woocommerce ul.products li.product .onsale {
  position: absolute;
  top: 5px;
  left: 5px;
  background: var(--accent-color);
  color: white;
  padding: 0.1rem 0.4rem;
  border-radius: 12px;
  font-size: 0.6rem;
  font-weight: bold;
  z-index: 2;
}

.woocommerce ul.products li.product img {
  width: 100%;
  height: 120px; /* Much smaller mobile images */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover img {
  transform: scale(1.03);
}

.woocommerce ul.products li.product h2 {
  font-size: 0.8rem !important; /* Much smaller mobile text */
  margin: 0.5rem !important;
  color: var(--primary-color) !important;
  line-height: 1.2 !important;
  min-height: 1.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.woocommerce ul.products li.product h2 a {
  color: var(--primary-color) !important;
  text-decoration: none !important;
}

.woocommerce ul.products li.product h2 a:hover {
  color: var(--secondary-color) !important;
}

.woocommerce ul.products li.product .price {
  font-size: 0.85rem !important; /* Smaller mobile price */
  font-weight: bold !important;
  color: var(--accent-color) !important;
  margin: 0 0.5rem 0.5rem !important;
}

.woocommerce ul.products li.product .price del {
  color: #999 !important;
  font-size: 0.75rem !important;
}

.woocommerce ul.products li.product .add_to_cart_button {
  width: calc(100% - 1rem) !important;
  margin: 0 0.5rem 0.5rem !important;
  background: var(--primary-color) !important;
  color: white !important;
  padding: 0.4rem !important; /* Smaller mobile button */
  border: none !important;
  border-radius: 5px !important;
  text-decoration: none !important;
  display: block !important;
  text-align: center !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-size: 0.65rem !important; /* Very small mobile font */
}

.woocommerce ul.products li.product .add_to_cart_button:hover {
  background: var(--secondary-color) !important;
  transform: translateY(-1px) !important;
}

.woocommerce ul.products li.product .added_to_cart {
  display: block !important;
  text-align: center !important;
  margin: 0 0.5rem 0.5rem !important;
  color: var(--accent-color) !important;
  text-decoration: none !important;
  font-weight: bold !important;
  font-size: 0.65rem !important;
}

/* Tablet WooCommerce products adjustments */
@media (min-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)) !important;
    gap: 1.2rem !important;
  }
  
  .woocommerce ul.products li.product .onsale {
    top: 6px;
    left: 6px;
    padding: 0.15rem 0.5rem;
    font-size: 0.65rem;
  }
  
  .woocommerce ul.products li.product img {
    height: 150px;
  }
  
  .woocommerce ul.products li.product h2 {
    font-size: 0.9rem !important;
    margin: 0.7rem !important;
    min-height: 2rem;
  }
  
  .woocommerce ul.products li.product .price {
    font-size: 0.95rem !important;
    margin: 0 0.7rem 0.7rem !important;
  }
  
  .woocommerce ul.products li.product .add_to_cart_button {
    width: calc(100% - 1.4rem) !important;
    margin: 0 0.7rem 0.7rem !important;
    padding: 0.5rem !important;
    font-size: 0.7rem !important;
  }
  
  .woocommerce ul.products li.product .added_to_cart {
    margin: 0 0.7rem 0.7rem !important;
    font-size: 0.7rem !important;
  }
}

/* Desktop WooCommerce products adjustments */
@media (min-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)) !important;
    gap: 1.5rem !important;
  }
  
  .woocommerce ul.products li.product .onsale {
    top: 8px;
    left: 8px;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
  }
  
  .woocommerce ul.products li.product img {
    height: 180px;
  }
  
  .woocommerce ul.products li.product h2 {
    font-size: 1rem !important;
    margin: 0.8rem !important;
    min-height: 2.2rem;
  }
  
  .woocommerce ul.products li.product .price {
    font-size: 1.05rem !important;
    margin: 0 0.8rem 0.8rem !important;
  }
  
  .woocommerce ul.products li.product .add_to_cart_button {
    width: calc(100% - 1.6rem) !important;
    margin: 0 0.8rem 0.8rem !important;
    padding: 0.6rem !important;
    font-size: 0.75rem !important;
  }
  
  .woocommerce ul.products li.product .added_to_cart {
    margin: 0 0.8rem 0.8rem !important;
    font-size: 0.75rem !important;
  }
}

/* Your Specific Category Icons & Support */
body.tax-product_cat .woocommerce-products-header::before {
  content: "🎣";
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.6rem;
}

/* Your Category-specific headers with correct icons */
body.tax-product_cat-reels .woocommerce-products-header::before { content: "⚙️"; }
body.tax-product_cat-fishing-rods .woocommerce-products-header::before { content: "🎣"; }
body.tax-product_cat-combo-fishing-rod-reel .woocommerce-products-header::before { content: "🎯"; }
body.tax-product_cat-fishing-line .woocommerce-products-header::before { content: "🧵"; }
body.tax-product_cat-baits-lures .woocommerce-products-header::before { content: "🪝"; }
body.tax-product_cat-soft-baits .woocommerce-products-header::before { content: "🐛"; }
body.tax-product_cat-hard-baits .woocommerce-products-header::before { content: "💎"; }
body.tax-product_cat-swimbaits .woocommerce-products-header::before { content: "🐟"; }
body.tax-product_cat-jigs .woocommerce-products-header::before { content: "⚓"; }
body.tax-product_cat-frogs .woocommerce-products-header::before { content: "🐸"; }
body.tax-product_cat-spinnerbaits .woocommerce-products-header::before { content: "💫"; }
body.tax-product_cat-buzzbaits .woocommerce-products-header::before { content: "⚡"; }
body.tax-product_cat-umbrella-rigs .woocommerce-products-header::before { content: "☂️"; }
body.tax-product_cat-lure-making-customization .woocommerce-products-header::before { content: "🔨"; }
body.tax-product_cat-hooks-weights-terminal-tackle .woocommerce-products-header::before { content: "🪝"; }
body.tax-product_cat-accessories .woocommerce-products-header::before { content: "🔧"; }
body.tax-product_cat-storage .woocommerce-products-header::before { content: "📦"; }
body.tax-product_cat-trolling-motors .woocommerce-products-header::before { content: "🚤"; }
body.tax-product_cat-fish-finders .woocommerce-products-header::before { content: "📡"; }
body.tax-product_cat-boating-accessories .woocommerce-products-header::before { content: "⛵"; }
body.tax-product_cat-apparel .woocommerce-products-header::before { content: "👕"; }
body.tax-product_cat-kayak-fishing .woocommerce-products-header::before { content: "🛶"; }
body.tax-product_cat-camping .woocommerce-products-header::before { content: "⛺"; }
body.tax-product_cat-lazy-wader-brand .woocommerce-products-header::before { content: "🦺"; }

/* Pagination - Mobile First */
.woocommerce nav.woocommerce-pagination {
  text-align: center;
  margin-top: 1.2rem;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex !important;
  gap: 0.15rem;
  background: white;
  padding: 0.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
  justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li {
  margin: 0 !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  padding: 0.25rem 0.5rem !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  color: var(--primary-color) !important;
  transition: all 0.3s ease !important;
  font-size: 0.75rem !important;
  min-width: 26px;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--primary-color) !important;
  color: white !important;
}

/* Tablet pagination adjustments */
@media (min-width: 768px) {
  .woocommerce nav.woocommerce-pagination {
    margin-top: 1.6rem;
  }
  
  .woocommerce nav.woocommerce-pagination ul {
    gap: 0.2rem;
    padding: 0.6rem;
  }
  
  .woocommerce nav.woocommerce-pagination ul li a,
  .woocommerce nav.woocommerce-pagination ul li span {
    padding: 0.3rem 0.6rem !important;
    font-size: 0.8rem !important;
    min-width: 30px;
  }
}

/* Desktop pagination adjustments */
@media (min-width: 1024px) {
  .woocommerce nav.woocommerce-pagination {
    margin-top: 2rem;
  }
  
  .woocommerce nav.woocommerce-pagination ul {
    gap: 0.3rem;
    padding: 0.8rem;
  }
  
  .woocommerce nav.woocommerce-pagination ul li a,
  .woocommerce nav.woocommerce-pagination ul li span {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.85rem !important;
    min-width: 34px;
  }
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Enhanced Cart Page Styles - Mobile First */
.woocommerce-cart-form table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.75rem;
}

.woocommerce-cart-form th,
.woocommerce-cart-form td {
  padding: 0.5rem;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}

.woocommerce-cart-form th {
  background: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 0.7rem;
}

.cart-collaterals {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.checkout-button {
  background: var(--accent-color) !important;
  color: white !important;
  padding: 0.6rem 1.2rem !important;
  border: none !important;
  border-radius: 5px !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-size: 0.75rem !important;
  width: 100%;
}

.checkout-button:hover {
  background: #e55a2b !important;
}

/* Tablet cart adjustments */
@media (min-width: 768px) {
  .woocommerce-cart-form table {
    margin-bottom: 1.3rem;
    font-size: 0.8rem;
  }
  
  .woocommerce-cart-form th,
  .woocommerce-cart-form td {
    padding: 0.7rem;
  }
  
  .woocommerce-cart-form th {
    font-size: 0.75rem;
  }
  
  .cart-collaterals {
    padding: 1.3rem;
  }
  
  .checkout-button {
    padding: 0.7rem 1.4rem !important;
    font-size: 0.8rem !important;
    width: auto;
  }
}

/* Desktop cart adjustments */
@media (min-width: 1024px) {
  .woocommerce-cart-form table {
    margin-bottom: 1.6rem;
    font-size: 0.85rem;
  }
  
  .woocommerce-cart-form th,
  .woocommerce-cart-form td {
    padding: 0.8rem;
  }
  
  .woocommerce-cart-form th {
    font-size: 0.8rem;
  }
  
  .cart-collaterals {
    padding: 1.6rem;
  }
  
  .checkout-button {
    padding: 0.8rem 1.6rem !important;
    font-size: 0.9rem !important;
  }
}

/* CRITICAL: Mobile navigation must never wrap */
@media (max-width: 767px) {
  /* Make sure header content never wraps */
  .header-content {
    flex-wrap: nowrap !important;
  }
  
  /* Ensure single line header */
  .site-header {
    min-height: 35px;
    max-height: 35px;
  }
}