/* ===== General ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Outer container full width; inner content centered */
.container {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0;
}

/* ===== Top Header Row ===== */
.top-header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Inner content width limited, centered */
.top-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* logo | center links | search */
    gap: 20px;
    align-items: center;
    box-sizing: border-box;
}

.header-logo img {
    max-height: 148px;
    max-width: 300px;
}

/* Fixed header links (middle section) */
.header-nav-fixed ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
}

.header-nav-fixed a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    padding: 6px 4px;
    border-bottom: 2px solid transparent;
}

.header-nav-fixed a:hover,
.header-nav-fixed a:focus {
    color: #11aac7;
    border-bottom-color: #11aac7;
    outline: none;
}

/* ===== Search Box (Right Side) ===== */
.header-search {
    display: flex;
    align-items: center;      /* vertically center input and button */
    gap: 5px;                 /* space between input and button */
    justify-self: end;
}

.header-search input[type="search"] {
    width: 260px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.header-search button {
    padding: 8px 12px;
    border: 0;
    background: #11aac7;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    height: 38px; /* matches input height */
}

.header-search button:hover {
    filter: brightness(0.92);
}

/* ===== Second Row - Nav + Cart ===== */
.nav-cart-row {
    background: #11aac7;
    padding: 10px 0;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;      /* ✅ allow dropdown to show outside */
    position: relative;     /* ✅ ensures proper stacking */
    z-index: 1000;          /* ensure nav is above other content */
}

/* Inner nav + cart content width limited and centered */
.nav-cart-content {
    max-width: 1200px;       /* match top header */
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: visible;       /* ✅ allow dropdown to escape */
}

/* Primary navigation (header menu) */
.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

/* Menu links */
.primary-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 4px;
    border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus {
    border-bottom-color: rgba(255,255,255,0.85);
    outline: none;
}

/* Parent li must be relative for dropdown positioning */
.primary-nav li {
    position: relative;
}

/* Dropdown menus */
.primary-nav li ul {
    position: absolute;     /* position relative to parent li */
    top: 100%;              /* below the parent item */
    left: 0;
    background: #0f98b2;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    min-width: 220px;
    display: none;           /* hidden by default */
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    border-radius: 8px;
    z-index: 9999;           /* ensure it layers above everything */
}

/* Show dropdown on hover */
.primary-nav li:hover > ul {
    display: block;
}

/* Dropdown items */
.primary-nav li ul li {
    width: 100%;
}

/* Dropdown links */
.primary-nav li ul a {
    display: block;
    padding: 10px 14px;
    border-bottom: none;
}

.primary-nav li ul a:hover,
.primary-nav li ul a:focus {
    background: rgba(255,255,255,0.12);
}

/* Optional: handle submenu inside submenu if needed */
.primary-nav li ul li ul {
    top: 0;
    left: 100%;
    display: none;
}

.primary-nav li ul li:hover > ul {
    display: block;
}

/* Ensure smooth stacking */
.nav-cart-row,
.nav-cart-content,
.primary-nav li ul {
    position: relative;
}
/* Cart link */
.header-cart a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Header Menu - Horizontal & Dropdown */
.header-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.header-menu-nav li {
    position: relative;
}

.header-menu-nav a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    display: block;
}

.header-menu-nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #11aac7;
    padding: 0;
    margin: 0;
    list-style: none;
    min-width: 200px;
}

.header-menu-nav li:hover > ul {
    display: block;
}

.header-menu-nav li ul li {
    width: 100%;
}

.header-menu-nav li ul li a {
    padding: 10px;
    color: #fff;
}

.header-menu-nav li ul li a:hover {
    background: #0e8fa1;
}
/* ===== Footer ===== */
.footer {
    background: #111;          /* Dark footer background */
    color: #fff;               /* White text */
    padding: 40px 20px;        /* Top/bottom padding and small side padding */
    box-sizing: border-box;
    width: 100%;
    font-family: Arial, sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;                 /* Space between columns */
    justify-content: space-between;
    box-sizing: border-box;
}

/* Footer columns */
.footer-column {
    flex: 1;                   /* Equal width columns */
    display: flex;
    flex-direction: column;
}

/* Column 1 - Logo */
.footer-column.logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

/* Column 2 - GAS Sales hours */
.footer-column.hours h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column.hours p {
    margin: 4px 0;
    line-height: 1.5;
}

/* Column 3 - Contact info */
.footer-column.contact h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column.contact p {
    margin: 4px 0;
    line-height: 1.5;
}

/* Links and email styling */
.footer-column.contact a {
    color: #11aac7;            /* Highlighted link color */
    text-decoration: none;
}

.footer-column.contact a:hover {
    text-decoration: underline;
}

/* Optional: Add a border line above footer for separation */
.footer::before {
    content: "";
    display: block;
    height: 1px;
    background: #333;
    margin-bottom: 20px;
}
/* ===== Homepage Hero Header ===== */
.homepage-hero {
    width: 100%;
    height: 350px;  /* adjust as needed */
    background-image: url('header-image.jpg'); /* replace with your hero image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Optional overlay for readability */
.homepage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35); /* dark overlay */
    z-index: 1;
}

.homepage-hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

/* ===== WooCommerce Products Section ===== */
.products-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box;
}

/* WooCommerce single product styling */
.products-section .product {
    flex: 1 1 calc(33.333% - 20px); /* 3 products per row */
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.products-section .product img {
    max-width: 100%;
    height: auto;
    display: block;
}

.products-section .product h2.woocommerce-loop-product__title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #333;
}

.products-section .product .price {
    font-weight: bold;
    color: #11aac7;
    margin-bottom: 10px;
}

.products-section .product a.button {
    background: #11aac7;
    color: #fff;
    border: 0;
    border-radius: 4px;
    padding: 10px 15px;
    margin: 0 10px 10px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.products-section .product a.button:hover {
    filter: brightness(0.92);
}

/* ===== Homepage Text Area ===== */
.homepage-text {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.homepage-text h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.homepage-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}
.products-grid {
    display: flex;
    flex-wrap: wrap;       /* allow multiple rows */
    gap: 20px;             /* space between products */
    justify-content: space-between; /* distribute evenly */
}

.products-grid > * {
    flex: 0 0 calc(33.333% - 13.333px); /* 3 per row accounting for gap */
    box-sizing: border-box;
}
.homepage-hero {
    background-image: url('https://www.huddersfieldgas.co.uk/wp-content/uploads/2025/08/Hero.png');
    background-size: cover;
    background-position: center; /* keep the image centered */
    height: 80vh;
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center;     /* center vertically */
    color: #ffffff;
    text-align: center;
    position: relative;
}

.homepage-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; /* spacing between heading and buttons */
}

.homepage-hero h1 {
    font-size: 3rem;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem; /* space between buttons */
}

.btn {
    padding: 0.8rem 2rem;
    background-color: #ff6f00;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #e65c00;
}

.btn-secondary {
    background-color: #ffffff;
    color: #ff6f00;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}
/* Add spacing at the top */
.woocommerce .product {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 50px auto 0 auto; /* top margin */
    gap: 30px 40px; /* horizontal gap between columns */
padding-top: 30px;
}

/* Images column */
.woocommerce .product .images {
    flex: 1 1 45%;
}

.woocommerce .product .images img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
    border-radius: 10px; /* subtle rounding */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* soft shadow */
}

.woocommerce .product .product-thumbnails {
    display: flex !important;
    margin-top: 10px !important;
    gap: 5px !important;
    overflow-x: auto !important; /* allows horizontal scroll if many thumbnails */
    padding-bottom: 5px !important;
    justify-content: flex-start !important;
}

.woocommerce .product .product-thumbnails img {
    width: 95px !important;    /* balanced thumbnail width */
    height: 95px !important;   /* keeps square shape */
    object-fit: cover !important;
    cursor: pointer !important;
    border-radius: 5px !important;
    border: 2px solid transparent !important;
    flex: 0 0 auto !important; /* prevents shrinking */
    transition: border-color 0.2s, transform 0.2s !important;
    transform-origin: center center !important; /* scale from center */
}

.woocommerce .product .product-thumbnails img:hover {
    border-color: #11aac7 !important;
    transform: scale(0.9) !important; /* smaller scale to avoid overlap */
}/* Summary column */
.woocommerce .product .summary {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Title */
.woocommerce .product .summary .product_title {
    color: #11aac7;
    margin-bottom: 10px;
    font-size: 2em;
}

/* Price */
.woocommerce .product .summary .price {
    color: #11aac7;
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Stock, SKU, categories spacing */
.woocommerce .product .summary .stock,
.woocommerce .product .summary .sku,
.woocommerce .product .summary .categories {
    margin-bottom: 10px;
}


/* Full description spacing */
.woocommerce .product .full-description {
    flex: 1 1 100%;
    margin-top: 30px; /* gap above description */
    margin-bottom: 50px; /* gap below description */
    background-color: #f0f8fb; 
    padding: 20px;
    border-left: 5px solid #11aac7;
    border-radius: 8px;
}

.woocommerce .product .full-description h2 {
    color: #11aac7;
    margin-bottom: 10px;
}

.woocommerce .product .full-description .description-content {
    color: #333;
    line-height: 1.6;
}
/* Add to Cart button */
.woocommerce .product .single_add_to_cart_button {
    background-color: #11aac7 !important; 
    color: #fff !important;               
    border: none;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: 48px; /* fixed height to match quantity */
    line-height: 1.3;
}

/* Quantity input styling */
.woocommerce div.quantity input.qty {
    border: 2px solid #11aac7;
    border-radius: 5px;
    width: 60px;
    text-align: center;
    padding: 0 10px;
    font-size: 1em;
    color: #333;
    height: 48px; /* match button height */
    box-sizing: border-box; /* ensures padding included in height */
}

/* Optional: increase spacing between quantity and button */
.woocommerce div.quantity {
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
}
/* Cart page wrapper */
.woocommerce-cart-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

/* Table styling */
.woocommerce-cart table.shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
    padding: 15px;
    vertical-align: middle;
}

/* Remove default borders */
.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
    border: none;
}

/* Quantity input height matches button */
.woocommerce-cart input.qty {
    height: 40px;
    width: 60px;
    padding: 0 10px;
    font-size: 1em;
}

/* Update cart button */
.woocommerce-cart button[name="update_cart"] {
    background-color: #11aac7 !important;
    color: #fff !important;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s;
}

.woocommerce-cart button[name="update_cart"]:hover {
    background-color: #0e8ea0 !important;
}

/* Remove remove-product link underline */
.woocommerce-cart a.remove {
    color: #11aac7;
    text-decoration: none;
    font-size: 1.2em;
}

.woocommerce-cart a.remove:hover {
    color: #0e8ea0;
}

/* Cart totals box */
.woocommerce-cart .cart_totals {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #11aac7;
    border-radius: 10px;
    background: #f9f9f9;
}

/* Proceed to checkout button */
.woocommerce-cart .checkout-button {
    background-color: #11aac7 !important;
    color: #fff !important;
    border: none;
    border-radius: 5px;
    padding: 10px 25px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.2s;
}

.woocommerce-cart .checkout-button:hover {
    background-color: #0e8ea0 !important;
}
/* Ensure the product list uses a grid layout */
.shop-grid-container ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    box-sizing: border-box;
    list-style: none;
margin-top: 40px;
}
.shop-grid-container{
padding-top:30px;}

/* Style for individual product cards */
.shop-grid-container ul.products li.product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.2s;
    min-height: 400px; /* Adjust as needed */
    overflow: hidden;
width:100%;
}

/* Product images */
.shop-grid-container ul.products li.product img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Product titles */
.shop-grid-container ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
    min-height: 50px;
    flex-grow: 1;
    overflow-wrap: break-word;
color:#333;
}

/* Product prices */
.shop-grid-container ul.products li.product .price {
    margin: 10px 0;
    font-weight: bold;
color:#11aac7;
}

/* Add to cart button */
.shop-grid-container ul.products li.product .button {
    margin-top: auto;
    background: #11aac7;
    color: #fff;
    border-radius: 6px;
    padding: 10px 15px;
    text-decoration: none;
    transition: background 0.2s ease-in-out;
    display: inline-block;
}

.shop-grid-container ul.products li.product .button:hover {
    background: #005f8d;
}
/* Wrap search form in a flex row */
.header-search form {
    display: flex;
    align-items: center;
    gap: 8px; /* space between input and button */
}

/* Make input take available space */
.header-search input[type="search"] {
    flex: 1;
    padding: 8px 12px;
    font-size: 14px;
}

/* Style button */
.header-search button,
.header-search input[type="submit"] {
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    background: #11aac7;
    color: #fff;
    border: none;
    border-radius: 4px;
    white-space: nowrap;
}
/* =========================
   Floating Cart Icon
========================= */
#mini-cart-toggle {
    position: fixed;
    top: 90px; /* adjust if needed */
    right: 30px;
    background-color: #11aac7;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#mini-cart-toggle:hover {
    background-color: #0e91a3;
    transform: scale(1.05);
}

.cart-count {
    background: #ffffff;
    color: #11aac7;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 6px;
}

/* =========================
   Mini Cart Drawer
========================= */
.mini-cart-drawer {
    position: fixed;
    top: 0;
    right: -400px; /* hidden by default */
    width: 350px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -4px 0 12px rgba(0,0,0,0.2);
    z-index: 9998;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mini-cart-drawer.active {
    right: 0;
}

/* =========================
   Drawer Header
========================= */
.mini-cart-header {
    padding: 20px;
    background-color: #11aac7;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}

#mini-cart-close {
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
}

/* =========================
   Drawer Items
========================= */
.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.mini-cart-item {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.mini-cart-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
}

.mini-cart-info {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.mini-cart-name {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.mini-cart-qty,
.mini-cart-price {
    display: block;
    color: #555;
    font-size: 13px;
}

.mini-cart-remove {
    color: #ff0000;
    text-decoration: none;
    font-size: 20px;
    align-self: flex-start;
    margin-left: 5px;
}

/* =========================
   Drawer Footer
========================= */
.mini-cart-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
}

.mini-cart-subtotal {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}

.mini-cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-cart-buttons .mini-cart-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #11aac7;
    color: #ffffff;
    padding: 10px 0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.mini-cart-buttons .mini-cart-btn:hover {
    background-color: #0e91a3;
}

.mini-cart-buttons .mini-cart-btn.checkout {
    background-color: #0e91a3;
}

.mini-cart-buttons .mini-cart-btn.checkout:hover {
    background-color: #0d7f8e;
}

/* =========================
   Scrollbar Styling
========================= */
.mini-cart-items::-webkit-scrollbar {
    width: 6px;
}

.mini-cart-items::-webkit-scrollbar-thumb {
    background-color: #11aac7;
    border-radius: 3px;
}

.mini-cart-items::-webkit-scrollbar-track {
    background: #f0f0f0;
}
/* Contact Page */
.contact-page {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

.contact-page h1 {
    text-align: center;
    color: #11aac7;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 700;
}

.contact-page p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #555;
}

/* Wrapper for details + form */
.contact-page .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-top: 30px;
}

/* Individual boxes */
.contact-details,
.contact-form {
    flex: 1 1 48%; /* roughly half width */
    min-width: 300px; /* stack on small screens */
    box-sizing: border-box;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Details box */
.contact-details {
    background: #f9f9f9;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-details a {
    color: #11aac7;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Form box */
.contact-form {
    background: #fff;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #11aac7;
    font-size: 22px;
}

/* Form styles */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}

.contact-form input[type="submit"] {
    background: #11aac7;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
    padding: 12px;
}

.contact-form input[type="submit"]:hover {
    background: #0e91ac;
}
ul.products::before,
ul.products li.product::before,
.shop-grid-container::before {
    content: none !important;
    display: none !important;
}
/* WooCommerce Pagination Improved */
.woocommerce-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    list-style: none;
    padding-left: 0;
    gap: 12px;
padding-bottom: 10px;
    flex-wrap: wrap; /* wrap on small screens */
}

.woocommerce-pagination li {
    display: inline-block;
}

.woocommerce-pagination li a,
.woocommerce-pagination li span {
    display: inline-block;
    padding: 10px 16px;
    border: 2px solid #11aac7;
    border-radius: 8px;
    color: #11aac7;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
    min-width: 42px;
    text-align: center;
}

.woocommerce-pagination li a:hover {
    background: #11aac7;
    color: #fff;
    transform: scale(1.05); /* slight pop effect */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.woocommerce-pagination li span.current {
    background: #11aac7;
    color: #fff;
    border-color: #11aac7;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.woocommerce-pagination li .disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.woocommerce nav.woocommerce-pagination ul{
border: 0px solid #cfc8d8;
     border-right: 0;}
.woocommerce nav.woocommerce-pagination ul li{
border-right: 0px solid #cfc8d8;}
/* My Account Page Container */
/* =========================
   My Account Page Container
========================= */
.my-account-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Page Title */
.my-account-container h2 {
    color: #11aac7;
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

/* =========================
   Navigation Tabs
========================= */
.woocommerce-MyAccount-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    list-style: none !important; /* remove bullets */
    padding: 0;
    margin: 0 0 25px;
}

.woocommerce-MyAccount-navigation li {
    margin: 0;
    flex: 1 1 130px;
    list-style: none !important;
}

.woocommerce-MyAccount-navigation li::before,
.woocommerce-MyAccount-navigation li a::before {
    content: none !important; /* remove pseudo bullets */
}

.woocommerce-MyAccount-navigation a {
    display: block;
    text-align: center;
    padding: 10px 16px;
    border-radius: 8px;
    background: #f5f5f5;
    color: #444;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation a:hover {
    background: #11aac7;
    color: #fff;
}

/* =========================
   Dashboard Description
========================= */
.woocommerce-MyAccount-content p:first-of-type {
    margin-bottom: 20px;
    font-size: 15px;
    color: #555;
}

.woocommerce-MyAccount-content p:first-of-type::before,
.woocommerce-MyAccount-content p:first-of-type::after {
    content: none !important;
}

/* =========================
   Forms & Tables
========================= */
.woocommerce-MyAccount-content {
    margin-top: 15px;
}

.woocommerce-MyAccount-content form,
.woocommerce-MyAccount-content table {
    width: 100%;
    margin-bottom: 25px;
}

.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="submit"],
.woocommerce-MyAccount-content select {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    box-sizing: border-box;
}

.woocommerce-MyAccount-content input[type="submit"] {
    background: #11aac7;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.25s ease;
}

.woocommerce-MyAccount-content input[type="submit"]:hover {
    background: #0e91ac;
}

/* =========================
   Table Styling
========================= */
.woocommerce-MyAccount-content table {
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
}

.woocommerce-MyAccount-content th,
.woocommerce-MyAccount-content td {
    padding: 10px 12px;
    border: 1px solid #eee;
    text-align: left;
}

.woocommerce-MyAccount-content th {
    background: #f9f9f9;
    color: #11aac7;
    font-weight: 600;
}
/* Hide hamburger menu on desktop */
.mobile-menu-toggle {
    display: none !important;
}

/* Show hamburger menu only on mobile */
@media only screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
    }
}