/*
Theme Name: Vika Senteret
Theme URI: https://vika-senteret.no
Author: Vika Senteret
Description: Custom WordPress-tema for Vika Senteret kjøpesenter, basert på Adobe XD-design.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: vika
*/

/* ========================================
   CSS Custom Properties (Design Tokens)
======================================== */
:root {
  --color-white: #FFFFFF;
  --color-cream: #F7F4E9;
  --color-black: #000000;
  --color-green-light: #D0E4C8;
  --color-green-dark: #004F30;
  --color-gray-light: #CCCCCC;
  --color-shadow: rgba(0,0,0,0.16);

  --font-primary: 'Geologica', sans-serif;

  --font-size-hero: clamp(3rem, 7vw, 7.5rem);
  --font-size-hero-sub: clamp(1.5rem, 3vw, 2.5rem);
  --font-size-h1: clamp(1.8rem, 3vw, 2.8rem);
  --font-size-h2: clamp(1.4rem, 2.2vw, 2.2rem);
  --font-size-h3: clamp(1.2rem, 1.8vw, 1.875rem);
  --font-size-h4: clamp(1rem, 1.4vw, 1.4375rem);
  --font-size-body: clamp(0.95rem, 1.2vw, 1.375rem);
  --font-size-small: clamp(0.8rem, 1vw, 1.0625rem);

  --max-width: 1200px;
  --header-height: 80px;
}

/* ========================================
   Reset & Base
======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ========================================
   Typography
======================================== */
h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.25;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 300;
  line-height: 1.3;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  line-height: 1.35;
}

p {
  font-size: var(--font-size-body);
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-black);
}

/* ========================================
   Layout Utilities
======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 0;
}

.section--cream {
  background-color: var(--color-cream);
}

.section--dark {
  background-color: var(--color-green-dark);
  color: var(--color-white);
}

/* ========================================
   Buttons
======================================== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-align: center;
  letter-spacing: 0.02em;
}

.btn--dark {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn--dark:hover {
  background-color: var(--color-green-dark);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.btn--outline:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* ========================================
   HEADER
======================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  background: transparent;
}

.site-header--solid {
  position: sticky;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px var(--color-shadow);
}

.site-logo {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-logo--light {
  color: var(--color-white);
}

.header-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-black);
}

.header-menu-btn--light {
  color: var(--color-white);
}

.header-menu-btn span.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 22px;
}

.header-menu-btn span.hamburger i {
  display: block;
  height: 2px;
  background-color: currentColor;
}

/* ========================================
   NAVIGATION OVERLAY (MENY)
======================================== */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay__bg {
  flex: 1;
  background-color: rgba(0,0,0,0.4);
}

.nav-overlay__panel {
  width: 420px;
  background-color: var(--color-green-dark);
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.nav-overlay.is-open .nav-overlay__panel {
  transform: translateX(0);
}

.nav-overlay__close {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  margin-top: 0.5rem;
}

.nav-overlay__logo {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.nav-overlay__menu {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-overlay__menu li {
  border-top: 1px solid rgba(255,255,255,0.15);
}

.nav-overlay__menu li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.nav-overlay__menu a {
  display: block;
  padding: 1.1rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.02em;
  transition: color 0.2s, padding-left 0.2s;
}

.nav-overlay__menu a:hover {
  color: var(--color-green-light);
  padding-left: 0.5rem;
}

/* ========================================
   HERO / SLIDER
======================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slider__slide.is-active {
  opacity: 1;
}

.hero-slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
}

.hero-slider__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-green-light);
  width: 90%;
  max-width: 900px;
}

.hero-slider__title {
  font-size: var(--font-size-hero);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-green-light);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-slider__subtitle {
  font-size: var(--font-size-hero-sub);
  font-weight: 600;
  color: var(--color-green-light);
  font-style: italic;
}

.hero-slider__nav {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero-slider__btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.hero-slider__btn:hover {
  background: rgba(255,255,255,0.2);
}

/* ========================================
   OPENING HOURS BAR
======================================== */
.opening-hours-bar {
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: var(--font-size-body);
  background-color: var(--color-white);
  border-bottom: 1px solid #eee;
}

.opening-hours-bar__label {
  font-weight: 400;
  margin-right: 0.5rem;
}

.opening-hours-bar__time {
  font-weight: 700;
  font-size: 1.5rem;
}

/* ========================================
   FEATURED ARTICLE (Home)
======================================== */
.featured-article {
  padding: 5rem 0;
}

.featured-article__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featured-article__image {
  border-radius: 4px;
  overflow: hidden;
}

.featured-article__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-article__image:hover img {
  transform: scale(1.03);
}

.featured-article__content {
  padding: 1rem 0;
}

.featured-article__title {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.featured-article__excerpt {
  font-size: var(--font-size-body);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: #333;
}

/* ========================================
   GREEN PATTERN SECTION (Home)
======================================== */
.pattern-section {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: var(--color-green-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pattern-section__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.pattern-section__logo {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-cream);
}

.pattern-section__logo-text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ========================================
   INSPIRATION SECTION (Home)
======================================== */
.inspiration-section {
  padding: 4rem 0;
  background-color: var(--color-cream);
}

.inspiration-section__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2.5rem;
}

.inspiration-section__title {
  font-size: var(--font-size-h1);
  font-weight: 600;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.inspiration-card {
  display: block;
  cursor: pointer;
}

.inspiration-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.35s ease;
  display: block;
}

.inspiration-card:hover .inspiration-card__image {
  transform: scale(1.02);
}

.inspiration-card__title {
  margin-top: 1rem;
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.3;
}

.inspiration-section__footer {
  text-align: center;
  margin-top: 3rem;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
  background-color: var(--color-green-dark);
  color: var(--color-white);
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.site-footer__logo {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.site-footer__address {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.site-footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.site-footer__social a {
  color: var(--color-white);
  font-size: 1.4rem;
  transition: opacity 0.2s;
}

.site-footer__social a:hover {
  opacity: 0.7;
}

.site-footer__emblem {
  margin: 0 auto 2.5rem;
  width: 90px;
  height: 90px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 1.5rem;
}

.site-footer__nav a {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-white);
  opacity: 0.85;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.site-footer__nav a:hover {
  opacity: 1;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ========================================
   PAGE HEADER (Inner pages)
======================================== */
.page-header {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.page-header__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header--no-image {
  height: auto;
  padding: var(--header-height) 0 0;
}

/* ========================================
   INNER PAGE LAYOUT
======================================== */
.inner-page {
  padding-top: var(--header-height);
}

.inner-page__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* ========================================
   ÅPNINGSTIDER PAGE
======================================== */
.opening-hours-page {
  padding: 3rem 2rem 5rem;
  max-width: 800px;
  margin: 0 auto;
}

.today-hours-card {
  background-color: var(--color-cream);
  padding: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  border-radius: 4px;
}

.today-hours-card__label {
  font-size: var(--font-size-h1);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.today-hours-card__time {
  font-size: 3.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.today-hours-card__date {
  font-size: var(--font-size-body);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.today-hours-card__regular {
  font-size: var(--font-size-body);
  font-weight: 600;
}

.special-hours {
  margin-top: 2rem;
}

.special-hours__heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.special-hours__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.special-hours__store h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

/* ========================================
   INSPIRASJON LIST PAGE
======================================== */
.category-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid #eee;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tab {
  padding: 0.75rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-primary);
  transition: color 0.2s, border-color 0.2s;
}

.category-tab.is-active,
.category-tab:hover {
  color: var(--color-black);
  border-bottom-color: var(--color-black);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.article-card {
  display: block;
}

.article-card__image-wrap {
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.article-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.article-card:hover .article-card__image {
  transform: scale(1.04);
}

.article-card__title {
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1.3;
}

/* ========================================
   SINGLE ARTICLE PAGE
======================================== */
.single-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.single-article__hero {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 2.5rem;
}

.single-article__title {
  font-size: var(--font-size-h1);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.single-article__ingress {
  font-size: var(--font-size-h3);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #222;
}

.single-article__body {
  font-size: var(--font-size-body);
  font-weight: 300;
  line-height: 1.8;
}

.single-article__body p {
  margin-bottom: 1.5rem;
}

.single-article__body h4 {
  font-size: var(--font-size-h4);
  font-weight: 600;
  margin: 2rem 0 0.75rem;
}

.single-article__body figure {
  margin: 2.5rem 0;
}

.single-article__body figure img {
  width: 100%;
  border-radius: 4px;
}

.single-article__body figcaption {
  font-size: var(--font-size-small);
  color: #666;
  margin-top: 0.5rem;
  font-style: italic;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.article-tag {
  padding: 0.3rem 0.9rem;
  background-color: var(--color-green-light);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 20px;
}

/* ========================================
   BUTIKKER PAGE
======================================== */
.stores-list {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.stores-list__title {
  font-size: var(--font-size-h1);
  font-weight: 600;
  margin-bottom: 2rem;
}

.store-item {
  border-top: 1px solid #ccc;
  overflow: hidden;
}

.store-item:last-child {
  border-bottom: 1px solid #ccc;
}

.store-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  cursor: pointer;
  transition: padding-left 0.2s;
}

.store-item__header:hover {
  padding-left: 0.5rem;
}

.store-item__name {
  font-size: 1.2rem;
  font-weight: 500;
}

.store-item__icon {
  font-size: 1.2rem;
  transition: transform 0.25s;
  color: #555;
}

.store-item.is-open .store-item__icon {
  transform: rotate(180deg);
}

.store-item__detail {
  display: none;
  padding: 0 0 1.5rem;
}

.store-item.is-open .store-item__detail {
  display: block;
}

.store-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.store-detail__section h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.store-detail__section p,
.store-detail__section a {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

.store-detail__section a {
  text-decoration: underline;
}

.store-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.store-social a {
  font-size: 1.2rem;
}

/* ========================================
   STORE SINGLE PAGE
======================================== */
.store-single {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.store-single__hero {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 2.5rem;
}

.store-single__meta {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

.store-single__description h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.store-single__ingress {
  font-size: var(--font-size-h3);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.store-single__body {
  font-size: var(--font-size-body);
  font-weight: 300;
  line-height: 1.8;
}

.store-single__body h4 {
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}

.store-info-card {
  background-color: var(--color-cream);
  padding: 1.75rem;
  border-radius: 4px;
  position: sticky;
  top: 2rem;
}

.store-info-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  color: #444;
}

.store-info-card p,
.store-info-card a {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

.store-info-card .section-block {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.store-info-card .section-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* ========================================
   VIRKSOMHETER / BUSINESSES PAGE
======================================== */
.businesses-list {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

/* ========================================
   OM VIKA (About) PAGE
======================================== */
.about-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.about-page__hero {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 2.5rem;
}

.about-page__title {
  font-size: var(--font-size-h1);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-page__ingress {
  font-size: var(--font-size-h3);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-page__body {
  font-size: var(--font-size-body);
  font-weight: 300;
  line-height: 1.85;
}

.about-page__body p {
  margin-bottom: 1.5rem;
}

.about-page__body h3 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  margin: 2.5rem 0 1rem;
}

/* ========================================
   PRAKTISK INFORMASJON PAGE
======================================== */
.practical-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.accordion {
  margin-top: 1rem;
}

.accordion-item {
  border-top: 1px solid #ccc;
}

.accordion-item:last-child {
  border-bottom: 1px solid #ccc;
}

.accordion-item__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 500;
  text-align: left;
  transition: padding-left 0.2s;
}

.accordion-item__trigger:hover {
  padding-left: 0.4rem;
}

.accordion-item__icon {
  font-size: 1.2rem;
  transition: transform 0.25s;
  flex-shrink: 0;
  color: #555;
}

.accordion-item.is-open .accordion-item__icon {
  transform: rotate(180deg);
}

.accordion-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-item.is-open .accordion-item__content {
  max-height: 600px;
  padding-bottom: 1.5rem;
}

.accordion-item__body {
  font-size: var(--font-size-body);
  font-weight: 300;
  line-height: 1.8;
  padding-bottom: 0.5rem;
}

/* ========================================
   BREADCRUMBS
======================================== */
.breadcrumbs {
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: #666;
  border-bottom: 1px solid #eee;
}

.breadcrumbs a {
  color: #666;
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 0.4rem;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .articles-grid,
  .inspiration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-article__inner {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }

  .articles-grid,
  .inspiration-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .featured-article__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .featured-article__image img {
    height: 300px;
  }
  
  .store-single__meta {
    grid-template-columns: 1fr;
  }
  
  .store-info-card {
    position: static;
  }
  
  .nav-overlay__panel {
    width: 85vw;
  }
  
  .special-hours__grid {
    grid-template-columns: 1fr;
  }
  
  .store-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-slider__title {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }
  
  .hero-slider__subtitle {
    font-size: clamp(1.1rem, 4vw, 1.8rem);
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 1rem 1.25rem;
  }
  
  .container {
    padding: 0 1.25rem;
  }
  
  .category-tabs {
    flex-wrap: nowrap;
  }
}

/* ========================================
   WP ADMIN BAR FIX
======================================== */
.admin-bar .nav-overlay {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .nav-overlay {
    top: 46px;
  }
}
