/* ===== General ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}
a{
    text-decoration: none;}
/* 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 !important;
    padding: 10px 0;
    border-bottom: 1px solid #e65c00;
    padding: 10px 0;

}

/* 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: 300px;
    max-width: 300px;
    margin-left: -100px;
}

/* 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: green !important;
    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 */
    margin-left: auto;        /* pushes it to the right */
        justify-self: end;      /* grid-specific, aligns the item to the right */
}

.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: white;
    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 */
    text-align: center;     /* center content horizontally */
}

/* Inner nav + cart content width limited and centered */
.nav-cart-content {
  max-width: max-content !important;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: visible;
}
/* Ensure child items don’t push each other */
.nav-cart-content > * {
    margin: 0;
    flex: 0 0 auto;
}

/* 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;
    font-size: 12px;
    margin-left: 300px;
}

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

.header-menu-nav a {
  text-decoration: none;
  color: grey !important;
  padding: 11px 15px;
  display: block;
  font-size: larger;
  font-weight: bold;
  transition: color 0.3s ease;
}

.header-menu-nav a:hover {
  color: black !important;
}

.header-menu-nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: ;
    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: White;          /* Dark footer background */
    color: grey;               /* White text */
    padding: 12px;       /* Top/bottom padding and small side padding */
    box-sizing: border-box;
    width: 100%;
    font-family: Arial, sans-serif;
}

.footer-content {
    max-width: 1530px;
    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: 400px;
    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: Grey;
    margin-bottom: 20px;
}
/* ===== Homepage Hero Header ===== */
.homepage-hero {
    width: 100%;
    height: 350px;  /* adjust as needed */
    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%;
    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: fit-content !important;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  box-sizing: border-box;
  justify-content: center; /* ✅ centers product items */
}
.product {
  text-align: center;
}

.product img {
  width: 100%;
  height: auto;               /* ensures the image keeps aspect ratio */
  object-fit: contain;        /* keeps the whole image visible */
  display: block;
  margin: 0 auto;
  border-radius: 8px;         /* optional: softer edges */
}
/* 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);
}
.product img,
.product .woocommerce-LoopProduct-link img {
  max-height: none;
  overflow: visible;
}
.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: Grey;
}

.products-section .product .price {
    font-weight: bold;
    color: Grey;
    margin-bottom: 13px;
}

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

.products-section .product a.button:hover {
    filter: brightness(0.92);
}
.brands-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.brands-section h2 {
  font-size: 2rem;
  margin-bottom: 30px; /* space above logos */
  font-weight: bold;
  color: #333;
}

.brands-logos-wrapper {
  overflow-x: auto; /* optional if many logos */
  white-space: nowrap; /* keeps logos in a single row */
}

.brands-logos {
  display: inline-flex; /* inline-flex avoids stretching container */
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.brands-logos img {
  max-width: 150px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.brands-logos img:hover {
  transform: scale(1.1);
  opacity: 0.85;
}


/* ===== 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: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 in a row */
    gap: 20px; /* space between items */
}
/* Force 4 products per row inside your custom section */
.products-section .products-grid.custom-four-grid {
    display: flex;
    flex-wrap: nowrap; /* prevents wrapping */
    justify-content: space-between;
    gap: 20px;
}

.products-section .products-grid.custom-four-grid .product {
    flex: 1 1 calc(25% - 20px); /* each takes 25% width minus gap */
    max-width: calc(25% - 20px);
    box-sizing: border-box;
}
.products-grid > * {
    flex: 0 0 calc(33.333% - 13.333px); /* 3 per row accounting for gap */
    box-sizing: border-box;
}
.homepage-hero {
    background-size: cover;
    height: 80vh;
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center;     /* center vertically */
    color: #ffffff;
    text-align: center;
    position: relative;
    background-position: center bottom -15px;
}

.homepage-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.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: gray !important;    margin-bottom: 10px;
    font-size: 2em;
}

/* Price */
.woocommerce .product .summary .price {
color: gray !important;
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;
}
.cart-actions {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;     /* aligns vertically */
  gap: 10px;               /* space between buttons */
  flex-wrap: wrap;         /* stack on small screens if needed */
  margin-top: 20px;        /* spacing from elements above */

}

/* make sure WooCommerce’s form behaves like a flex item */
.cart-actions form.cart {
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
}

/* adjust the add-to-cart button inside the form */
.cart-actions form.cart button.single_add_to_cart_button {
  margin: 0 !important;
  line-height: 1 !important;
  background-color: #FF6F00 !important;
}

/* style the view basket link */
.view-basket-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 2px solid grey;
  border-radius: 6px;
  color: grey;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  height: 30px;
}

.view-basket-button:hover {
  background-color: #11aac7;
  color: grey !important;
}


/* Full description spacing */
.woocommerce .product .full-description {
    flex: 1 1 100%;
    display: block;
    margin: 30px auto 100px auto !important;   /* top spacing 30px, bottom 100px to prevent footer overlap */
    background-color: #fff !important;          /* white background */
    padding: 20px;                   /* inner padding */
    border-radius: 8px;              /* rounded corners */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* soft shadow on all edges */
    position: relative;              /* ensures shadow appears above background layers */
    z-index: 1;                      /* avoid being covered by footer/background */
}
.description-content{
color:grey;}

/* Add to Cart button */
.woocommerce .product .single_add_to_cart_button {
    background: rgb(255, 111, 0) !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 grey !important;
    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:grey;
}

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

/* Add to cart button */
.shop-grid-container ul.products li.product .button {
    margin-top: auto;
    background: orange;
    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 */
    margin-right: -100px;
}

/* 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: #ff6f00 !important;
    color: #fff;
    border: none;
    border-radius: 4px;
    white-space: nowrap;
}
.cart-count {
    background: #ff4136;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    margin-left: 0.3rem;
}/* 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;
    }
}.view-basket-button:hover {
    background:white; !important;
    color:#fff;  
}.view-basket-button{
color: ;}

/* Initial hidden state */
.hero-content h1,
.hero-buttons a {
  opacity: 0;
  transform: translateY(30px); /* start slightly below */
}

/* Animate heading */
.hero-content h1 {
  animation: slideFadeIn 0.8s ease-out 0.2s forwards; /* forwards keeps final state */
}

/* Animate buttons with staggered delay */
.hero-buttons a:nth-child(1) {
  animation: slideFadeIn 0.8s ease-out 0.5s forwards;
}
.hero-buttons a:nth-child(2) {
  animation: slideFadeIn 0.8s ease-out 0.7s forwards;
}
.hero-buttons a:nth-child(3) {
  animation: slideFadeIn 0.8s ease-out 0.9s forwards;
}

/* Keyframes */
@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  background: #f8f8f8;
  border-top: 1px solid #e65c00;
  border-bottom: 3px solid #222;
  text-align: center;
  padding: 1.5rem;
  gap: 0.5rem;
}

.feature-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: Grey;
  border-left: 2px solid #ddd;
  padding: 0.5rem;
}

.feature-item:first-child {
  border-left: none;
}

.features h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.topfeatures {
   grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  background: #f8f8f8;
  border-top: 1px solid #e65c00;
  border-bottom: 0px  ;
  text-align: center;
  padding: 1.5rem;
  margin-top: -60px;
  display: flex;
  gap: 2rem;
  justify-content: space-around;
}

.topfeature-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 10px;
  color: Grey;
  border-left: 2px solid #ddd;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem; /* space between icon and text */
}

.topfeature-item:first-child {
  border-left: none;
}
.topfeature-item h3 {
  margin: 0; /* remove default margin */
}
.topfeatures h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.subscribe {
  background: #f8f8f8;
  color: #e65c00;
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 12px;
  max-width: inherit;
  margin: 5rem auto !important;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.subscribe-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
  color: grey;
}

.subscribe-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.subscribe-form input[type="email"] {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: none;
  flex: 1 1 250px;
  max-width: 400px;
  font-size: 1rem;
}

.subscribe-form button {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: none;
  background: #e65c00;
  color: White;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.subscribe-form button:hover {
filter: brightness(0.92);
color: #fff;
}
.Product-Header {
  text-align: center;      /* centers the text horizontally */
  margin: 2rem 0;          /* space above and below the header */
}

.Product-Header h2 {
  font-size: 2rem;         /* adjust size as needed */
  font-weight: 600;        /* optional, makes it stand out */
  font-family: 'Poppins', sans-serif; /* optional, consistent font */
  margin: 0;               /* removes default h2 spacing */
}
.product-specs-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0;
}

.spec-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f7f7f7;
    padding: 10px 12px;
    border-radius: 8px;
    flex: 1 1 calc(33% - 12px); /* 3 per row on desktop */
    min-width: 140px;
}

.spec-icon {
    width: 24px;
    height: 24px;
    color: orange;
    flex-shrink: 0;
}

.spec-text {
    display: flex;
    flex-direction: row; /* label + value inline */
    align-items: center;
    gap: 4px;
}

.spec-label {
    font-weight: 600;
    font-size: 0.85em;
    color: #333;
}

.spec-value {
    font-size: 0.95em;
    color: #444;
}
/* Make the product list a flex container */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: flex;           /* flex container */
    flex-wrap: wrap;         /* allow multiple rows */
    justify-content: flex-start; /* or center if you want them centered */
    gap: 20px;               /* spacing between items */
    padding: 0;
    margin: 0;
}

/* Style individual product cards */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    flex: 1 1 calc(25% - 20px);   /* 4 per row */
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;        /* stack content inside the card vertically */
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin: 0;                     /* spacing is handled by gap in parent */
}
/* Hover effect for lift & stronger shadow */
.related-products-section ul.products li.product:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}.related-products-section {
    margin-bottom: 100px; /* space below the last row so shadows don’t hit footer */
}
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  /* center items horizontally */
    gap: 20px;                /* spacing between items */
    padding: 0;
    margin: 0 0 60px 0;       /* bottom margin for spacing */
}
.woocommerce ul.products li.product .button {
background-color: #e65c00;
    margin: 0 10px 10px;
    color: white;
    border-radius: 4px;}
.footer-column.logo,
.footer-column.hours,
.footer-column.links {
    position: relative; /* needed for pseudo-element */
}
.footer-column.links ul {
    list-style: none;       /* removes bullets */
    margin: 0;              /* remove default spacing */
    padding: 0;             /* remove default padding */
}

.footer-column.links ul li {
    margin-bottom: 8px;     /* spacing between links */
}

.footer-column.links ul li a {
    text-decoration: none;  /* remove underline if needed */
    color: grey;            /* link color */
    font-weight: 500;
}

.footer-column.links ul li a:hover {
    text-decoration: underline; /* optional hover effect */
    color: #FF6F00;             /* accent color on hover */
}
/* Add short vertical border */
.footer-column.logo::after,
.footer-column.hours::after,
.footer-column.links::after {
    content: '';
    position: absolute;
    top: 80px;            /* distance from top */
    bottom: 80px;         /* distance from bottom */
    right: 0;             /* on the right edge */
    width: 2px;           /* thickness of the border */
    background-color: #e65c00; /* border color */
}
    
    /* Full-width shop page */
.fullwidth #primary {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top filter bar */
.acf-product-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.acf-product-filter label {
    font-weight: bold;
    margin-right: 5px;
}

.acf-product-filter select,
.acf-product-filter button {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.acf-product-filter button {
    background-color: #11aac7;
    color: #fff;
    border: none;
    cursor: pointer;
}

.acf-product-filter button:hover {
    background-color: #0f8aa0;
}

/* Product list styling (like homepage) */
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.products li.product {
    flex: 1 1 calc(25% - 20px); /* 4 per row */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.products li.product:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}/* Ensure all product cards are flex columns */
.products li.product {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Hover effect for cards */
.products li.product:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* Make all product images the same height */
.products li.product img {
    width: 100%;          /* fill card width */
    height: 300px;        /* fixed height */
    object-fit: cover;    /* crop excess but keep center */
    display: block;
}

/* Optional: spacing for product title and price */
.products li.product .woocommerce-loop-product__title,
.products li.product .price {
    margin-top: 10px;
    text-align: center;
    color: grey;
}

/* Ensure the buttons stay at the bottom if needed */
.products li.product .button {
    margin-top: auto;
}
/* ACF Filter Bar */
.acf-product-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centers items horizontally */
  align-items: center;
  gap: 15px;                /* space between dropdowns and button */
  margin: 30px auto;        /* space above/below */
  padding: 15px 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 1100px;        /* keeps it neat on large screens */
}

/* Label styling */
.acf-product-filter label {
  font-weight: 600;
  color: #333;
}

/* Dropdowns */
.acf-product-filter select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

/* Filter Button */
.acf-product-filter button {
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  background-color: #11aac7;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.acf-product-filter button:hover {
  background-color: #0f8aa0;
}
/* Ensure the main shop content has space below */
/* Ensure main area has enough height and spacing */
#main,
.site-main {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */
  min-height: 400px;         /* ensures it fills space even if empty */
  padding-bottom: 100px;  
  margin-top: 20px;/* stops overlap with footer */
}

/* Style the "No products found" message */
#main p,
.site-main p {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  background: #fff;
  padding: 20px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin: 0 auto;
}
/* Top filter button */
.acf-product-filter button {
    background-color: #FF6F00; /* orange */
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Slightly darker on hover */
.acf-product-filter button:hover {
    background-color: #e55e00;
}
.shop-description {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    color: #333;
    line-height: 1.6;
}

.shop-description h2 {
    color: #FF6F00;
    margin-bottom: 20px;
    text-align: center;
}

.shop-description p {
    margin-bottom: 15px;
}
.homepage-text {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    color: #333;
    line-height: 1.6;
}

.homepage-text h2 {
    color: #FF6F00;
    margin-bottom: 20px;
    text-align: center;
}

.homepage-text p {
    margin-bottom: 15px;
}
.contact-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.contact-page h1 {
    text-align: center;
    color: #FF6F00;
    margin-bottom: 20px;
}

.contact-page p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Two-column layout */
.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left Column */
.contact-left {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Right Column */
.contact-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact details card */
.contact-details {
    background: #f9f9f9;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-details p {
    margin: 10px 0;
}

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

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

/* Map styling */
.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* CTA styling */
.contact-cta h3 {
    color: #FF6F00;
    margin-bottom: 10px;
}

.contact-cta p {
    margin-bottom: 0;
}

/* Contact form styling */
.contact-form {
    width: 100%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#wpforms-submit-172 {
  background-color: #FF6F00;
}
/* Container */
.my-account-page {
    max-width: 900px;          /* narrower than before */
    margin: 60px auto 100px;   /* auto horizontal, extra bottom space */
    padding: 0 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Page title */
.my-account-page .account-title {
    text-align: center;
    font-size: 2rem;
    color: #FF6F00;
    margin-bottom: 10px;
}

/* Intro text */
.my-account-page .account-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Wrapper */
.my-account-page .account-wrapper {
    background: #f9f9f9;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 100%;
}

/* WooCommerce navigation */
.woocommerce-MyAccount-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.woocommerce-MyAccount-navigation li {
    list-style: none;
}

.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 10px 20px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
    color: #333;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

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

/* Table styling */
.woocommerce-MyAccount-content table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

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

.woocommerce-MyAccount-content table th {
    background: #f4f4f4;
    font-weight: 600;
}

.woocommerce-MyAccount-content table tr:nth-child(even) {
    background: #fff;
}

.woocommerce-MyAccount-content table tr:nth-child(odd) {
    background: #f9f9f9;
}

/* Buttons */
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content a.button {
    display: inline-block;
    background-color: #FF6F00;
    color: #fff;
    border-radius: 6px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    text-align: center;
}

.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content a.button:hover {
    background-color: #e55e00;
}
/* Ensure the wrapper is applied */
/* Ensure the whole cart wrapper behaves */
.woocommerce-cart-wrapper {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden; /* contain floats */
}

/* Clear floats in WooCommerce cart layout */
.woocommerce-cart .cart-collaterals,
.woocommerce-cart .cart_totals {
    clear: both;
    margin-top: 30px;
}

/* Cart totals box styling */
.woocommerce-cart .cart-collaterals .cart_totals {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Table inside totals */
.woocommerce-cart .cart-collaterals .cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td {
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
/* Proceed to checkout button */
.woocommerce-cart .checkout-button {
    background-color: #FF6F00 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 20px !important;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.woocommerce-cart .checkout-button:hover {
    background-color: #e55e00 !important;
    color: #fff !important;
}

/* Update cart button */
.woocommerce-cart .actions .button[name="update_cart"] {
    background-color: #FF6F00 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 20px !important;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.woocommerce-cart .actions .button[name="update_cart"]:hover {
    background-color: #e55e00 !important;
    color: #fff !important;
}/* Checkout page two-column layout */
.woocommerce-checkout form.checkout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Left column: Billing + Shipping */
.woocommerce-checkout .col2-set .col-1 {
    flex: 1 1 60%;
}

/* Right column: Order review & payment */
.woocommerce-checkout .col2-set .col-2 {
    flex: 1 1 35%;
    min-width: 300px;
}

/* Input fields styling */
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

/* Headings */
.woocommerce-checkout h3 {
    color: #FF6F00;
    margin-bottom: 15px;
}

/* Place Order button */
.woocommerce-checkout #place_order,
.woocommerce-checkout .button.checkout-button {
    background-color: #FF6F00 !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 12px 25px !important;
    font-weight: 600;
    text-transform: uppercase;
}

.woocommerce-checkout #place_order:hover,
.woocommerce-checkout .button.checkout-button:hover {
    background-color: #e55e00 !important;
}

/* Order review box shadow */
.woocommerce-checkout .woocommerce-checkout-review-order-table,
.woocommerce-checkout .woocommerce-checkout-payment {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

/* Responsive: stack columns */
@media (max-width: 768px) {
    .woocommerce-checkout form.checkout {
        display: block;
    }

    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2 {
        flex: 1 1 100%;
    }
}/* Make first/last name fields and other paired fields inline */
.woocommerce-checkout .woocommerce-billing-fields .form-row,
.woocommerce-checkout .woocommerce-shipping-fields .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* spacing between fields */
}

/* Make the input fields take equal width */
.woocommerce-checkout .woocommerce-billing-fields .form-row-first,
.woocommerce-checkout .woocommerce-billing-fields .form-row-last,
.woocommerce-checkout .woocommerce-shipping-fields .form-row-first,
.woocommerce-checkout .woocommerce-shipping-fields .form-row-last {
    flex: 1 1 48%; /* two fields per row */
}

/* Other full-width fields */
.woocommerce-checkout .form-row-wide {
    flex: 1 1 100%;
}

.homepage-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden; /* hide extra slides */
}

/* Slider container */
.slider {
  display: flex;       /* horizontal row */
  width: 300%;         /* 3 slides */
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

/* Each slide */
.slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center calc(100% - 15px); /* your bottom offset */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  text-align: center;
}

/* Individual slide images */
.slide-1 { background-image: url('http://loveourphones.com/wp-content/uploads/2025/11/Copilot_20251119_000857.png'); }
.slide-2 { background-image: url('http://loveourphones.com/wp-content/uploads/2025/11/ColourCase.png'); }
.slide-3 { background-image: url('http://loveourphones.com/wp-content/uploads/2025/11/MixSet.png'); }
.slide-4 { background-image: url('http://loveourphones.com/wp-content/uploads/2025/11/Pods.png'); }

/* Hero content styling */
.hero-content { z-index: 2; }
.hero-buttons .btn { margin: 0 5px; padding: 10px 20px; text-decoration: none; border-radius: 5px; }
.btn-secondary { background: #555; color: #fff; }
.btn-outline { border: 2px solid #fff; color: #fff; background: transparent; }

/* Slider arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
.prev { left: 20px; }
.next { right: 20px; }
.spec-tooltip {
    position: relative;
    display: inline-block;
}
/* Container for billing/shipping rows */
.woocommerce .woocommerce-billing-fields,
.woocommerce .woocommerce-shipping-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* space between fields */
}

/* Make first/last name fields side by side */
.woocommerce .form-row-first,
.woocommerce .form-row-last {
    flex: 1 1 48%; /* grow/shrink, 48% width */
    box-sizing: border-box;
}

/* Ensure other rows (like address) take full width */
.woocommerce .form-row-wide {
    flex: 1 1 100%;
}
.whats-in-the-box .wb-icon svg {
    width: 26px;
    height: 26px;
}

.whats-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.wb-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
}

.wb-text {
    font-size: 16px;
    font-weight: 500;
}
/* Container for each spec */
.spec-box {
    position: relative; /* needed for tooltip top-right */
    display: flex;
    align-items: center;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* Icon wrapper */
.spec-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    margin-right: 8px;
}

/* Info icon in top-right corner */
.spec-tooltip {
    position: absolute;
    top: 4px;
    right: 4px;
    cursor: pointer;
    display: inline-block;
}

.spec-tooltip .tooltip-text {
    visibility: hidden;
    position: fixed; /* fixed to viewport */
    top: 50%; /* vertical center */
    left: 50%; /* horizontal center */
    transform: translate(-50%, -50%);
    width: 400px; /* set proper width */
    max-width: 90%;
    background-color: rgba(0,0,0,0.85); /* dark semi-transparent background */
    color: #fff;
    text-align: left;
    padding: 16px 20px; /* more padding */
    border-radius: 8px;
    z-index: 9999;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0;
    pointer-events: none; /* prevents blocking hover on icon */
    transition: opacity 0.2s ease;
    display: block; /* ensure it’s block, not inline */
}

.spec-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
.tooltip-text ul {
    margin: 0;
    padding-left: 18px;
}

.tooltip-text li {
    margin-bottom: 8px;
}