/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-email {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.footer-email:hover {
  color: white;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #e07d00;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
}

/* Page Styles */
.page-header {
  background: linear-gradient(135deg, #e07d00 0%, #f38d01 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-description {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 3rem 0;
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.gallery-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-info {
  padding: 1rem;
}

.gallery-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #e07d00;
}

.gallery-count {
  color: #666;
  font-size: 0.9rem;
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
  transform: translateY(0);
}

.photo-filename {
  font-size: 0.9rem;
  font-family: monospace;
}

/* Footer */
.site-footer {
  background: #e07d00;
  color: white;
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-logo-img {
    max-width: calc(100vw - 80px);
    height: auto;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
  }

  .nav-menu.active .nav-item {
    border-top: 1px solid #eee;
  }

  .nav-menu.active .nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

/* Video Container — 16:9 landscape (regular videos) */
.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin: 2rem 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* FAQ Accordion (uses native <details>/<summary> elements) */
.faq-list {
  margin: 1.5rem 0;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: #222;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #e07d00;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item[open] summary {
  color: #e07d00;
}

.faq-answer {
  padding: 0.25rem 0 1.25rem;
  color: #444;
  line-height: 1.7;
}

.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* Video Short — 9:16 vertical (YouTube Shorts) */
.video-short {
  max-width: 340px;
  margin: 2rem auto;
}

.video-short iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  border-radius: 8px;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Video Cards — featured video grid with title + description */
.video-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
  gap: 2.5rem;
  margin: 2rem 0;
}

.video-card .video-container {
  margin: 0;
}

.video-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  color: #222;
}

.video-card-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.youtube-cta {
  background: #f9f0e0;
  border-left: 4px solid #e07d00;
  border-radius: 4px;
  padding: 1.5rem 2rem;
  margin: 3rem 0 1rem;
  text-align: center;
}

.youtube-cta p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #333;
}

@media (max-width: 560px) {
  .video-cards {
    grid-template-columns: 1fr;
  }
}

.video-item {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.video-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.video-overlay {
  padding: 1rem;
}

.video-overlay h3 {
  margin-bottom: 0.5rem;
  color: #e07d00;
  font-size: 1.1rem;
}

.video-overlay p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.video-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #888;
}

/* Playlist Grid */
.playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.playlist-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.playlist-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.playlist-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.playlist-info {
  padding: 1rem;
}

.playlist-info h3 {
  margin-bottom: 0.5rem;
  color: #e07d00;
  font-size: 1rem;
}

.playlist-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.playlist-count {
  font-size: 0.8rem;
  color: #888;
  font-weight: 500;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.blog-post {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.blog-post h2 {
  margin-bottom: 0.5rem;
  color: #e07d00;
}

.blog-post h2 a {
  text-decoration: none;
  color: inherit;
}

.blog-post h2 a:hover {
  color: #f38d01;
}

.post-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  background: #e07d00;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.read-more:hover {
  background: #f38d01;
}

/* Wallpaper Grid */
.wallpaper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.wallpaper-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wallpaper-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.wallpaper-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.wallpaper-info {
  padding: 1rem;
}

.wallpaper-info h3 {
  margin-bottom: 0.5rem;
  color: #e07d00;
}

.wallpaper-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.download-btn {
  display: inline-block;
  background: #e07d00;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: #f38d01;
}

/* FAQ Styles */
.faq-section {
  margin: 2rem 0;
}

.faq-section h2 {
  color: #e07d00;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0e0e0;
}

.faq-item {
  margin-bottom: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1rem;
}

.faq-question {
  font-weight: 600;
  color: #e07d00;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #333;
  line-height: 1.6;
}

/* Gear Guide / Store Styles */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.product-category {
  margin: 3rem 0;
}

.product-category h2 {
  color: #e07d00;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0e0e0;
}

.product-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f5f0e8;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-item-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-item h3 {
  color: #e07d00;
  margin-bottom: 0.5rem;
}

.product-item p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-link {
  display: inline-block;
  background: #e07d00;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}

.product-link:hover {
  background: #f38d01;
}

/* Gallery Photo Overlay — species/detail labels */
.photo-species {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.2rem;
}

.photo-detail {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  text-transform: capitalize;
}

.photo-bird + .photo-bird-separator,
.photo-bird-separator + .photo-bird {
  margin-top: 0.35rem;
}

.photo-bird-separator {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin: 0.35rem 0;
}

.gallery-location {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Gallery Region Groups */
.region-description {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Playlist item without image */
.playlist-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 1.5rem;
}

.playlist-item .playlist-info h3 {
  margin-bottom: 0.5rem;
  color: #e07d00;
  font-size: 1.1rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* =============================================
   Column Layouts (for use inside blog posts)
   ============================================= */

/* 2-column grid — collapses to 1 column below 640px */
.cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 1.5rem 0;
}

/* 3-column grid — collapses to 1 column below 768px */
.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .cols-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cols-2 {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   In-Article Image Classes
   ============================================= */

/* Floated left — text wraps to the right */
.img-left,
figure.img-left {
  float: left;
  width: 40%;
  max-width: 380px;
  margin: 0.25rem 1.75rem 1.25rem 0;
  border-radius: 6px;
  overflow: hidden;
}

/* Floated right — text wraps to the left */
.img-right,
figure.img-right {
  float: right;
  width: 40%;
  max-width: 380px;
  margin: 0.25rem 0 1.25rem 1.75rem;
  border-radius: 6px;
  overflow: hidden;
}

/* Centered, not full-width */
.img-center,
figure.img-center {
  display: block;
  margin: 1.5rem auto;
  text-align: center;
  max-width: 600px;
}

/* Full content width */
.img-full,
figure.img-full {
  display: block;
  width: 100%;
  margin: 1.5rem 0;
  border-radius: 6px;
  overflow: hidden;
}

/* Ensure images inside these classes fill their container */
.img-left img, .img-left picture, .img-left source,
.img-right img, .img-right picture, .img-right source,
.img-center img, .img-center picture,
.img-full img, .img-full picture {
  width: 100%;
  height: auto;
  display: block;
}

/* Clearfix — add after a floated image block to resume normal flow */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Figure captions */
figcaption,
.img-caption {
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  margin-top: 0.4rem;
  font-style: italic;
  line-height: 1.4;
}

/* Collapse floats to full-width on mobile */
@media (max-width: 600px) {
  .img-left,
  figure.img-left,
  .img-right,
  figure.img-right {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
  }
}

/* =============================================
   Blog Post — "Updated" notice bar
   ============================================= */

.post-updated-notice {
  background: #fff8f0;
  border-bottom: 1px solid #f0d9b5;
  padding: 0.55rem 0;
  font-size: 0.85rem;
  color: #888;
  text-align: center;
}

.post-updated-notice strong {
  color: #e07d00;
  font-weight: 600;
}

/* =============================================
   Blog Post — Featured image (inline float-right)
   ============================================= */

.post-content {
  display: flow-root; /* contains floated children */
}

.post-featured-image-inline {
  float: right;
  width: 42%;
  max-width: 340px;
  margin: 0.25rem 0 1.5rem 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.post-featured-image-inline img {
  width: 100%;
  height: auto;
  display: block;
}

.post-featured-image-inline a {
  display: block;
  line-height: 0; /* removes inline gap below img */
}

@media (max-width: 600px) {
  .post-featured-image-inline {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
  }
}

/* =============================================
   Mini Product Card (for blog posts)
   Image left, title + description + button right.
   ============================================= */

.mini-product {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.mini-product-img {
  flex: 0 0 130px;
  width: 130px;
}

.mini-product-img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  display: block;
}

.mini-product-img a {
  display: block;
  line-height: 0;
}

.mini-product-body {
  flex: 1;
  min-width: 0;
}

.mini-product-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #e07d00;
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.mini-product-title a {
  color: inherit;
  text-decoration: none;
}

.mini-product-title a:hover {
  text-decoration: underline;
  color: #f38d01;
}

.mini-product-body p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

@media (max-width: 500px) {
  .mini-product {
    flex-direction: column;
  }
  .mini-product-img {
    width: 100%;
    flex: none;
    max-width: 180px;
  }
}

/* =============================================
   Blog Listing Thumbnails
   ============================================= */

.blog-post-thumb-link {
  display: block;
  margin-bottom: 1rem;
  border-radius: 6px;
  overflow: hidden;
}

.blog-post-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blog-post:hover .blog-post-thumb {
  transform: scale(1.03);
}

/* Instagram Section */
.instagram-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 0;
  margin: 3rem 0;
  border-radius: 12px;
}

.instagram-header {
  text-align: center;
  margin-bottom: 2rem;
}

.instagram-header h2 {
  color: #e07d00;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.instagram-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.instagram-description {
  color: #777;
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.instagram-post {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.instagram-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.instagram-image-container {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.instagram-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-post:hover .instagram-image {
  transform: scale(1.05);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-overlay {
  opacity: 1;
}

.instagram-stats {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.instagram-likes {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.instagram-caption {
  padding: 1rem;
}

.instagram-caption p {
  color: #333;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.instagram-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.instagram-date {
  color: #999;
  font-size: 0.85rem;
}

.instagram-cta {
  text-align: center;
  margin-top: 2rem;
}

.instagram-button {
  display: inline-block;
  background: linear-gradient(45deg, #E4405F, #C13584);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.instagram-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.instagram-profile-info {
  margin-top: 1rem;
}

.instagram-followers {
  color: #666;
  font-size: 0.9rem;
}

/* Instagram Page Specific Styles */
.instagram-cta-large {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
}

.instagram-button-large {
  display: inline-block;
  background: linear-gradient(45deg, #E4405F, #C13584);
  color: white;
  padding: 1.25rem 2.5rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.3);
  margin-bottom: 1rem;
}

.instagram-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.instagram-note {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

/* =============================================
   Page Content Typography
   (applies to all pages using page.njk layout)
   ============================================= */

.page-content h2 {
  color: #e07d00;
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8e8e8;
}

.page-content h3 {
  color: #444;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.page-content ul,
.page-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.page-content hr {
  border: none;
  border-top: 2px solid #e8e8e8;
  margin: 2.5rem 0;
}

.page-content a {
  color: #e07d00;
}

.page-content a:hover {
  color: #f38d01;
}

/* Prevent link color rules from bleeding into styled buttons */
.page-content .product-link,
.page-content .read-more,
.page-content .download-btn {
  color: white;
}

.page-content .product-link:hover,
.page-content .read-more:hover,
.page-content .download-btn:hover {
  color: white;
}

/* Override h3 uppercase for product cards */
.page-content .product-item h3 {
  color: #e07d00;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* =============================================
   Gear Guide Page Components
   ============================================= */

.resources-intro {
  background: #fff8f0;
  border-left: 4px solid #f38d01;
  padding: 0.875rem 1.25rem;
  border-radius: 0 6px 6px 0;
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0 0.5rem;
}

.support-card {
  display: block;
  background: #fff8f0;
  border: 2px solid #f0d9b5;
  border-radius: 10px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.support-card:hover {
  border-color: #f38d01;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 141, 1, 0.15);
}

.support-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #e07d00;
  margin-bottom: 0.35rem;
}

.support-card h3 {
  color: #333;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0.3rem;
}

.support-card p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.product-badge {
  display: inline-block;
  background: #f38d01;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}

.product-item h3 a {
  color: #e07d00;
  text-decoration: none;
}

.product-item h3 a:hover {
  text-decoration: underline;
  color: #f38d01;
}

.resource-link-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1.1rem 1.5rem;
  margin-bottom: 0.75rem;
}

.resource-link-card h3 {
  color: #333;
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0.3rem;
}

.resource-link-card h3 a {
  color: #e07d00;
  text-decoration: none;
}

.resource-link-card h3 a:hover {
  text-decoration: underline;
}

.resource-link-card p {
  color: #555;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.affiliate-note {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: #666;
  font-size: 0.875rem;
  margin-top: 2.5rem;
  line-height: 1.5;
}

.promo-box {
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e0 100%);
  border: 2px solid #f38d01;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
}

.promo-box-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e07d00;
  margin-bottom: 0.85rem;
}

.promo-codes {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.promo-code-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.promo-code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
  font-weight: 700;
  background: #e07d00;
  color: white;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.promo-code-desc {
  color: #333;
  font-size: 0.9rem;
}

.promo-code-expiry {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
}

@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .instagram-feed {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .instagram-header h2 {
    font-size: 1.5rem;
  }
  
  .instagram-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .instagram-button-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}

/* ============================================================
   Inline Photo Gallery (thumbnail grid + PhotoSwipe lightbox)
   ============================================================ */

.inline-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 6px;
  margin: 2rem 0;
}

.inline-gallery-item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
  cursor: zoom-in;
  background: #f0f0f0;
}

.inline-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.inline-gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .inline-gallery {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 4px;
  }
}

/* ============================================================
   Image Comparison Slider (img-comparison-slider web component)
   Used on high-ISO photography post
   ============================================================ */

.iso-comparison-wrap {
  margin: 2rem 0;
}

img-comparison-slider {
  display: block;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  --divider-width: 3px;
  --divider-color: #e07d00;
  --default-handle-color: #e07d00;
  --default-handle-opacity: 0.9;
  --handle-size: 44px;
}

img-comparison-slider img {
  width: 100%;
  display: block;
  max-width: none;
}

.iso-comparison-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.4rem;
  padding: 0 0.25rem;
}
