/*
Theme Name: Mark Ormrod Theme (version 2.0)
Theme URI: https://www.snarterconsulting.co.uk
Author: Andrew Robbins .JP MBCS
Description: A full‑width WordPress theme with a sticky header (logo left, menu center, social icons right) and two custom page templates.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fullwidth-sticky
*/

/* --- Base Reset & Typography --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen; line-height: 1.6; color: #222; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* --- Layout --- */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.08);
}
.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
}
.site-branding { flex: 0 0 auto; }
.header-nav { flex: 1 1 auto; text-align: center; }
.header-nav ul { list-style: none; display: inline-flex; gap: 2rem; }
.social-nav { flex: 0 0 auto; }
.social-nav ul { list-style: none; display: inline-flex; gap: 1rem; }
.social-nav a { font-size: 1.25rem; }

/* --- Page Header --- */
.page-header {
    width: 100%;
    background: #f5f5f5;
    padding: 3rem 1rem;
    text-align: center;
}
.page-header h1 { 
	margin: 0; 
	font-size: 2rem;
	color: #d70201;
}

/* --- Content --- */
.site-main {
	width: 100%;
	max-width: none;      /* remove hard cap */
	margin: 0;            /* no centering margins */
	padding: 2rem 1rem;   /* keep some breathing space */
}

/* --- Footer --- */
.site-footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 1.5rem 1rem;
}
/* --- Make the custom logo fluid & cap its height --- */
.site-branding img.custom-logo {
	max-width: 100%;   /* shrink on small screens */
	height: auto;      /* keep aspect ratio */
	max-height: 80px;  /* adjust to taste */
	max-width:120px;
}
@media (min-width: 768px) {
	.site-branding img.custom-logo {
		max-height: 120px;   /* a bit larger on bigger viewports */
	}
}
.fixed-banner {
	width: 100%;            /* pick the exact box size you need */
	height: 850px;
	background-size: cover;  /* fill, crop overflow */
	background-position: center;
	background-repeat: no-repeat;
}
/* Three-column repeater */
.acf-three-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 3rem auto;
	width: 100%;
	max-width: 1300px; /* remove or change for full edge-to-edge */
}

.acf-col {
	text-align: center;
	padding: 1.5rem;
	border: 1px solid #eee;
	border-radius: 6px;
}

.acf-col-img img   { max-width: 80px; height: auto; margin-bottom: 1rem; }
.acf-col-title     { margin: 0 0 .5rem; font-size: 1.25rem; font-weight: 600; }
.acf-col-text      { margin-bottom: 1rem; font-size: .95rem; line-height: 1.5; }

.acf-col-link .button {
	display: inline-block;
	padding: .6rem 1.4rem;
	background: #d70201;
	color: #fff;
	border-radius: 4px;
	transition: background .2s;
}
.acf-col-link .button:hover { background: #d70201; }

/* ==========================================================================
   Theme-Aligned Blog Styles (v2 - Enhanced Layout & Style)
   ========================================================================== */

/* Constrain Blog Page Width */
.page-template-blog .site-main > .section.blog-page {
    max-width: 1300px; /* Matches the max-width of your header and other elements */
    margin-left: auto;
    margin-right: auto;
}

/* Blog Page Header */
.blog-page > .page-header {
    background-color: #f4f4f4;
    text-align: center;
    padding: 3rem 2rem;
    margin: -2rem -1rem 3rem; /* Adjusts for .site-main padding to go full-width */
}

.blog-page .page-title {
    color: #d70201;
    font-size: 2.5rem;
}

/* Post Grid Container */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 2rem;
    margin-top: 2rem;
}

/* Refined Post Grid Card */
.post-grid-item {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-left: 4px solid #d70201; /* Theme red accent */
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Image container and hover effect */
.post-grid-item .post-thumbnail {
    overflow: hidden; /* This is crucial for the zoom effect */
    line-height: 0;
}

.post-grid-item .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease; /* Smooth zoom transition */
}

.post-grid-item:hover .post-thumbnail img {
    transform: scale(1.05); /* The zoom effect */
}

.post-grid-item .post-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Typography within the Card */
.post-grid-item .entry-title {
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
}

.post-grid-item .entry-title a {
    text-decoration: none;
    color: #222; /* Align with main body text */
    font-weight: 600;
}
.post-grid-item .entry-title a:hover {
    color: #d70201;
}


.post-grid-item .entry-meta {
    display: flex; /* Use flexbox for alignment */
    flex-wrap: wrap; /* Allow wrapping */
    gap: 1rem; /* Space between meta items */
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.post-grid-item .entry-meta span {
    display: flex;
    align-items: center;
}

.post-grid-item .entry-meta i {
    margin-right: 0.5em; /* Space between icon and text */
    color: #aaa; /* Subtle icon color */
}

.post-grid-item .entry-excerpt {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    flex-grow: 1;
}

/* Button Style */
.post-grid-item .read-more-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    background-color: #d70201; /* Using theme red */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.post-grid-item .read-more-button:hover {
    background-color: #d70201;
    transform: translateY(-2px);
}

/* Pagination Styling (No Changes) */
.pagination {
    margin-top: 3rem;
    text-align: center;
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #d70201;
    transition: background-color 0.2s, color 0.2s;
}
.pagination a:hover,
.pagination span.current {
    background-color: #d70201;
    color: #ffffff;
    border-color: #d70201;
}

/* Responsive Grid Adjustments (No Changes) */
@media (max-width: 992px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ==========================================================================
   Single Post Page Styles
   ========================================================================== */

/* Header Banner for Single Posts */
.single-post-header {
    /* Uses .page-header styles by default */
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.single-post-header .entry-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
	color:#d70201;
}

/* Post Meta Data (Date, Author, Categories) */
.single-post-header .entry-meta {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.single-post-header .entry-meta span {
    display: inline-block;
    margin: 0 0.75rem;
}
.single-post-header .entry-meta a {
    color: #d70201; /* Use theme's link color */
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.single-post-header .entry-meta a:hover {
    color: #d70201;
}

/* Featured Image on Single Post */
.post-thumbnail-single {
    width: 100%;
    max-height: 550px; /* Optional: cap the height */
    overflow: hidden;
    margin-bottom: 3rem;
    background: #f0f0f0; /* Fallback color */
}
.post-thumbnail-single img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop image to fit container */
}

/* Content Wrapper for Readability */
.entry-content-wrapper {
    max-width: 800px; /* Constrain text width for readability */
    margin: 0 auto; /* Center the content column */
    padding: 0 1rem; /* Add some space on mobile */
}

/* Typography inside the post content */
.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
    margin-bottom: 1.5em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin: 2em 0 1em;
}
.entry-content h2 { font-size: 1.8rem; }
.entry-content h3 { font-size: 1.5rem; }

.entry-content blockquote {
    border-left: 3px solid #d70201;
    padding-left: 1.5em;
    font-style: italic;
    color: #555;
}

/* Post Tags below content */
.entry-footer {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-size: 0.9rem;
}
.tags-links a {
    display: inline-block;
    background: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-right: 0.5rem;
    transition: background .2s;
}
.tags-links a:hover {
    background: #e0e0e0;
}

/* Previous/Next Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    margin-top: 4rem;
    padding-top: 2rem;
}
.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}
.post-navigation a {
    display: block;
    max-width: 45%;
    color: #d70201;
    font-weight: 600;
}
.post-navigation a:hover {
    color: #d70201;
}
.post-navigation .nav-previous { text-align: left; }
.post-navigation .nav-next { text-align: right; }
.post-navigation .nav-title-meta {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.25rem;
}

/* Comments Section Basic Styling */
.comments-area {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.comment-form .submit {
    display: inline-block;
	padding: .8rem 1.6rem;
	background: #d70201;
	color: #fff;
    border: none;
	border-radius: 4px;
	transition: background .2s;
    cursor: pointer;
}
.comment-form .submit:hover {
    background: #d70201;
}


/* Responsive Adjustments for Single Posts */
@media (max-width: 768px) {
    .single-post-header .entry-title {
        font-size: 2rem;
    }
    .single-post-header .entry-meta span {
        display: block;
        margin: 0.5rem 0;
    }
}
/* ==========================================================================
   Footer Widgets Styles
   ========================================================================== */

.footer-widgets-container {
    background: #1a1a1a; /* A slightly lighter black than the main footer for contrast */
    color: #ccc;
    padding: 4rem 2rem;
    border-bottom: 1px solid #333; /* Separator line */
}

.footer-widgets-inner {
    max-width: 1300px; /* Match your .header-inner width */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

/* Responsive adjustments for footer columns */
@media (max-width: 992px) {
    .footer-widgets-inner {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}
@media (max-width: 600px) {
    .footer-widgets-inner {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* Styling for individual widgets */
.footer-widget-col .widget {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-widget-col .widget-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

/* Underline effect for widget titles */
.footer-widget-col .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #d70201; /* Using your theme's red */
}

/* Styling for lists within widgets (e.g., Pages, Categories, Recent Posts) */
.footer-widget-col .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-col .widget ul li {
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.75rem;
}
.footer-widget-col .widget ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Styling for links within widgets */
.footer-widget-col .widget a {
    color: #ccc;
    transition: color 0.2s;
}
.footer-widget-col .widget a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Make sure the main copyright footer area has some padding */
.site-info {
    padding: 1.5rem 1rem;
}
/* ==========================================================================
   Footer Social Media Icons (High-Compatibility Version)
   ========================================================================== */

/* This targets the <ul> inside the widget to ensure proper layout */
.footer-widget-col .widget .footer-social-icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Allows icons to wrap on smaller screens */
    /* The 'gap' property has been removed from here */
}

/* We create the space by adding margin to each list item instead */
.footer-widget-col .widget .footer-social-icons li {
    padding: 0;
    margin: 0 1.25rem 1rem 0; /* Creates space on the right and bottom of each icon */
}

/* This more specific selector ensures the color is not overridden */
.footer-widget-col .widget .footer-social-icons a {
    display: inline-block;
    color: #ffffff;
    background-color: transparent;
    font-size: 1.5rem; /* Size of the icon */
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-widget-col .widget .footer-social-icons a:hover {
    color: #d70201; /* Changes to your theme's red on hover */
    transform: translateY(-3px);
}
/* Constrain Blog Page Width */
.page-template-blog .site-main > .section.blog-page {
    max-width: 1300px; /* Matches the max-width of your header and other elements */
    margin-left: auto;
    margin-right: auto;
}
/* ==========================================================================
   Widget WYSIWYG Editor & Text Alignment Styles
   ========================================================================== */

/* 1. Ensure strong/bold and em/italic tags work correctly inside widgets */
/* This overrides any potential "font-weight: normal" reset in the theme */
.footer-widget-col .widget strong,
.footer-widget-col .widget b {
    font-weight: bold;
}

.footer-widget-col .widget em,
.footer-widget-col .widget i {
    font-style: italic;
}

/* 2. Support for WordPress Block Editor alignment classes inside widgets */
/* When you align text, WordPress adds these classes to the paragraph tag */
.footer-widget-col .widget .has-text-align-center {
    text-align: center;
}

.footer-widget-col .widget .has-text-align-right {
    text-align: right;
}

.footer-widget-col .widget .has-text-align-left {
    text-align: left;
}

/* 3. Ensure paragraphs within widgets don't have a forced alignment */
/* This helps inline text-align styles from the editor work more reliably */
.footer-widget-col .widget p {
    text-align: inherit; /* Inherit alignment from parent, allowing editor styles to take precedence */
}
/* ==========================================================================
   Minimalist Vertical Footer Navigation Menu (Left-Aligned)
   ========================================================================== */

/* Target only the Navigation Menu widget in the footer */
.footer-widget-col .widget_nav_menu {
    text-align: left; /* This is the new line that fixes the alignment */
}

.footer-widget-col .widget_nav_menu ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
}

/* Style each list item */
.footer-widget-col .widget_nav_menu ul li {
    padding: 0;
    margin: 0;
    /* No border-bottom for a clean look */
}

/* Style the links themselves for a clean look */
.footer-widget-col .widget_nav_menu li a {
   /* display: block; */ /* Make the entire area clickable */
    padding: 0.5rem 0; /* Vertical space for a compact feel */
    color: #ccc;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-widget-col .widget_nav_menu li a:hover {
    color: #fff; /* On hover, text becomes white */
}
/* ==========================================================================
   Footer Newsletter Signup Form
   ========================================================================== */

.footer-widget-col .widget .newsletter-signup-widget p {
    margin-bottom: 1rem;
}

/* Use flexbox to align the input and button on one line */
.newsletter-signup-widget form {
    display: flex;
    width: 100%;
}

/* Style for the email input field */
.newsletter-signup-widget input[type="email"] {
    flex-grow: 1; /* Allows the input to take up the available space */
    background: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 0.8rem;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    /* Round the left corners, but not the right */
    border-radius: 5px 0 0 5px;
}

.newsletter-signup-widget input[type="email"]:focus {
    outline: none;
    border-color: #d70201; /* Highlight with theme color on focus */
}

/* Style for the placeholder text */
.newsletter-signup-widget input[type="email"]::placeholder {
    color: #999;
}

/* Style for the submit button */
.newsletter-signup-widget button[type="submit"] {
    background: #d70201;
    color: #fff;
    border: 1px solid #d70201; /* Matching border */
    border-left: none; /* Remove left border to merge with input field */
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 1rem; /* Icon size */
    /* Round the right corners, but not the left */
    border-radius: 0 5px 5px 0;
}

.newsletter-signup-widget button[type="submit"]:hover {
    background: #d70201;
}

/* A class for screen-reader-only text, used on the label for accessibility */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}
/* ==========================================================================
   Welcome Popup Styles
   ========================================================================== */

.popup-overlay {
    /* Hidden by default */
    display: none; 

    /* Full screen overlay */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    z-index: 9999; /* Ensure it's on top of everything */

    /* Use flexbox to center the content box */
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #ffffff;
    color: #222;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-width: 500px; /* Max width of the popup box */
    width: 90%; /* Responsive width */
    position: relative; /* For positioning the close button */
    text-align: center;
}

.popup-content h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #000;
}

.popup-content p {
    margin-bottom: 2rem;
}

/* Using the existing .button style from your theme for consistency */
.popup-content .button {
	display: inline-block;
	padding: .8rem 1.6rem;
	background: #006AA7; /* Your theme's blue */
	color: #fff;
	border-radius: 4px;
	transition: background .2s;
    text-decoration: none;
}
.popup-content .button:hover {
    background: #004F7A;
}


/* Close Button ('X') */
.popup-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2.5rem;
    line-height: 1;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
}

.popup-close:hover {
    color: #333;
}
/* Container */
.wc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

/* Shop header tools */
.wc-archive-header {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}
.wc-archive-tools {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Product grid spacing (uses Woo’s .products list) */
ul.products {
  display: grid !important;
  grid-template-columns: repeat( auto-fill, minmax(240px, 1fr) );
  gap: 20px;
}

/* Single: two-column layout */
.wc-single-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .wc-single-grid { grid-template-columns: 1fr; }
}

/* Tidy up images */
.wc-single-media .woocommerce-product-gallery {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 8px;
}

/* Summary spacing */
.wc-single-summary .price {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 8px 0 12px;
}
.wc-single-summary .woocommerce-product-details__short-description {
  margin-bottom: 16px;
}
.wc-single-summary form.cart {
  margin: 16px 0;
}

/* Tabs */
.wc-single-tabs {
  margin-top: 24px;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

/* Breadcrumb spacing */
.woocommerce-breadcrumb { margin-bottom: 12px; }

/* =============== Box ALL Woo pages (block theme safe) =============== */
:root{
  --wc-boxed-width: 1140px;   /* change to 1080/1200 if you prefer */
  --wc-pad: 28px;
  --wc-red: #d70201;
  --wc-red-dark: #b50101;
  --wc-border: #e9e9ee;
}

/* Shop archive (shop, category, tags) */
.post-type-archive-product .wp-site-blocks main,
.tax-product_cat .wp-site-blocks main,
.tax-product_tag .wp-site-blocks main,
/* Single product */
.single-product .wp-site-blocks main,
/* Cart & Checkout (Woo block pages) */
.woocommerce-cart .wp-site-blocks main,
.woocommerce-checkout .wp-site-blocks main,
/* My Account */
.woocommerce-account .wp-site-blocks main{
  max-width: var(--wc-boxed-width);
  margin: 0 auto;
  padding: var(--wc-pad) 20px;
  box-sizing: border-box;
}

/* Buttons on-brand */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-block-woocommerce-product-button .wc-block-components-product-button__button,
.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-container .wp-block-button__link{
  background: var(--wc-red);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 12px 16px;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wp-block-woocommerce-product-button .wc-block-components-product-button__button:hover,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-cart__submit-container .wp-block-button__link:hover{
  background: var(--wc-red-dark);
  color:#fff;
}

/* Cards / tables subtle polish */
.wc-block-grid__products .wc-block-grid__product,
.woocommerce table.shop_table{
  border:1px solid var(--wc-border);
  border-radius:8px;
}
.woocommerce table.shop_table th{ background:#f8f8f8; }
.woocommerce table.shop_table td,
.woocommerce table.shop_table th{ padding:12px 14px; }

/* Notices */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error{
  border-left:4px solid var(--wc-red);
  border-radius:8px;
}

/* Product title accent */
.single-product .product .product_title,
.post-type-archive-product .wp-site-blocks h1,
.tax-product_cat .wp-site-blocks h1{ color: var(--wc-red); }
/* Basic header layout */
.site-header {
	background: #fff;
	padding: 10px 20px;
	border-bottom: 1px solid #eee;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

/* Navigation default (desktop) */
.main-nav .menu {
	list-style: none;
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.main-nav .menu li a {
	text-decoration: none;
	color: #222;
	font-weight: 600;
}

/* Hamburger icon */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 25px;
	height: 18px;
	cursor: pointer;
}

.hamburger span {
	display: block;
	height: 3px;
	background: #000;
	border-radius: 3px;
	transition: 0.3s;
}

/* Mobile styles */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}
	.main-nav {
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background: #fff;
		border-top: 1px solid #eee;
		padding: 15px 0;
	}
	.main-nav.show {
		display: block;
	}
	.main-nav .menu {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
	/* Animate hamburger to "X" */
	.hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}
	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}
}

