/* ============================================= */
/* Page Title Area (Keep if used generally)    */
/* ============================================= */


body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}


/* ============================================= */
/* Sticky Footer Fix & Body Layout             */
/* ============================================= */

html {
    height: 100%; /* Ensure html takes full height */
}

body {
    min-height: 100vh; /* Make body at least full viewport height */
    display: flex;
    flex-direction: column;
    /* padding-top for sticky header should remain if you have it */
}

/* The main content area that should expand */
/* Kadence typically uses #content.site-content */
/* If #content doesn't work directly, you might need to target its immediate child that wraps your #primary or main sections */
#content.site-content {
    flex-grow: 1; /* This is the key: allows this element to grow and push the footer down */
    /* You might need to ensure this element doesn't have a fixed height or conflicting min-height */
}

/* If #content.site-content is not the direct flex child taking up space,
   you might need to ensure its parent or the #page wrapper (if Kadence uses one)
   is also set to flex-grow: 1 or display: flex; flex-direction: column; height: 100%;
   Inspect your HTML structure carefully. */


/* Your existing Custom Header and Footer styles will remain the same */
/* ... other styles ... */





.page-title-wrap {
  margin: 2rem 0;
	margin:20px auto;
  text-align: center;
	max-width:950px;
  width:calc(100% - 40px);
}


.page-title-wrap h1, /* Changed h2 to h1 for semantic H1s */
.page-title-wrap h2 {
  margin: 0;
  font-size: 2rem; /* You might adjust this based on gbno-page-title */
  color: #333; /* Or var(--gbno-gray-800) */
}

@media (max-width:768px){
  .page-title-wrap{width:calc(100% - 20px);margin:10px auto;}
}


/* ============================================= */
/* State/City List Grid (Used by taxonomy page) */
/* ============================================= */
.state-list { /* This class is used for listing states and cities */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 800px; /* Or var(--gbno-container-max-width) if defined */
  margin: 0 auto 3rem;
  padding: 0 1rem;
  list-style: none;
}
.state-list li a {
  display: block;
  background-color: var(--gbno-blue-700);
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #ffff;
  transition: background-color 0.3s ease;
}
.state-list li a:hover {
  background-color: var(--gbno-blue-800);
}
@media (max-width: 768px) {
  .state-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .state-list {
    grid-template-columns: 1fr;
  }
}


/* ============================================= */
/* Search Bar (State/Taxonomy Pages)            */
/* ============================================= */
.search-bar-wrap {
  max-width: 800px; /* Or var(--gbno-container-max-width) */
  margin: 0 auto 2rem;
  padding: 0 1rem;
}
.search-bar-wrap input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc; /* Or var(--gbno-gray-300) if defined */
  border-radius: 4px;
}

/* ============================================= */
/* WordPress Block Specific Styles             */
/* ============================================= */

.wp-block-navigation__responsive-container .wp-block-navigation-item__label {
    font-family: 'Roboto Condensed', sans-serif; /* Keep if you use this font elsewhere */
    margin-left: 20px;
    font-size: 22px;
    font-weight: 500;
}




/* ============================================= */
/* Goodwill Bins Outlet Card Styles (gbno-)    */
/* ============================================= */
:root {
  --gbno-blue-50: #eff6ff;
  --gbno-blue-700: #1B75BC;
  --gbno-blue-600: #1B75BC;
  --gbno-blue-800: #06548f;
  --gbno-green-500: #22c55e;
  --gbno-green-600: #16a34a;
  --gbno-teal-500: #14b8a6;
  --gbno-teal-600: #0d9488;
  --gbno-red-600: #dc2626;
  --gbno-gray-100: #f3f4f6;
  --gbno-gray-300: #d1d5db; /* Added for borders etc. */
  --gbno-gray-600: #4b5563;
  --gbno-gray-700: #374151;
  --gbno-gray-800: #1f2937;
  --gbno-shadow-lg: 0 2px 4px rgba(0, 0, 0, 0.2);
  --gbno-shadow-md: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);
}

.gbno-container {
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--gbno-shadow-lg);
  max-width: 960px; 
  margin: 2.5rem auto 0 auto; 
  padding: 1rem;
  width: calc(100% - 40px);
}
.single-goodwill-outlet .gbno-container {
   margin-top: 0; 
}
body.taxonomy-goodwill-bins .goodwill-outlet-list-container .gbno-container {
    margin-top: 2rem; /* Space between cards on archive */
    margin-bottom: 2rem; /* Space between cards on archive */
}
body.taxonomy-goodwill-bins .goodwill-outlet-list-container .gbno-container:first-child {
    margin-top: 0; /* No top margin for the very first card on archive if H1 is separate */
}


@media (min-width: 768px) {
  .gbno-container {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
    .gbno-container {
        width: calc(100% - 20px);
        margin: 1.5rem auto 0 auto;
    }
    body.taxonomy-goodwill-bins .goodwill-outlet-list-container .gbno-container {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.gbno-page-title {
  font-size: 1.875rem; 
  font-weight: 700;
  color: var(--gbno-gray-800);
  margin-bottom: 1rem; 
  text-align: left;
}
.gbno-page-title a {
    color: inherit;
    text-decoration: none;
}
.gbno-page-title a:hover {
    text-decoration: underline;
}

.gbno-top-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; 
  align-items: stretch; 
}

@media (min-width: 911px) { 
  .gbno-top-section {
    flex-direction: row;
    gap: 2rem;
  }
}

.gbno-store-image {
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
  display: flex;
  height: 225px;
}

@media (min-width: 768px) {
  .gbno-store-image {
    max-width: 340px;
  }
}

.gbno-store-image img {
  border-radius: 0.75rem;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  min-height: 230px;
}

@media (min-width: 768px) {
  .gbno-store-image img {
    min-height: 0;
  }
}


.gbno-details {
  flex: 1; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
}
.gbno-details > div { 
    width: 100%;
}

.gbno-icon-row {
  display: flex;
  align-items: center; 
  color: var(--gbno-gray-600);
  margin-bottom: 0.75rem; 
  font-size: 1rem;
}

.gbno-icon-row .material-icons {
  margin-right: 0.5rem; 
  font-size: 1.5rem; 
  flex-shrink: 0; 
}
.gbno-icon-row p {
    margin: 0;
    line-height: 1.4;
}

.gbno-section-label { 
  font-size: 1.25rem; 
  font-weight: 700;
  color: var(--gbno-gray-800);
}

.gbno-hours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0.5rem;
  font-size: 0.95rem;
}

@media (min-width: 500px) {
  .gbno-hours-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

.gbno-hours-grid > div {
  background: var(--gbno-gray-100);
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  min-width: 110px;
  font-size: 0.95rem;
  font-weight: 400;
  
  display: flex;
  align-items: center;   /* vertically center */
  justify-content: center; /* horizontally center */
  text-align: center;    /* center text inside */
}

.gbno-hours-grid strong {
  margin-right: 0.25rem;
  font-weight: 700;
}


.gbno-desc {
  margin-top: 2rem;
}
.gbno-desc p {
  color: var(--gbno-gray-700);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 0.75em; 
}
.gbno-desc p:last-child {
    margin-bottom: 0;
}

.gbno-section-title {
  font-size: 1.5rem; 
  font-weight: 600;
  color: var(--gbno-gray-800);
  margin-bottom: 1rem;
}
.gbno-section.gbno-mt-8, .gbno-mt-8 { 
  margin-top: 2rem;
}

.gbno-amenities-grid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 0.75rem; 
}
@media (min-width: 600px) {
  .gbno-amenities-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}
@media (min-width: 950px) { 
  .gbno-amenities-grid {
    grid-template-columns: repeat(3, 1fr); 
  }
}

.gbno-amenity {
  display: flex;
  align-items: center;
  font-size: 1rem; 
  font-weight: 500;
}
.gbno-amenity .material-icons {
  margin-right: 0.5rem;
  font-size: 1.4rem; 
}
.gbno-amenity.gbno-green { 
  color: var(--gbno-green-600);
}
.gbno-amenity.gbno-red {
  color: var(--gbno-red-600);
}
.gbno-amenity.gbno-gray {
  color: var(--gbno-gray-700);
}

.gbno-pricing-grid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 1rem;
}
@media (min-width: 480px) { 
  .gbno-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .gbno-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gbno-pricing-card {
  background: var(--gbno-blue-50);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: var(--gbno-shadow-md); 
  font-size: 1rem;
  display: flex;
  flex-direction: column;
}
.gbno-pricing-card h3 {
  font-weight: 600;
  color: var(--gbno-blue-700);
  margin-top: 0;
  margin-bottom: 0.5rem; 
  display: flex;
  align-items: center;
  font-size: 1.05rem;
}
.gbno-pricing-card h3 .material-icons {
  margin-right: 0.5rem;
  font-size: 1.6rem;
}
.gbno-pricing-card h3 .gbno-svg-icon { 
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  display: inline-block;
  vertical-align: middle; 
}
.gbno-pricing-card p { 
  color: var(--gbno-gray-600);
  font-size: 0.95rem; 
  margin-top: 0;
  margin-bottom: 0.25em; 
  line-height: 1.5;
}
.gbno-pricing-card p:last-child {
    margin-bottom: 0;
}

.gbno-website-link {
  display: flex;
  align-items: center;
  color: var(--gbno-blue-600);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  transition: color 0.15s ease-in-out;
  word-break: break-all; 
}
.gbno-website-link .material-icons {
  margin-right: 0.5rem;
  font-size: 1.4rem;
}
.gbno-website-link a {
  color: inherit;
  text-decoration: underline;
}
.gbno-website-link a:hover {
  color: var(--gbno-blue-800);
  text-decoration: none;
}
.gbno-website-hint {
  color: var(--gbno-gray-600);
  font-size: 0.9rem; 
  line-height: 1.5;
}

.gbno-btn-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; 
}
@media (min-width: 768px) {
  .gbno-btn-row {
    flex-direction: row;
  }
}

.gbno-btn {
  display: inline-flex; 
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--gbno-shadow-lg);
  width: 100%;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.18s ease-in-out, box-shadow 0.18s ease-in-out;
  color: #fff;
  text-decoration: none; 
  text-align: center;
}
@media (min-width: 768px) {
  .gbno-btn {
    width: auto; 
    flex-grow: 1; 
  }
}

.gbno-btn .material-icons {
  margin-right: 0.5rem;
  font-size: 1.3rem;
}

.gbno-green-btn {
  background-color: var(--gbno-blue-700);
}
.gbno-green-btn:hover, .gbno-green-btn:focus {
  background-color: var(--gbno-blue-800);
  box-shadow: var(--gbno-shadow-md);
}
.gbno-blue-btn {
  background-color: var(--gbno-blue-600);
}
.gbno-blue-btn:hover, .gbno-blue-btn:focus {
  background-color: var(--gbno-blue-800);
  box-shadow: var(--gbno-shadow-md);
}
.gbno-teal-btn {
  background-color: var(--gbno-blue-700);
}
.gbno-teal-btn:hover, .gbno-teal-btn:focus {
  background-color: var(--gbno-blue-800);
  box-shadow: var(--gbno-shadow-md);
}

.gbno-related-listings {
    /* .gbno-container provides base styling, so this class adds context */
    /* It could be combined with .gbno-container if always present together */
}
.gbno-related-listings h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 0; /* Assuming it's inside a .gbno-container with its own margin */
    color: var(--gbno-gray-800);
}
.gbno-related-listings h3 a {
    color: inherit;
    text-decoration: none;
}
.gbno-related-listings h3 a:hover {
    text-decoration: underline;
}
.gbno-related-listings ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .75rem;
}
.gbno-related-listings li a {
    display: inline-block;
    background: var(--gbno-blue-700); 
    color: #fff;
    padding: .4rem .9rem;
    border-radius: 0.75rem; 
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color .25s;
}
.gbno-related-listings li a:hover {
    background: var(--gbno-blue-800);
}

.gbno-reviews-section {
    /* .gbno-container provides base styling */
}
/* ============================================= */
/* Review Section Styling (Site Reviews Plugin)  */
/* ============================================= */

/* Add a separator line AFTER the summary and AFTER each review */

.gbno-reviews-section .glsr-summary-wrap {
  border-bottom: 1px solid var(--gbno-gray-300, #d1d5db);
    padding-bottom: 1.5rem;
    margin-bottom: 4rem;
}

.gbno-reviews-section .glsr-review {
    border-bottom: 1px solid var(--gbno-gray-300, #d1d5db);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}



/* Style the author's name to be bold */
.gbno-reviews-section .glsr-review-author {
    font-weight: 700;
}

/* Add a dash and space before the author's name */
.gbno-reviews-section .glsr-review-author::before {
    content: '— ';
    font-weight: normal;
}


.gbno-reviews-section .glsr-form .glsr-button {
  background-color: var(--gbno-blue-700) !important;
  border-color: var(--gbno-blue-800) !important;
  color: #fff !important;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;            /* Makes button fill parent width */
  box-sizing: border-box; /* Ensures padding is included in width */
  text-align: center;     /* Extra, just in case */
}
.gbno-reviews-section .glsr-form .glsr-button:hover,
.gbno-reviews-section .glsr-form .glsr-button:focus {
  background-color: var(--gbno-blue-800) !important;
  border-color: var(--gbno-blue-800) !important;
}




.goodwill-bins-city-list li a { /* Style for city list on state archive */
  /* background-color: var(--gbno-green-500); */ /* Example, inherits from .state-list */
}
.goodwill-bins-city-list li a:hover {
  /* background-color: var(--gbno-green-600); */ /* Example, inherits from .state-list */
}

/* ============================================= */
/* End of Reordered CSS                        */
/* ============================================= */


.single-goodwill-outlet .gbno-container {
    max-width: 960px;
    margin-top: 0;
    margin-bottom: 3rem;
}

.gbno-btn,
.gbno-btn:hover,
.gbno-btn:focus {
  color: #fff !important;
}
.gbno-btn .material-icons,
.gbno-btn:hover .material-icons,
.gbno-btn:focus .material-icons {
  color: #fff !important;
}


/* Homepage - Features Section */
.homepage-features-section {
    max-width: 1140px; /* Or your theme's content width */
    margin: 40px auto; /* Centering and spacing */
    padding: 0 20px; /* Side padding */
    text-align: center; /* Center the optional section title */
}

.homepage-features-section .section-title { /* Optional title for the whole section */
    font-size: 2rem; /* Adjust as needed */
    font-weight: 600;
    color: var(--gbno-gray-800, #1f2937); /* Using your gbno variables as fallback */
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on larger screens */
    gap: 30px; /* Space between items */
    text-align: center; /* Center content within each item */
}

.feature-item {
    padding: 20px;
    /* background-color: #f9f9f9; Optional: if you want a light background for items */
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.05); */
}

.feature-icon {
    width: 40px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 15px;
    /* Kadence seems to have an issue with direct image dimensions sometimes, 
       so you might need to wrap it or ensure its container has a defined size if images misbehave. */
}

.feature-title {
    font-size: 1.25rem; /* Adjust as needed */
    font-weight: 600;
    color: var(--gbno-gray-700, #374151);
    margin-top: 0;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gbno-gray-600, #4b5563);
    margin: 0;
}

/* Responsive adjustments for features grid */
@media (max-width: 991px) { /* Tablet */
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
}

@media (max-width: 575px) { /* Mobile */
    .features-grid {
        grid-template-columns: 1fr; /* 1 column */
        gap: 20px;
    }
    .feature-item {
        padding: 15px;
    }
    .homepage-features-section {
        margin: 30px auto;
    }
}


/* ============================================= */
/* Homepage Styles (hp-)                       */
/* ============================================= */

/* General Homepage Area - Remove Kadence default padding if needed */
.homepage-content-area.content-area .site-container {
    max-width: 100%; /* Allow sections to go full width */
    padding-left: 0;
    padding-right: 0;
}
.homepage-main.site-main {
    margin-top: 0; /* Remove default top margin from Kadence main element if present */
}


/* 1. Hero Section */
.hp-hero-section {
    position: relative;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 20px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hp-hero-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.hp-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;

   
}

.hp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hp-hero-h1 {
    font-size: 48px; /* Starting font size */
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hp-hero-subtitle {
    font-size: 18px; /* Starting font size */
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hp-hero-button {
    display: inline-block;
    background-color: var(--gbno-blue-700);
    color: #FFFFFF;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.hp-hero-button:hover {
    background-color: var(--gbno-blue-800); /* Darker shade for hover */
    color: #FFFFFF !important;
}

/* Responsive Hero Text */
@media (min-width: 768px) {
    .hp-hero-h1 {
        font-size: 60px;
    }
    .hp-hero-subtitle {
        font-size: 20px;
    }
}
@media (min-width: 992px) {
    .hp-hero-h1 {
        font-size: 70px; /* Target font size */
    }
}


/* General Section Styling */
.hp-why-us-section,
.hp-popular-outlets-section,
.hp-faq-section {
    padding: 60px 0; /* Vertical padding for sections */
}
.hp-section-container {
    max-width: 1140px; /* Consistent max width for content within sections */
    margin: 0 auto;
    padding: 0 20px; /* Side padding */
}
.hp-section-title {
    font-size: 32px;
    color: #000000; /* Black */
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
    font-weight: 700;
}


/* 2. Why Us Section */
.hp-why-us-intro {
    font-size: 18px;
    color: #333333; /* Dark Gray, not pure black for better readability */
    text-align: center;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
@media (min-width: 768px) {
    .hp-why-us-intro {
        font-size: 20px;
    }
}

.hp-why-us-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column on small screens */
    gap: 30px;
}

.hp-why-us-item {
    background-color: #1B75BC;
    color: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.hp-why-us-icon {
    font-size: 36px !important; /* Icon size */
    color: #FFFFFF;
    margin-bottom: 15px;
    display: block; /* Center icon */
}

.hp-why-us-item-h3 {
    font-size: 22px;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.hp-why-us-item p {
    font-size: 16px;
    color: #f0f0f0; /* Lighter white for paragraph */
    line-height: 1.6;
    margin-bottom: 0;
}

/* Why Us Grid Responsive Breakpoints */
@media (min-width: 768px) {
    .hp-why-us-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
}


/* 3. Popular Goodwill Outlets Section */
.hp-popular-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column on small screens */
    gap: 20px;
}

.hp-popular-button {
    display: block;
    background-color: var(--gbno-blue-700);
    color: #FFFFFF;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.hp-popular-button:hover {
    background-color: var(--gbno-blue-800); /* Darker shade */
    color: #FFFFFF !important;
}

/* Popular Outlets Grid Responsive Breakpoints */
@media (min-width: 576px) {
    .hp-popular-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
}
@media (min-width: 992px) {
    .hp-popular-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
    }
}


/* 4. FAQ Section */
.hp-faq-accordion {
    max-width: 1140px;
    margin: 0 auto;
}

.hp-faq-item {
    border-bottom: 1px solid #e0e0e0;
}
.hp-faq-item:last-child {
    border-bottom: none;
}

.hp-faq-question {
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    text-align: left;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}


.hp-faq-icon {
    transition: transform 0.3s ease;
    font-size: 24px;
}

.hp-faq-question[aria-expanded="true"] .hp-faq-icon {
    transform: rotate(180deg);
}

.hp-faq-answer {
    padding: 10px 0 20px 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}
.hp-faq-answer p {
    margin: 0;
}

.hp-popular-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-left: 10px;
    margin-right: 10px;
}

.hp-popular-button--more {
    width: 100%;
    max-width: 350px; /* Set this to the width of your grid buttons */
    text-align: center;
    display: block;
}


/* ============================================= */
/* Custom Header Styles                        */
/* ============================================= */

/* Sticky Header Functionality */
.sticky-header {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's above other content */
    background-color: #FFFFFF; /* Or your desired header background */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional shadow */
}

/* Basic body padding to prevent content from jumping under sticky header */
/* Adjust this value based on your actual header height */
/* You might need JS to calculate this dynamically if header height changes */
body {
    /* padding-top: 80px; /* Example: Adjust if needed */
}


.custom-site-header .site-header-container {
    max-width: 1200px; /* Or your preferred site width */
    margin: 0 auto;
    padding: 10px 20px; /* Padding inside the header */
    display: flex;
    justify-content: space-between; /* Logo left, Nav right on desktop */
    align-items: center;
}

.custom-site-header .site-branding {
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.custom-site-header .custom-logo-link img.custom-logo-img {
    max-height: 60px; /* Adjust logo height */
    width: auto;
    display: block;
}

/* Desktop Navigation */
.custom-main-navigation ul#primary-custom-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Horizontal layout for desktop */
}

.custom-main-navigation ul#primary-custom-menu li {
    margin-left: 25px; /* Spacing between menu items */
}
.custom-main-navigation ul#primary-custom-menu li:first-child {
    margin-left: 0;
}

.custom-main-navigation ul#primary-custom-menu li a {
    text-decoration: none;
    color: #000000; /* Menu item color */
    font-weight: 700; /* Example font weight */
    font-size: 20px; /* Example font size */
    padding: 5px 0;
    display: block;
    position: relative; /* For potential underlines or effects */
}
.custom-main-navigation ul#primary-custom-menu li a:hover,
.custom-main-navigation ul#primary-custom-menu li.current-menu-item > a,
.custom-main-navigation ul#primary-custom-menu li.current-menu-ancestor > a {
    color: var(--gbno-blue-700); /* Hover/active color */
}


/* Mobile/Tablet Header Styles - Links below logo */
@media (max-width: 768px) { /* Adjust breakpoint as needed */
    body {
        /* padding-top: 120px; /* Example: Adjust if mobile header is taller */
    }

    .custom-site-header .site-header-container {
        flex-direction: column; /* Stack logo and nav vertically */
        padding: 15px 20px;
    }

    .custom-site-header .site-branding {
        margin-bottom: 10px; /* Space between logo and nav */
        text-align: center; /* Center logo on mobile */
    }
    .custom-site-header .custom-logo-link {
        display: inline-block; /* Allow centering */
    }

    .custom-main-navigation {
        width: 100%;
    }

    .custom-main-navigation ul#primary-custom-menu {
        flex-direction: column; /* Stack menu items vertically */
        align-items: center; /* Center menu items */
        width: 100%;
    }

    .custom-main-navigation ul#primary-custom-menu li {
        margin-left: 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0; /* Separator line */
    }
    .custom-main-navigation ul#primary-custom-menu li:last-child {
        border-bottom: none;
    }

    .custom-main-navigation ul#primary-custom-menu li a {
        padding: 12px 10px; /* Larger tap targets */
        font-size: 17px;
    }
}


/* ============================================= */
/* Custom Footer Styles                        */
/* ============================================= */

.custom-site-footer {
    background-color: #f8f9fa; /* Light gray background, adjust as needed */
    color: #555555; /* Text color for the footer */
    padding: 5px 0; /* Vertical padding */
    border-top: 1px solid #e0e0e0; /* Optional top border */
    font-size: 16px; /* Base font size for footer */
}

.custom-site-footer .footer-container {
    max-width: 1140px; /* Or your preferred site width, matching header if applicable */
    margin: 0 auto;
    padding: 10px 0px 10px 0px; /* Side padding */
    text-align: center; /* Center align content within the footer */
}

/* Footer Navigation Menu */
.footer-main-navigation {
    margin-bottom: 20px; /* Space below the menu */
}

.footer-main-navigation ul#footer-custom-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Default to flex for desktop */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    justify-content: center; /* Center menu items */
}

.footer-main-navigation ul#footer-custom-menu li {
    margin: 5px 15px; /* Spacing around menu items */
}

.footer-main-navigation ul#footer-custom-menu li a {
    text-decoration: none;
    color: #ffffff; /* Footer menu item color */
    font-weight: 600;
    
}



/* Site Info / Copyright */
.site-info {
    margin-top: 20px; /* Space above the copyright text if menu is present */
    font-size: 0.9em; /* Slightly smaller than base footer font */
    color: #ffffff;
}

.site-info .copyright-text {
    display: block; /* Ensure it takes full width for centering */
    margin-bottom: 5px;
}

.site-info .powered-by .sep {
    margin: 0 5px;
}

/* Optional: If you use footer widgets */
.footer-widgets-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Example layout for widgets */
    margin-bottom: 30px;
}

.footer-widgets-area .widget {
    /* Adjust width for number of widget areas, e.g., for 3 widgets */
    /* flex-basis: calc(33.333% - 20px);  */
    margin-bottom: 20px;
}


/* Responsive adjustments for footer menu if needed */
@media (max-width: 700px) {
    .footer-main-navigation ul#footer-custom-menu {
        flex-direction: column; /* Stack menu items vertically */
        align-items: center;
    }
    .footer-main-navigation ul#footer-custom-menu li {
        margin: 8px 0; /* Adjust vertical spacing */
        width: 100%;
        text-align: center;
    }
}


/* ============================================= */
/* State, City, & Outlet Intro Containers      */
/* ============================================= */

/* Combine selectors to apply same base styles to all description containers */
.gbno-state-description,
.gbno-city-description,
.gbno-outlet-intro-section {
    background-color: var(--gbno-blue-50, #eff6ff);
    border: 1px solid var(--gbno-gray-300, #d1d5db);
    border-radius: 0.75rem;
    padding: 1.5rem;
    max-width: 1150px;
    /* This also inherits .gbno-container properties like margin, but we keep the specific overrides here */
}

/* Combined paragraph styles for all containers */
.gbno-state-description p,
.gbno-city-description p,
.gbno-outlet-intro-section p {
    color: #000000;
    line-height: 1.7;
    font-size: 17px;
    margin-bottom: 1em;
}

.gbno-state-description p:last-child,
.gbno-city-description p:last-child,
.gbno-outlet-intro-section p:last-child {
    margin-bottom: 0;
}

/* Combined heading styles if you use headings inside the description */
.gbno-state-description h2,
.gbno-state-description h3,
.gbno-city-description h2,
.gbno-city-description h3,
.gbno-outlet-intro-section h2,
.gbno-outlet-intro-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gbno-gray-800, #1f2937);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

/* --- FUTURE CUSTOMIZATION AREA --- */
/* Use this class to override styles ONLY for the city description page */
.gbno-city-description {
  max-width: 960px; 
}

/* Use this class to override styles ONLY for the single outlet intro section */
.gbno-outlet-intro-section {
    /* Example: background-color: #f0f8ff; */
}


/* ============================================= */
/* Last Updated Info                           */
/* ============================================= */
.gbno-last-updated {
    text-align: center; /* Or left, depending on your design */
    margin-top: -0.5rem; /* Adjust to pull it closer to H1 if page-title-wrap has bottom margin */
    margin-bottom: 1.5rem; /* Space before the main content */
    color: #555555; /* Or var(--gbno-gray-600) */
    font-size: 0.9rem; /* Slightly smaller */
    font-style: italic;
    /* If you want it to align with the .page-title-wrap content */
    max-width: 950px; /* Same as .page-title-wrap */
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 40px); /* Same as .page-title-wrap */
}

@media (max-width:768px){
  .gbno-last-updated {
    width: calc(100% - 20px); /* Match .page-title-wrap responsive */
    margin-bottom: 1rem;
  }
}

/* ============================================= */
/* Meta Info & Breadcrumbs Container             */
/* ============================================= */
.gbno-meta-breadcrumb-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px 20px; /* row-gap column-gap */
    max-width: 960px; /* Consistent with .gbno-container, adjust if your content width is different */
    margin: 1.5rem auto;
    padding: 0 20px; /* To align with content that might use calc(100% - 40px) and padding */
    /* If your main content area already has padding, you might set padding: 0; here and adjust max-width accordingly */
}

.gbno-meta-breadcrumb-left,
.gbno-meta-breadcrumb-right {
    flex-grow: 1;
}

.gbno-meta-breadcrumb-left {
    flex-basis: 200px; /* Approx width for "Last Updated", can be auto */
}

.gbno-meta-breadcrumb-left .gbno-last-updated {
   
    font-size: 0.85rem;
    margin: 0;
    padding: 0;
    max-width: none;
    width: auto;
    font-style: italic;
    color: #555555; /* Or var(--gbno-gray-600) */
}

.gbno-meta-breadcrumb-right {
    flex-basis: calc(100% - 220px - 20px); /* Adjust based on left basis and gap */
    text-align: right;
}

/* Breadcrumb Navigation Styles */
.gbno-breadcrumbs-nav {
    /* Container for the <ol> */
}

.gbno-breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

.gbno-breadcrumbs li {
    display: inline;
    color: #555555;
}

.gbno-breadcrumbs li:not(:last-child)::after {
    content: '>';
    margin: 0 0.6em;
    color: #888;
}

.gbno-breadcrumbs a {
    color: var(--gbno-blue-700, #1B75BC);
    text-decoration: none;
}

.gbno-breadcrumbs a:hover {
    text-decoration: underline;
}

.gbno-breadcrumbs li.gbno-breadcrumb-current {
    color: var(--gbno-gray-800, #1f2937);
    font-weight: 500;
}

/* === Responsive adjustments for general meta/breadcrumb container === */
@media (max-width: 768px) {
    .gbno-meta-breadcrumb-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding: 0 10px;
    }

    .gbno-meta-breadcrumb-left,
    .gbno-meta-breadcrumb-right {
        text-align: left;
        width: 100%;
        flex-basis: auto;
    }
}

/* === Specific Layout for SINGLE GOODWILL OUTLET POSTS === */
.single-goodwill-outlet .gbno-meta-breadcrumb-container {
    flex-direction: column; /* Stack items vertically */
    align-items: center;    /* Center the stacked items */
    gap: 5px;               /* Smaller gap between breadcrumbs and last updated */
}

.single-goodwill-outlet .gbno-meta-breadcrumb-left,
.single-goodwill-outlet .gbno-meta-breadcrumb-right {
    width: 100%;            /* Allow them to take full width for centering text */
    text-align: center;     /* Center the text content within */
    flex-basis: auto;       /* Reset basis */
}

/* Ensure the breadcrumbs are displayed first on single posts when stacked */
.single-goodwill-outlet .gbno-meta-breadcrumb-right {
    order: 1; /* Breadcrumbs first */
}
.single-goodwill-outlet .gbno-meta-breadcrumb-left {
    order: 2; /* Last updated second */
}

/* On mobile, single post layout already becomes column and left-aligned by default.
   If you want it centered on mobile too for single posts: */
@media (max-width: 768px) {
    .single-goodwill-outlet .gbno-meta-breadcrumb-container {
        align-items: center; /* Ensure centering even on mobile */
    }
    .single-goodwill-outlet .gbno-meta-breadcrumb-left,
    .single-goodwill-outlet .gbno-meta-breadcrumb-right {
        text-align: center; /* Ensure centering even on mobile */
    }
}