/*
 * Custom styles for FuriLabs website
 */

/* ===== MAIN CONTENT WIDTH - Match nav width ===== */
:root {
  --main-width: 1024px; /* Match --nav-width for consistent outer border */
}

/* Ensure main content area uses the wider width */
.main {
  max-width: calc(var(--main-width) + var(--gap) * 2);
}

/* Blog item formatting */
.post-content p, .content-page-body p,
.blog-post-content p {
  margin-bottom: 1.5em;
}



/* Variables for changelog styling */
:root {
  --updated-color: #6c5ce7;
  --improved-color: #be2edd;
  --fixed-color: #0984e3;
  --added-color: #00b894;
  --release-bg: #e9ecef;
  --release-text: #495057;
  --date-text: #6c757d;
}

/* Changelog container */
.changelog-container {
}

/* Release item styling */
.release-item {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
  color: white;
  background-color: rgb(65, 66, 68);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Release version badge */
.release-version {
  background-color: white;
  color: rgb(65, 66, 68);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Release date */
.release-date {
  font-size: 1rem;
  color: rgb(255, 255, 255);
}

/* Release description */
.release-description {
  margin: 1rem 0;
  line-height: 1.6;
  grid-row: 2;
  grid-column: 1 / -1;
}

/* Position the version and date container */
.release-item > div:first-child {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Change items container */
.change-items {
  grid-column: 1 / -1;
  grid-row: 3;
}

/* Individual change item */
.change-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  border-radius: 6px;
  background-color: rgb(65, 66, 68);
  color: white;
}

/* Change type badge */
.change-type {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  width: 85px;
  text-align: center;
  box-sizing: border-box;
  margin-top: 0.1rem;
}

/* Specific change type colors */
.change-type.updated {
  background-color: var(--updated-color);
}

.change-type.improved {
  background-color: var(--improved-color);
}

.change-type.fixed {
  background-color: var(--fixed-color);
}

.change-type.added {
  background-color: var(--added-color);
}

/* Change description */
.change-description {
  margin: 0;
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* Timeline styles */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgb(65, 66, 68);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 48%;
  margin: 20px 0;
  padding: 1.5rem;
  box-sizing: border-box;
  border-radius: 8px;
  color: white;
  background-color: rgb(65, 66, 68);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 30px;
}

.timeline-item:nth-child(even) {
  left: 52%;
  text-align: left;
  padding-left: 30px;
}

.timeline-item::before {
  content: none;
}

.timeline-date {
  font-weight: bold;
  color: rgb(255, 255, 255);
  margin-bottom: 5px;
}

.timeline-content h3 {
  margin: 0 0 10px 0;
  color: rgb(255, 255, 255);
}

.timeline-content p {
  margin: 0;
  line-height: 1.5;
}

/* Read More button styling */
.timeline-item a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: white;
  color: rgb(65, 66, 68);
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}

/* ===== CHANGELOG MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Release item: single column on mobile */
  .release-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* Version and date header */
  .release-item > div:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .release-version {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }

  .release-date {
    font-size: 0.9rem;
  }

  /* Description */
  .release-description {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }

  /* Change items */
  .change-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
  }

  .change-type {
    min-width: auto;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    align-self: flex-start;
  }

  .change-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Timeline: single column on mobile */
  .timeline::before {
    left: 15px;
  }

  .timeline-item {
    width: calc(100% - 30px);
    margin-left: 30px;
    text-align: left !important;
    padding: 1rem !important;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .timeline-date {
    font-size: 0.9rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .release-item {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }

  .release-version {
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
  }

  .change-type {
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
  }

  .timeline-item {
    width: calc(100% - 20px);
    margin-left: 20px;
    padding: 0.75rem !important;
  }

  .timeline::before {
    left: 10px;
  }
}

/* Home page blog heading */
.home-blog-heading {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--primary);
}

/* Blog posts grid */
.furilabs-posts-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1rem !important;
}

.post-item {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--entry);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.1s;
}

.post-item:hover {
  transform: scale(1.02);
}

/* Clickable post tiles */
.post-item-clickable {
  cursor: pointer;
}

.post-item-clickable a {
  pointer-events: none;
}

.post-item h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: var(--primary);
}

.post-item h2 a {
  color: var(--primary);
  text-decoration: none;
}

.post-item p {
  margin: 0;
  line-height: 1.6;
  color: var(--secondary);
  font-size: 14px;
}

.post-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    margin: auto;
    margin-bottom: 10px;
    display: block;
}

/* Pagination styling */
.page-footer {
  margin-top: 2rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.pagination a {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--entry);
  color: var(--primary);
  text-decoration: none;
  transition: transform 0.1s, background-color 0.2s;
}

.pagination a:hover {
  transform: scale(1.05);
  background: var(--theme);
}

/* Home page recent posts */
.furilabs-recent-posts {
  margin-top: 2rem;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1rem !important;
}

/* Contact Form Styling */
.furilabs-form {
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--entry);
  color: var(--primary);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--theme);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

#submit-btn {
  background: #90DD40;
  color: #000;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, opacity 0.2s;
}

#submit-btn:hover:not(:disabled) {
  background: #7cc835;
  transform: scale(1.02);
}

#submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-weight: 500;
}

.form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.m-widget {
  margin: 1rem 0;
}

/* FAQ Styling */
#faq-search-container {
  max-width: 900px;
  margin: 2rem auto;
}

.faq-search-box {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

#faq-search {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--entry);
  color: var(--primary);
  font-size: 1rem;
}

#search-btn {
  padding: 0.75rem 1.5rem;
  background: var(--theme);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s;
}

#search-btn:hover {
  transform: scale(1.05);
}

#faq-loading {
  text-align: center;
  padding: 2rem;
  color: var(--secondary);
  font-style: italic;
}

.faq-results-header {
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  background: var(--entry);
  border-left: 4px solid var(--theme);
  font-weight: 600;
  color: var(--primary);
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--entry);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.1s, box-shadow 0.2s;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.faq-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--theme);
  color: white;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-categories {
  margin-bottom: 2rem;
}

.faq-categories h3 {
  margin-bottom: 1rem;
}

.faq-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}

.faq-category-list li a {
  display: block;
  padding: 0.75rem 1rem;
  background: var(--entry);
  border-radius: 8px;
  color: var(--primary);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.faq-category-list li a:hover {
  background: var(--tertiary);
  color: #90DD40;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-question a.faq-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.faq-question a.faq-link:hover {
  color: var(--theme);
}

.faq-expandable .faq-question a.faq-link::after {
  content: " ▸";
  font-size: 0.85em;
  color: var(--secondary);
  transition: transform 0.2s;
}

.faq-expandable.expanded .faq-question a.faq-link::after {
  content: " ▾";
}

.faq-highlighted {
  border: 2px solid var(--theme);
  box-shadow: 0 0 0 4px rgba(var(--theme-rgb), 0.1);
}

.faq-answer {
  color: var(--secondary);
  line-height: 1.6;
  overflow: hidden; /* clearfix for floated read-more button */
}

.faq-answer a {
  color: var(--theme);
}

.faq-read-more {
  background: #90DD40;
  border: none;
  border-radius: 4px;
  color: #1a1a1a;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  margin-top: 0.75rem;
  float: right;
}

.faq-read-more:hover {
  background: #7bc934;
}

.faq-answer-full {
  line-height: 1.7;
}

.faq-answer-full p {
  margin-bottom: 0.75rem;
}

.faq-answer-full ul,
.faq-answer-full ol {
  margin: 0.5rem 0 0.75rem 1.5rem;
}

.faq-answer-full code {
  background: rgba(144, 221, 64, 0.1);
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  font-size: 0.9em;
}

.faq-answer-full a {
  color: var(--theme);
}

.faq-hint,
.faq-no-results,
.faq-error {
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius);
}

.faq-hint {
  background: var(--entry);
  color: var(--secondary);
}

.faq-no-results {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.faq-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Search results snippet styling */
#searchResults .entry-content {
  margin-top: 0.5rem;
  color: var(--secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

#searchResults mark {
  background-color: #ffeb3b;
  color: #000;
  padding: 0.1rem 0.2rem;
  border-radius: 2px;
  font-weight: 600;
}

.furilabs-recent-posts h2 {
  color: rgb(65, 66, 68);
  margin-bottom: 1rem;
  grid-column: 1 / -1;
}

.home-post-item {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: rgb(65, 66, 68);
  color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.home-post-item h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.home-post-item h3 a {
  color: white;
  text-decoration: none;
}

.home-post-item p {
  margin: 0;
  line-height: 1.4;
}

.home-post-item .post-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

/* ===== HOMEPAGE SECTIONS ===== */

/* Remove gap/padding on home page main container */
body:has(.home-page) .main {
  padding: 0 !important;
  max-width: none !important;
}

/* Fallback for browsers without :has() support */
.home-page-wrapper .main,
.main:has(.home-page) {
  padding: 0 !important;
  max-width: none !important;
}

/* Hero Section - Full Screen */
.hero-section {
  position: relative;
  height: 800px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #222222;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  letter-spacing: 2px;
}

.hero-title sup {
  font-size: 2.5rem;
  vertical-align: super;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 300;
  margin: 0 0 2rem 0;
  letter-spacing: 1px;
}

.hero-pricing {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.price-old {
  font-size: 2rem;
  color: #999;
  text-decoration: line-through;
}

.price-new {
  font-size: 3rem;
  font-weight: 700;
  color: #90DD40;
}

.hero-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: #90DD40;
  color: #222222;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(144, 221, 64, 0.3);
}

/* Container utility */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Full-width sections */
.product-intro,
.icon-features,
.security-section,
.product-showcase,
.tech-specs,
.blog-section,
.lifestyle-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* Lifestyle Banner Section - Full Screen Image */
.lifestyle-banner {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lifestyle-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('/image/uploads/2026/02/Man-1-v4.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lifestyle-banner-bg img {
  display: none;
}

.lifestyle-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.lifestyle-banner-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.lifestyle-banner-content h3 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

/* Product Introduction Section */
.product-intro {
  padding: 100px 0;
  height: 800px;
  background-color: #000000;
}

.intro-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4rem;
  align-items: center;
  justify-content: center;
}

.intro-text {
  max-width: 500px;
}

.intro-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.intro-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.intro-text p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 1rem;
}

.intro-image {
  text-align: right;
}

.intro-image img {
  width: auto;
  height: 600px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Icon Features Section - Full Screen Background */
.icon-features {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.icon-features-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('/image/uploads/2026/02/Woman-1-v5.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.4);
}

.icon-features-bg img {
  display: none;
}

.icon-features .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s, background 0.3s;
}

.feature-box:hover {
  transform: translateY(-10px);
  background: rgba(0, 0, 0, 0.7);
}

.feature-box i {
  font-size: 4rem;
  color: #90DD40;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-box p {
  font-size: 1rem;
  color: #CCCCCC;
  line-height: 1.6;
}

/* Security Section - Full Screen Background */
.security-section {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.security-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('/image/uploads/2026/02/Woman-2-v4.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.5);
}

.security-bg img {
  display: none;
}

.security-section .container {
  position: relative;
  z-index: 1;
}

.security-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  background: rgba(65, 65, 65, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 12px;
}

.security-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.security-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 1rem;
}

.security-content a {
  color: #90DD40;
  text-decoration: underline;
  font-weight: 600;
}

.security-content a:hover {
  color: #a8f5b8;
}

/* Product Showcase Section */
.product-showcase {
  padding: 100px 0;
  background-color: #F5F5F5;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.showcase-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Technical Specifications Section */
.tech-specs {
  padding: 100px 0;
  background-color: #222222;
  color: #ffffff;
}

.specs-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #ffffff;
}

/* Product Images Above Specs Table */
.specs-product-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 4rem auto;
  padding: 0 2rem;
}

.specs-product-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

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

.spec-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s, background-color 0.2s;
}

.spec-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.spec-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #90DD40;
}

.spec-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #CCCCCC;
  margin: 0;
}

.specs-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 3rem;
  background: #90DD40;
  color: #222222;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(144, 221, 64, 0.3);
}

/* Blog Section */
.blog-section {
  padding: 0 0;
}

/* Blog Listing Page */
.blog-listing-page {
  min-height: 100vh;
}

.blog-listing-page .home-blog-heading {
  color: #ffffff;
  margin-bottom: 2rem;
}

/* Blog Filter Bar */
.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.blog-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(144, 221, 64, 0.15);
  border: 1px solid rgba(144, 221, 64, 0.3);
  color: #90DD40;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.blog-filter-tag a {
  color: #90DD40;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1;
}

.blog-filter-tag a:hover {
  color: #fff;
}

.blog-listing-page .blog-pagination {
  margin-top: 3rem;
  grid-column: 1 / -1;
}

/* View All Posts button on homepage */
.blog-view-all {
  text-align: right;
  margin-top: 1.5rem;
}

.blog-view-all .btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #90DD40;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.blog-view-all .btn:hover {
  background: #7bc934;
}

/* Blog Post Meta */
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-size: 0.95rem;
}

.blog-post-meta .blog-date {
  color: #90DD40;
}

.blog-post-meta .blog-author {
  color: var(--secondary);
}

.blog-post-meta .blog-views {
  color: var(--secondary);
}

.blog-taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.blog-tag-link {
  display: inline-block;
  background: rgba(144, 221, 64, 0.15);
  border: 1px solid rgba(144, 221, 64, 0.3);
  color: #90DD40;
  padding: 0.25rem 0.6rem;
  border-radius: 15px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.blog-tag-link:hover {
  background: #90DD40;
  color: #1a1a1a;
}

/* Shop Listing Page */
.shop-listing-page {
  min-height: 100vh;
}

.shop-listing-page .home-blog-heading {
  color: #ffffff;
  margin-bottom: 2rem;
}

.shop-product-item .product-card-price {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.shop-product-item .price-compare {
  text-decoration: line-through;
  color: #888;
  margin-right: 0.5rem;
}

.shop-product-item .price-current {
  color: #90DD40;
  font-weight: 600;
}

.shop-product-item .price-sale {
  color: #90DD40;
}

.shop-product-item .product-card-stock {
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.shop-product-item .stock-in {
  color: #90DD40;
}

.shop-product-item .stock-preorder {
  color: #f0ad4e;
}

.shop-product-item .stock-out {
  color: #dc3545;
}

/* Make entire product card clickable */
.shop-product-item .product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.shop-product-item .product-card-link:hover {
  text-decoration: none;
}

.shop-product-item .product-card-link h3 {
  color: #ffffff;
  transition: color 0.2s ease;
}

.shop-product-item .product-card-link:hover h3 {
  color: #90DD40;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .lifestyle-banner-content h2,
  .lifestyle-banner-content h3 {
    font-size: 2.5rem;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .furilabs-posts-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .intro-image img {
    height: auto;
    max-height: 500px;
    width: 100%;
    object-fit: contain;
  }

  /* Show full images on tablet instead of cropped */
  .post-image {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.03);
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 550px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .price-old {
    font-size: 1.5rem;
  }

  .price-new {
    font-size: 2rem;
  }

  .lifestyle-banner {
    height: 400px;
  }

  .lifestyle-banner-content h2,
  .lifestyle-banner-content h3 {
    font-size: 2rem;
  }

  .intro-grid,
  .security-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .specs-product-images {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .furilabs-posts-grid {
    grid-template-columns: 1fr !important;
  }

  /* Show full images on mobile instead of cropped */
  .post-image {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.03);
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 450px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 1rem;
  }
}
/* Parallax scrolling effect */
.parallax-section {
  position: relative;
  overflow: hidden;
}

/* Product intro parallax-bg has different styling */
.product-intro .parallax-bg {
  position: relative;
  width: 100%;
  z-index: 1;
}

/* Smooth scrolling for the whole page */
html {
  scroll-behavior: smooth;
}

/* Performance optimization for parallax */
.hero-video,
.feature-box,
.spec-item {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ===== REVIEWS STYLING ===== */
#reviews-container {
  max-width: 1200px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-item {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--entry);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.review-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  flex: 1;
}

.review-rating {
  flex-shrink: 0;
}

.review-rating .stars {
  font-size: 1.5rem;
  color: #FFD700;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.review-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.review-author {
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
}

.review-product {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--theme);
  color: white;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Review truncation and read more */
.review-body-wrapper {
  margin-top: 0.5rem;
}

.review-body {
  color: var(--secondary);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.review-body-wrapper {
  position: relative;
}

.review-read-more {
  background: #90DD40;
  border: none;
  border-radius: 4px;
  color: #1a1a1a;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  margin-top: 0.75rem;
  float: right;
}

.review-read-more:hover {
  background: #7bc934;
}

.review-content {
  color: var(--secondary);
  line-height: 1.8;
  font-size: 1rem;
}

/* Review form styling */
#review-form {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--entry);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

#review-form h3 {
  margin: 0 0 1.5rem 0;
  color: var(--primary);
}

#submit-review-form input,
#submit-review-form select,
#submit-review-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0 1rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--theme);
  color: var(--primary);
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}

#submit-review-form input:focus,
#submit-review-form select:focus,
#submit-review-form textarea:focus {
  outline: none;
  border-color: var(--theme);
}

#submit-review-form button {
  background: var(--theme);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s, opacity 0.2s;
}

#submit-review-form button:hover {
  transform: scale(1.05);
}

#form-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-weight: 500;
}

/* Review editor toolbar */
.review-editor {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.review-toolbar {
  display: flex;
  gap: 0.25rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border);
}

.toolbar-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--secondary);
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}

.toolbar-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}

.toolbar-separator {
  width: 1px;
  background: var(--border);
  margin: 0 0.25rem;
}

.review-editor textarea {
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

/* Review media upload */
.review-media-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.review-media-item {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.review-media-item img,
.review-media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-media-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-media-remove:hover {
  background: #dc3545;
}

.review-media-hint {
  font-size: 0.85rem;
  color: var(--secondary);
  margin-top: 0.5rem;
}

/* Review media display */
.review-media-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.review-media-gallery img,
.review-media-gallery video {
  max-width: 200px;
  max-height: 150px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
}

.review-media-gallery video {
  max-width: 300px;
}

/* Responsive reviews */
@media (max-width: 768px) {
  .review-header {
    flex-direction: column;
  }

  .review-rating {
    align-self: flex-start;
  }

  .review-title {
    font-size: 1.25rem;
  }

  .review-media-item {
    width: 100px;
    height: 100px;
  }
}

/* Account activity summary */
.account-activity-summary {
  margin: 1.5rem 0;
}

.activity-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.activity-card {
  background: var(--entry);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 120px;
}

.activity-card a {
  color: inherit;
  text-decoration: none;
}

.activity-card a:hover {
  text-decoration: underline;
}

.activity-count {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #90DD40;
}

/* ===== COMMENTS SECTION ===== */
.comments-container {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.comments-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.no-comments {
  color: var(--secondary);
  font-style: italic;
  padding: 1rem 0;
}

.comments-list {
  margin-bottom: 2rem;
}

.comment {
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--entry);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #90DD40;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Forum avatars */
.forum-avatar {
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  flex-shrink: 0;
}

.forum-avatar-small {
  width: 24px;
  height: 24px;
  font-size: 0.75rem;
}

.forum-avatar-medium {
  width: 32px;
  height: 32px;
  font-size: 0.9rem;
}

.forum-avatar-placeholder {
  background: #90DD40;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.forum-topic-meta,
.forum-reply-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.comment-author {
  font-weight: 600;
  color: var(--primary);
}

.comment-date {
  font-size: 0.85rem;
  color: var(--secondary);
}

.comment-edited {
  font-size: 0.8rem;
  color: var(--secondary);
  font-style: italic;
}

.comment-body {
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.comment-body p {
  margin: 0 0 0.5rem 0;
}

.comment-body p:last-child {
  margin-bottom: 0;
}

.comment-actions {
  margin-top: 0.5rem;
}

.btn-reply {
  background: transparent;
  border: 1px solid rgba(144, 221, 64, 0.3);
  color: #90DD40;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-reply:hover {
  background: rgba(144, 221, 64, 0.1);
  border-color: #90DD40;
}

.reply-form-container {
  margin-top: 0.75rem;
}

.comment-replies {
  margin-left: 1.5rem;
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(144, 221, 64, 0.3);
}

.comment-replies .comment {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.05);
}

/* Deeper nesting levels */
.comment-replies .comment-replies {
  border-left-color: rgba(144, 221, 64, 0.2);
}

.comment-replies .comment-replies .comment {
  background: rgba(0, 0, 0, 0.15);
}

/* Comment Form */
.comment-form-container {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.comment-form-container h4 {
  margin: 0 0 1rem 0;
  color: var(--primary);
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comment-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--entry);
  color: var(--primary);
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
  min-height: 100px;
}

.comment-textarea:focus {
  outline: none;
  border-color: #90DD40;
}

.comment-form-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.comment-message {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.comment-message .text-success {
  color: #28a745;
}

.comment-message .text-danger {
  color: #dc3545;
}

.login-prompt {
  color: var(--secondary);
  padding: 1rem;
  background: var(--entry);
  border-radius: var(--radius);
  text-align: center;
}

.login-prompt a {
  color: #90DD40;
  font-weight: 600;
}

/* Comment button styles */
.btn-furi {
  background: #90DD40;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-furi:hover {
  background: #7cc835;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--entry);
}

/* Responsive comments */
@media (max-width: 768px) {
  .comment-replies {
    margin-left: 1rem;
    padding-left: 0.75rem;
  }

  .comment-header {
    flex-wrap: wrap;
  }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE FIXES ===== */

/* Global text overflow prevention */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

/* Prevent horizontal scroll */
html {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Responsive images and media */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Text overflow handling for long words/URLs */
.post-content,
.blog-post-content,
.content-page-body,
.review-body,
.forum-topic-body,
.comment-body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 768px) {
  /* Main layout adjustments */
  .main {
    padding: 0.5rem !important;
  }

  .post-single {
    padding: 0.75rem;
  }

  /* Page titles */
  .post-title,
  h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    word-wrap: break-word;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  /* Blog post content */
  .post-content p,
  .blog-post-content p,
  .content-page-body p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* Tables responsive */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  /* Forms responsive */
  .furilabs-form,
  .review-form,
  #review-form,
  .contact-form {
    padding: 1rem;
    max-width: 100%;
  }

  .form-group input,
  .form-group select,
  .form-group textarea,
  .input-field {
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  /* Buttons touch-friendly */
  button,
  .btn,
  .btn-furi,
  .btn-secondary,
  #submit-btn {
    min-height: 44px; /* iOS touch target */
    padding: 0.75rem 1rem;
  }

  /* Reviews responsive */
  .review-card,
  .review-item {
    padding: 1rem;
  }

  .review-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .review-title {
    font-size: 1.1rem;
  }

  .review-body {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Shop pages */
  .shop-product-detail {
    padding: 0.5rem;
  }

  .product-add-cart {
    flex-wrap: wrap;
  }

  /* Cart items */
  .cart-item {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }

  .cart-item-image {
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
  }

  .cart-item-details {
    width: 100%;
    text-align: center;
  }

  .cart-item-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* Checkout */
  .shop-checkout-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .checkout-summary-section {
    order: -1; /* Show summary first on mobile */
  }

  /* FAQ */
  .faq-search-box {
    flex-direction: column;
  }

  #faq-search {
    width: 100%;
  }

  #search-btn {
    width: 100%;
  }

  .faq-item {
    padding: 1rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  /* Forum */
  .forum-topic-row {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .forum-topic-stats {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  /* Tickets */
  .ticket-item {
    padding: 0.75rem;
  }

  /* Account page */
  .account-activity-summary {
    overflow-x: auto;
  }

  .activity-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .activity-card {
    min-width: 100px;
    flex-shrink: 0;
  }

  /* Product intro section */
  .product-intro {
    height: auto;
    padding: 3rem 0;
  }

  .intro-text {
    padding: 0 1rem;
    text-align: center;
  }

  .intro-text h2,
  .intro-text h3 {
    font-size: 1.75rem;
  }

  .intro-text p {
    font-size: 1rem;
  }

  .intro-image {
    text-align: center;
  }

  .intro-image img {
    height: auto;
    max-height: 400px;
    width: 90%;
  }

  /* Security section */
  .security-content {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .security-content h2 {
    font-size: 2rem;
  }

  .security-content p {
    font-size: 1rem;
  }

  /* Feature boxes */
  .feature-box {
    padding: 1.5rem 1rem;
  }

  .feature-box i {
    font-size: 3rem;
  }

  .feature-box h3 {
    font-size: 1.25rem;
  }

  /* Spec items */
  .spec-item {
    padding: 1rem;
  }

  .spec-item h4 {
    font-size: 1rem;
  }

  .spec-item p {
    font-size: 0.85rem;
  }

  /* Navigation/Header actions */
  .header-support-link,
  .header-cart-link {
    padding: 0.5rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  /* Even smaller screens */
  .main {
    padding: 0.25rem !important;
  }

  .post-title,
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Hero section */
  .hero-content {
    padding: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  /* Price display */
  .price-old {
    font-size: 1.25rem;
  }

  .price-new {
    font-size: 1.75rem;
  }

  /* Lifestyle banner */
  .lifestyle-banner {
    height: 300px;
  }

  .lifestyle-banner-content h2,
  .lifestyle-banner-content h3 {
    font-size: 1.5rem;
  }

  /* CTA buttons */
  .btn-primary,
  .hero-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }

  /* Product intro */
  .intro-text h2,
  .intro-text h3 {
    font-size: 1.5rem;
  }

  /* Security section */
  .security-content h2 {
    font-size: 1.5rem;
  }

  /* Specs title */
  .specs-title {
    font-size: 2rem;
  }
}
