/*
Theme Name: Red Fitness
Theme URI: https://redfitness.com
Author: Red Fitness Team
Author URI: https://redfitness.com
Description: A modern, bold WordPress theme for gym clothes and fitness apparel with a sophisticated red color palette. Perfect for athletic wear brands.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: redfitness
Tags: fitness, gym, athletic, apparel, e-commerce, responsive, modern, red

Red Fitness - Premium Gym Clothes & Athletic Wear
*/

/* Color Palette Variables - Black & White Theme */
:root {
  --color-dark: #000000;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-text-light: #ffffff;
  --color-text-dark: #000000;
  --color-border: #333333;
  --color-hover: #1a1a1a;
}

/* Font Face Declarations */
/* Inter Font Family - for body text and paragraphs */
@font-face {
  font-family: 'Inter';
  src: url('assets/font/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('assets/font/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* Merriweather Font Family - for headings */
@font-face {
  font-family: 'Merriweather';
  src: url('assets/font/Merriweather/Merriweather-VariableFont_opsz,wdth,wght.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('assets/font/Merriweather/Merriweather-Italic-VariableFont_opsz,wdth,wght.ttf') format('truetype');
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  overflow-y: auto;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: none !important;
}

/* Simple reveal-on-scroll utility */
.rf-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for masonry items */
.masonry-item.rf-reveal {
  transition-delay: 0s;
}

.masonry-item.item-1.rf-reveal.rf-visible {
  transition-delay: 0.1s;
}

.masonry-item.item-2.rf-reveal.rf-visible {
  transition-delay: 0.2s;
}

.masonry-item.item-3.rf-reveal.rf-visible {
  transition-delay: 0.3s;
}

.masonry-item.item-4.rf-reveal.rf-visible {
  transition-delay: 0.4s;
}

.masonry-item.item-5.rf-reveal.rf-visible {
  transition-delay: 0.5s;
}

/* Banner content animation on load */
.banner-content {
  opacity: 0;
  transform: translateY(20px);
  animation: bannerFadeIn 1s ease-out 0.3s forwards;
}

@keyframes bannerFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-button.rf-reveal {
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  transition: opacity 0.8s ease-out 0.6s, transform 0.8s ease-out 0.6s;
}

.banner-button.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

a, a:hover, a:focus, a:active {
  text-decoration: none;
  color: var(--color-white);
  transition: color 0.3s ease;
}

a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Typography - All text uses Inter */
* {
  font-family: 'Inter', sans-serif;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Standard Heading Sizes */
h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem; /* 32px */
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-light);
  margin-bottom: 0.875rem;
}

h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem; /* 28px */
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem; /* 24px */
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

h5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

h6 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* 16px */
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

/* Body Text */
p, a, span, div, li, td, th, input, textarea, button {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* 16px */
}

/* Subheadings */
.subheading {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  line-height: 1.6;
}

/* Small Text */
small, .small-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; /* 14px */
  line-height: 1.5;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem; /* 32px */
  }
  
  h2 {
    font-size: 1.75rem; /* 28px */
  }
  
  h3 {
    font-size: 1.5rem; /* 24px */
  }
  
  h4 {
    font-size: 1.25rem; /* 20px */
  }
  
  h5 {
    font-size: 1.125rem; /* 18px */
  }
  
  h6 {
    font-size: 1rem; /* 16px */
  }
  
  body {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem; /* 28px */
  }
  
  h2 {
    font-size: 1.5rem; /* 24px */
  }
  
  h3 {
    font-size: 1.25rem; /* 20px */
  }
  
  body {
    font-size: 14px;
  }
}

/* Global Container - Bootstrap responsive breakpoints */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 576px) {
  .container {
      max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
      max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
      max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
      max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
      max-width: 1320px;
  }
}

/* Header / Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-black);
}

.main-navbar {
  height: 80px;
  background: var(--color-black);
}

.rf-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.rf-header-left {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-start;
}

.rf-header-right {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-end;
}

.rf-header-center {
  display: flex;
  justify-content: center;
}

.rf-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; /* 14px */
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-light);
  position: relative;
  padding-bottom: 4px;
}

.rf-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-white);
  transition: width 0.25s ease;
}

.rf-nav-link:hover::after,
.rf-nav-link-active::after {
  width: 100%;
}

.rf-icon-button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.rf-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid var(--color-text-light);
  position: relative;
}

/* Simple stylised glyphs for now – can be swapped for SVGs later */
.rf-icon-search::after {
  content: '';
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 8px;
  height: 1px;
  background: var(--color-text-light);
  transform: rotate(45deg);
}

.rf-icon-user::after {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 3px;
  height: 1px;
  background: var(--color-text-light);
}

.rf-icon-bag::before,
.rf-icon-bag::after {
  content: '';
  position: absolute;
  left: 4px;
  right: 4px;
  border: 1px solid var(--color-text-light);
}

.rf-icon-bag::before {
  top: 4px;
  border-bottom: none;
}

.rf-icon-bag::after {
  bottom: 3px;
  border-top: none;
}

@media (max-width: 768px) {
  .rf-header {
    grid-template-columns: 1fr auto;
  }

  .rf-header-left {
    display: none;
  }
}

.nav-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 576px) {
  .nav-container {
      max-width: 540px;
  }
}

@media (min-width: 768px) {
  .nav-container {
      max-width: 720px;
  }
}

@media (min-width: 992px) {
  .nav-container {
      max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .nav-container {
      max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .nav-container {
      max-width: 1320px;
  }
}

/* Brand Area */
.brand-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text-light);
  transition: opacity 0.3s ease;
}

.brand-link:hover {
  opacity: 0.8;
}

.brand-link .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 1;
}

.brand-link .custom-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.custom-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.brand-icon {
  height: 50px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-line-1 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  color: var(--color-white);
}

.brand-line-2 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* 16px */
  font-weight: 400;
  color: var(--color-text-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
      display: flex;
  }
}

.hamburger {
  width: 25px;
  height: 3px;
  background: var(--color-text-light);
  transition: all 0.3s ease;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background: var(--color-text-light);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Menu Area */
.menu-area {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 1024px) {
  .menu-area {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--color-black);
      flex-direction: column;
      align-items: flex-start;
      padding: 20px 24px;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      border-top: 1px solid var(--color-border);
  }
  
  .menu-area.active {
      max-height: 500px;
  }
}

.menu-item {
  color: var(--color-text-light);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
}

@media (max-width: 1024px) {
  .menu-item {
      width: 100%;
      padding: 12px 0;
      border-bottom: 1px solid var(--color-border);
  }
}

.menu-item:hover,
.menu-item.active {
  color: var(--color-white);
  opacity: 0.9;
}

.dropdown-trigger {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chevron-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.dropdown-trigger:hover .chevron-icon {
  transform: rotate(180deg);
}

.services-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-black);
  min-width: 200px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .services-dropdown {
      position: static;
      opacity: 1;
      visibility: visible;
      background: transparent;
      border: none;
      margin-top: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
  }
}

.dropdown-trigger:hover .services-dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--color-text-light);
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background: var(--color-hover);
  color: var(--color-white);
}

/* Main Content */
.site-main {
  margin-top: 40px;
  min-height: calc(100vh - 80px);
  background: var(--color-black);
}

.content-area {
  padding: 40px 0;
}

/* Posts Container */
.posts-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .posts-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .posts-container {
      grid-template-columns: repeat(3, 1fr);
  }
}

/* Post Styles */
.post {
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.entry-header {
  padding: 24px;
}

.entry-title {
  margin-bottom: 12px;
}

.entry-title a {
  color: var(--color-text-light);
  transition: color 0.3s ease;
}

.entry-title a:hover {
  color: var(--color-white);
  opacity: 0.8;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: rgba(245, 245, 245, 0.7);
}

.entry-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-thumbnail {
  width: 100%;
  overflow: hidden;
  background: var(--color-black);
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.post:hover .post-thumbnail img {
  transform: scale(1.05);
}

.entry-content {
  padding: 24px;
  color: rgba(245, 245, 245, 0.9);
}

.entry-content p {
  margin-bottom: 16px;
}

/* Single Post */
.single-post {
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
}

.single-post .entry-header {
  padding: 0;
  margin-bottom: 24px;
}

.single-post .entry-title {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--color-text-light);
}

.single-post .post-thumbnail {
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
}

.single-post .entry-content {
  padding: 0;
  font-size: 18px;
  line-height: 1.8;
}

.entry-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.cat-links,
.tags-links {
  display: inline-block;
  margin-right: 16px;
  font-size: 14px;
}

.cat-links a,
.tags-links a {
  color: var(--color-white);
  padding: 4px 8px;
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.cat-links a:hover,
.tags-links a:hover {
  background: var(--color-hover);
  border-color: var(--color-white);
}

/* Page Styles */
.page {
  background: var(--color-black);
  padding: 40px;
}

.page .entry-header {
  padding: 0;
  margin-bottom: 32px;
}

.page .entry-title {
  font-size: 42px;
  color: var(--color-text-light);
}

.page-thumbnail {
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
}

.page .entry-content {
  padding: 0;
  font-size: 18px;
  line-height: 1.8;
}

/* Page Header */
.page-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color-white);
}

.page-title {
  font-size: 42px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.archive-description {
  color: rgba(245, 245, 245, 0.7);
  font-size: 18px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding: 20px 0;
}

.pagination a,
.pagination span {
  padding: 10px 16px;
  background: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.pagination .current {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

/* Buttons */
.btn,
button,
input[type="submit"] {
  display: inline-block;
  padding: 12px 24px;
  background: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-white);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.cta-button {
  background: var(--color-white);
  color: var(--color-black);
  padding: 14px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--color-white);
}

.cta-button:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* Footer */
.main-footer {
  background: var(--color-black);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-top {
      grid-template-columns: 1fr 2fr;
  }
}

@media (min-width: 992px) {
  .footer-top {
      grid-template-columns: 1fr 3fr;
  }
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .footer-columns {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-columns {
      grid-template-columns: repeat(3, 1fr);
  }
}

.footer-heading {
  font-size: 20px;
  color: var(--color-text-light);
  margin-bottom: 20px;
  font-family: 'Merriweather', serif;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(245, 245, 245, 0.7);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--color-white);
  opacity: 0.9;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 245, 245, 0.7);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: var(--color-white);
  opacity: 0.9;
}

.cta-button-footer {
  display: inline-block;
  padding: 12px 24px;
  background: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-white);
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-button-footer:hover {
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      text-align: left;
  }
}

.footer-copyright {
  color: rgba(245, 245, 245, 0.6);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(245, 245, 245, 0.6);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-white);
  opacity: 0.9;
}

/* Search Form */
.search-form {
  display: flex;
  gap: 8px;
  margin: 20px 0;
}

.search-form input[type="search"] {
  flex: 1;
  padding: 12px 16px;
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-white);
  font-size: 16px;
}

.search-form input[type="search"]:focus {
  outline: none;
  border-color: var(--color-white);
}

.search-form button {
  padding: 12px 24px;
}

/* Comments */
.comments-area {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.comments-title {
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--color-text-light);
}

.comment-list {
  list-style: none;
  margin-bottom: 40px;
}

.comment {
  padding: 24px;
  margin-bottom: 24px;
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.comment-author {
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.comment-meta {
  font-size: 14px;
  color: rgba(245, 245, 245, 0.6);
  margin-bottom: 12px;
}

.comment-content {
  color: rgba(245, 245, 245, 0.9);
  line-height: 1.6;
}

.comment-form {
  margin-top: 40px;
}

.comment-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-light);
  font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-white);
  font-size: 16px;
  margin-bottom: 16px;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--color-white);
}

/* No Results */
.no-results {
  text-align: center;
  padding: 60px 20px;
}

.no-results .page-title {
  margin-bottom: 20px;
}

.no-results .page-content {
  color: rgba(245, 245, 245, 0.7);
  font-size: 18px;
}

/* Post Navigation */
.post-navigation {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

.nav-previous,
.nav-next {
  flex: 1;
}

.nav-previous a,
.nav-next a {
  display: block;
  padding: 16px 24px;
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-white);
  transition: all 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.nav-subtitle {
  display: block;
  font-size: 14px;
  color: rgba(245, 245, 245, 0.6);
  margin-bottom: 4px;
}

.nav-title {
  display: block;
  font-weight: 600;
  color: var(--color-text-light);
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}
a.banner-button.rf-reveal.rf-visible {
    margin-top: 23em;
}
/* Home Page Banner Section */
.home-banner {
  width: 100vw;
  min-height: 80vh;
  background: url('https://younggoat.in/wp-content/uploads/2026/03/YG-banner-4.1-scaled.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 70px 20px;
  margin-top: 40px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.banner-content {
  text-align: center;
  z-index: 1;
}

.banner-button {
  display: inline-block;
  padding: 18px 48px;
  background: transparent;
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--color-white);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: visible;
  animation: banner-button-pulse 2.4s ease-in-out infinite;
  z-index: 1;
}

.banner-button:hover {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3), 0 10px 30px rgba(255, 255, 255, 0.2);
}

@keyframes banner-button-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.0);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12);
    transform: translateY(-1px) scale(1.01);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.0);
    transform: translateY(0) scale(1);
  }
}

/* Shop by Category Section */
.shop-category-section {
  width: 100%;
  padding: 70px 0;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
  position: relative;
  z-index: 1;
  min-height: 400px;
  overflow: hidden;
}

.shop-category-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.shop-category-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.category-header {
  text-align: left;
  margin-bottom: 50px;
  position: relative;
}

.category-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem; /* 32px - standard h2 size */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white);
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
  position: relative;
  display: inline-block;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
}

.category-title.rf-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.category-title.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; /* 14px - standard subheading size */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 12px;
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.category-subtitle.rf-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.category-subtitle.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-item {
  display: flex;
  flex-direction: column;
  background: var(--color-black);
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--color-white);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.category-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  pointer-events: none;
}

.category-item:hover::before {
  opacity: 1;
}

.category-item.rf-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.category-item.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 8px 25px rgba(255, 255, 255, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}
.category-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 95%;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #000 65%);
}
.category-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0.6;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.category-item:hover .category-image-wrapper::after {
  opacity: 0.3;
}

.category-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;          /* fills rectangle */
  object-position: center top;/* keeps chest & logo safe */

  transition: transform 0.6s ease, filter 0.6s ease;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}

.category-item:hover .category-image {
  transform: scale(1.15);
  filter: brightness(1) contrast(1.2);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  pointer-events: none;
}

.category-item:hover .category-overlay {
  opacity: 1;
}

.category-content {
  padding: 24px 20px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, #000000 100%);
  position: relative;
  z-index: 3;
}

.category-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-white);
  margin-bottom: 12px;
  transition: all 0.4s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.category-item:hover .category-name {
  color: var(--color-white);
  transform: translateY(-2px);
  text-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.category-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.4s ease;
  position: relative;
  padding: 6px 0;
}

.category-link::after {
  content: '→';
  display: inline-block;
  transition: transform 0.4s ease;
  font-size: 1.2em;
}

.category-item:hover .category-link {
  color: var(--color-white);
  transform: translateX(6px);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

.category-item:hover .category-link::after {
  transform: translateX(4px);
}

/* Responsive adjustments for category section */
@media (max-width: 1024px) {
  .category-grid {
    gap: 24px;
  }

  .category-title {
    font-size: 2rem; /* 32px */
  }
}

@media (max-width: 768px) {
  .shop-category-section {
    padding: 60px 0;
  }

  .category-header {
    margin-bottom: 40px;
  }

  .category-title {
    font-size: 1.75rem; /* 28px */
    letter-spacing: 2px;
  }

  .category-subtitle {
    font-size: 1rem; /* 16px */
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }

  .category-content {
    padding: 20px 16px;
  }

  .category-name {
    font-size: 1.125rem; /* 18px */
  }
}

@media (max-width: 480px) {
  .shop-category-section {
    padding: 50px 0;
  }

  .category-title {
    font-size: 1.5rem; /* 24px */
  }

  .category-subtitle {
    font-size: 0.9375rem; /* 15px */
  }
}

/* Women Products Section */
.women-products-section,
.men-products-section,
.popular-products-section {
  width: 100%;
  padding: 70px 0;
  background: var(--color-black);
  position: relative;
}

.women-products-section .container,
.men-products-section .container,
.popular-products-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 20px;
}

.products-header-left {
  flex: 1;
  text-align: left;
}

.products-view-all {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.products-view-all::after {
  content: '→';
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.1em;
}

.products-view-all:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.products-view-all:hover::after {
  transform: translateX(4px);
}

.products-view-all.rf-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.products-view-all.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

.products-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem; /* 32px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white);
  position: relative;
  display: inline-block;
}

.products-title.rf-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.products-title.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

.products-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
}

.products-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; /* 14px - standard subheading size */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 12px;
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.products-subtitle.rf-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.products-subtitle.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.products-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-item {
  display: flex;
  flex-direction: column;
  background: var(--color-black);
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--color-white);
  position: relative;
}

.product-item.rf-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.product-item.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 4px 15px rgba(255, 255, 255, 0.1);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
  filter: brightness(0.9) contrast(1.1);
}

.product-item:hover .product-image {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.2);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  pointer-events: none;
}

.product-item:hover .product-overlay {
  opacity: 1;
}

.product-hover-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  z-index: 3;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-black);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid rgba(255, 255, 255, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.product-item:hover .product-hover-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.product-hover-button:hover {
  background: var(--color-white);
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.product-content {
  padding: 20px 16px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, #000000 100%);
  position: relative;
  z-index: 3;
}

.product-name {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* 16px */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-white);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.product-item:hover .product-name {
  color: var(--color-white);
}

.product-price {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem; /* 15px */
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

.product-item:hover .product-price {
  color: var(--color-white);
}

/* Responsive adjustments for products section */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .products-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .women-products-section,
  .men-products-section,
  .popular-products-section {
    padding: 60px 0;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 16px;
  }

  .products-view-all {
    align-self: flex-start;
  }

  .products-title {
    font-size: 1.75rem; /* 28px */
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .products-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .women-products-section,
  .men-products-section,
  .popular-products-section {
    padding: 50px 0;
  }

  .products-header {
    flex-direction: column;
    gap: 12px;
  }

  .products-view-all {
    font-size: 0.8125rem; /* 13px */
    padding: 6px 16px;
  }

  .products-title {
    font-size: 1.5rem; /* 24px */
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  
  .products-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Instagram Shop Section */
.instagram-shop-section {
  width: 100%;
  padding: 100px 0;
  background: var(--color-black);
  position: relative;
}

.instagram-shop-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.instagram-shop-header {
  text-align: center;
  margin-bottom: 60px;
}

.instagram-shop-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem; /* 32px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.instagram-shop-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-white), transparent);
}

.instagram-shop-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.instagram-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  background: var(--color-black);
  aspect-ratio: 1 / 1;
}

.instagram-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.instagram-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(15, 15, 15, 0.98));
}

.instagram-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.instagram-item:hover .instagram-image {
  transform: scale(1.1);
  filter: brightness(1.15) contrast(1.05);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-shop-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem; /* 13px */
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  transform: translateY(15px);
  transition: transform 0.4s ease, background 0.3s ease, border-color 0.3s ease;
}

.instagram-item:hover .instagram-shop-tag {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}


/* Reveal animations */
.instagram-shop-title.rf-reveal,
.instagram-shop-subtitle.rf-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.instagram-shop-title.rf-reveal.rf-visible,
.instagram-shop-subtitle.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

.instagram-item.rf-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.instagram-item.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive adjustments for Instagram Shop */
@media (max-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .instagram-shop-section {
    padding: 80px 0;
  }

  .instagram-shop-header {
    margin-bottom: 40px;
  }

  .instagram-shop-title {
    font-size: 1.75rem; /* 28px */
  }

  .instagram-shop-subtitle {
    font-size: 0.8125rem; /* 13px */
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .instagram-shop-section {
    padding: 60px 0;
  }

  .instagram-shop-title {
    font-size: 1.5rem; /* 24px */
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Contact Section */
.contact-section {
  width: 100%;
  padding: 100px 0;
  background: var(--color-black);
  position: relative;
}

.contact-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem; /* 32px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-white), transparent);
}

.contact-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  border-radius: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem; /* 13px */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem; /* 15px */
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

.contact-submit-button {
  width: 100%;
  padding: 16px 32px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 4px;
  margin-top: 8px;
}

.contact-submit-button:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.contact-submit-button:active {
  transform: translateY(0);
}

/* Reveal animations for contact section */
.contact-title.rf-reveal,
.contact-subtitle.rf-reveal,
.contact-form.rf-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-title.rf-reveal.rf-visible,
.contact-subtitle.rf-reveal.rf-visible,
.contact-form.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-header {
    margin-bottom: 40px;
  }

  .contact-title {
    font-size: 1.75rem; /* 28px */
  }

  .contact-subtitle {
    font-size: 0.8125rem; /* 13px */
  }

  .contact-form {
    padding: 30px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-title {
    font-size: 1.5rem; /* 24px */
  }

  .contact-form {
    padding: 24px 20px;
  }

  .form-group {
    margin-bottom: 20px;
  }
}

/* Young Goat Information Section */
.yg-info-section {
  width: 100vw;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--color-black);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.yg-info-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920&h=600&fit=crop') center/cover no-repeat;
  z-index: 0;
}

.yg-info-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.yg-info-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.yg-info-content {
  text-align: center;
}

.yg-info-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.yg-info-title.rf-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.yg-info-title.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

.yg-info-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem; /* 18px */
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.yg-info-text.rf-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.yg-info-text.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

.yg-info-button {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem; /* 15px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid var(--color-white);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.yg-info-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.yg-info-button:hover {
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.yg-info-button:hover::before {
  left: 0;
}

.yg-info-button.rf-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.yg-info-button.rf-reveal.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments for YG info section */
@media (max-width: 768px) {
  .yg-info-section {
    padding: 70px 0;
  }

  .yg-info-title {
    font-size: 2rem; /* 32px */
    margin-bottom: 20px;
  }

  .yg-info-text {
    font-size: 1rem; /* 16px */
    margin-bottom: 28px;
  }

  .yg-info-button {
    padding: 12px 28px;
    font-size: 0.875rem; /* 14px */
  }
}

@media (max-width: 480px) {
  .yg-info-section {
    padding: 60px 0;
  }

  .yg-info-title {
    font-size: 1.75rem; /* 28px */
    letter-spacing: 2px;
  }

  .yg-info-text {
    font-size: 0.9375rem; /* 15px */
  }
}

/* Masonry Gallery Section */
.masonry-gallery {
  width: 100vw;
  padding: 25px 0;
  background: var(--color-black);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.masonry-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 20px;
  align-items: start;
  justify-items: stretch;
}

@media (max-width: 1024px) {
  .masonry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  
  /* Reset grid positioning for tablet */
  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5 {
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .masonry-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Reset grid positioning for mobile */
  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5 {
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
}

.masonry-item {
  position: relative;
  overflow: hidden;
  background: var(--color-black);
  border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 0;
  width: 100%;
  height: 100%;
}

.masonry-item:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

/* Masonry Layout - 1 tall image in center, 2 horizontal on left, 2 horizontal on right */
/* Rows are defined by grid-auto-rows; center item spans 2 rows */
.item-1 {
  grid-column: 1;
  grid-row: 1;
}

.item-2 {
  grid-column: 3;
  grid-row: 1;
}

.item-3 {
  grid-column: 1;
  grid-row: 2;
}

.item-4 {
  grid-column: 3;
  grid-row: 2;
}

.item-5 {
  grid-column: 2;
  grid-row: 1 / span 2; /* tall center image */
}

/* UA Unstoppable Section */
.unstoppable-section {
  width: 100vw;
  min-height: 600px;
  padding: 100px 0;
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.98) 50%, rgba(0, 0, 0, 0.95) 100%),
    radial-gradient(ellipse at center, rgba(40, 0, 0, 0.3) 0%, transparent 70%);
  background-color: var(--color-black);
  text-align: center;
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
}

.unstoppable-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.4) 100%),
    radial-gradient(circle at 30% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.unstoppable-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

.unstoppable-section .container {
  position: relative;
  z-index: 2;
}

.unstoppable-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.unstoppable-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; /* 12px */
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.unstoppable-title {
  font-family: 'Inter', sans-serif;
  font-size: 3rem; /* 48px - standard h1 size */
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 32px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  position: relative;
}

.unstoppable-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  margin: 0 auto 32px;
  position: relative;
}

.unstoppable-divider::before,
.unstoppable-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translateY(-50%);
}

.unstoppable-divider::before {
  left: -20px;
}

.unstoppable-divider::after {
  right: -20px;
}

.unstoppable-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem; /* 18px - subheading size */
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 56px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.unstoppable-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.unstoppable-button {
  display: inline-block;
  padding: 18px 48px;
  background: transparent;
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--color-white);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.unstoppable-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.unstoppable-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -2;
}

.unstoppable-button:hover {
  color: var(--color-black);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2), 0 4px 15px rgba(0, 0, 0, 0.4);
  border-color: var(--color-white);
}

.unstoppable-button:hover span {
  color: var(--color-black);
}

.unstoppable-button:hover::before {
  left: 0;
}

.unstoppable-button:hover::after {
  width: 300px;
  height: 300px;
}

.unstoppable-button span {
  position: relative;
  z-index: 1;
  color: inherit;
}

/* Reveal animations for unstoppable section */
.unstoppable-label,
.unstoppable-title,
.unstoppable-divider,
.unstoppable-description,
.unstoppable-button {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.unstoppable-label.rf-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.unstoppable-title.rf-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.unstoppable-divider.rf-visible {
  opacity: 1;
  transform: translateY(0) scaleX(1);
  transition-delay: 0.4s;
}

.unstoppable-description.rf-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.unstoppable-button.rf-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.unstoppable-button:nth-child(2).rf-visible {
  transition-delay: 0.9s;
}

@media (max-width: 768px) {
  .unstoppable-section {
    padding: 70px 0;
    min-height: 500px;
  }

  .unstoppable-label {
    font-size: 0.6875rem; /* 11px */
    padding: 6px 16px;
    margin-bottom: 12px;
  }

  .unstoppable-title {
    font-size: 2.25rem; /* 36px - standard h2 size for tablet */
    letter-spacing: 3px;
    margin-bottom: 24px;
  }

  .unstoppable-divider {
    width: 60px;
    margin-bottom: 24px;
  }

  .unstoppable-description {
    font-size: 1rem; /* 16px - standard body text */
    margin-bottom: 40px;
    line-height: 1.7;
  }

  .unstoppable-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .unstoppable-button {
    width: 100%;
    max-width: 280px;
    padding: 16px 40px;
  }
}

@media (max-width: 480px) {
  .unstoppable-title {
    font-size: 2rem; /* 32px - standard h2 size for mobile */
    letter-spacing: 2px;
  }
}

/* Instagram Section */
.instagram-section {
  width: 100%;
  padding: 90px 0;
  background: var(--color-black);
  text-align: center;
}

.instagram-header {
  margin-bottom: 60px;
}

.instagram-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem; /* 40px - h1 size */
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.instagram-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  margin: 0 auto;
  position: relative;
}

.instagram-divider::before,
.instagram-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translateY(-50%);
}

.instagram-divider::before {
  left: -20px;
}

.instagram-divider::after {
  right: -20px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.instagram-item {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-black);
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.instagram-item:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 4px 15px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.instagram-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.instagram-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  filter: brightness(0.9) contrast(1.05);
}

.instagram-item:hover .instagram-image {
  transform: scale(1.15);
  filter: brightness(1) contrast(1.1);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease, background 0.4s ease;
  z-index: 1;
  backdrop-filter: blur(2px);
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.instagram-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  transform: scale(0.8);
}

.instagram-item:hover .instagram-icon {
  transform: scale(1);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.instagram-overlay svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.instagram-item:hover .instagram-overlay svg {
  transform: scale(1.1);
}

/* Reveal animations for Instagram section */
.instagram-title,
.instagram-divider,
.instagram-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.instagram-title.rf-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.instagram-divider.rf-visible {
  opacity: 1;
  transform: translateY(0) scaleX(1);
  transition-delay: 0.3s;
}

.instagram-item.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

.instagram-item:nth-child(1).rf-visible {
  transition-delay: 0.4s;
}

.instagram-item:nth-child(2).rf-visible {
  transition-delay: 0.5s;
}

.instagram-item:nth-child(3).rf-visible {
  transition-delay: 0.6s;
}

.instagram-item:nth-child(4).rf-visible {
  transition-delay: 0.4s;
}

.instagram-item:nth-child(5).rf-visible {
  transition-delay: 0.5s;
}

.instagram-item:nth-child(6).rf-visible {
  transition-delay: 0.6s;
}

.instagram-item:nth-child(7).rf-visible {
  transition-delay: 0.4s;
}

.instagram-item:nth-child(8).rf-visible {
  transition-delay: 0.5s;
}

.instagram-item:nth-child(9).rf-visible {
  transition-delay: 0.6s;
}

@media (max-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .instagram-section {
    padding: 70px 0;
  }

  .instagram-title {
    font-size: 2rem; /* 32px */
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .instagram-divider {
    width: 60px;
  }

  .instagram-header {
    margin-bottom: 40px;
  }

  .instagram-grid {
    gap: 12px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .instagram-title {
    font-size: 1.75rem; /* 28px */
  }
}

/* Young Goat Media Section */
.media-section {
  width: 100vw;
  min-height: 600px;
  padding: 70px 0;
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.98) 50%, rgba(0, 0, 0, 0.95) 100%),
    radial-gradient(ellipse at center, rgba(40, 0, 0, 0.3) 0%, transparent 70%);
  background-color: var(--color-black);
  text-align: center;
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
}

.media-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.4) 100%),
    radial-gradient(circle at 30% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.media-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

.media-section .container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.media-content {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.media-header {
  text-align: center;
  margin-bottom: 60px;
}

.media-title {
  font-family: 'Inter', sans-serif;
  font-size: 3rem; /* 48px - matching unstoppable */
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 32px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.media-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  margin: 0 auto 32px;
  position: relative;
}

.media-divider::before,
.media-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translateY(-50%);
}

.media-divider::before {
  left: -20px;
}

.media-divider::after {
  right: -20px;
}

.media-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem; /* 22px - larger text */
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.media-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.media-video-item {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-black);
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.media-video-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.media-video-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 8px 30px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.media-video-item:hover::before {
  opacity: 1;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: 10px;
}

.media-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  outline: none;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: #000;
}

.media-video-item:hover .media-video {
  transform: scale(1.03);
}

/* Custom video controls styling */
.media-video::-webkit-media-controls-panel {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.media-video::-webkit-media-controls-play-button,
.media-video::-webkit-media-controls-volume-slider,
.media-video::-webkit-media-controls-timeline {
  filter: brightness(1.2);
}

/* Add a subtle glow effect on hover */
.media-video-item::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(10px);
}

.media-video-item:hover::after {
  opacity: 1;
}

/* Reveal animations for media section */
.media-title,
.media-divider,
.media-description,
.media-video-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.media-title.rf-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.media-divider.rf-visible {
  opacity: 1;
  transform: translateY(0) scaleX(1);
  transition-delay: 0.3s;
}

.media-description.rf-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.media-video-item.rf-visible {
  opacity: 1;
  transform: translateY(0);
}

.media-video-item:nth-child(1).rf-visible {
  transition-delay: 0.6s;
}

.media-video-item:nth-child(2).rf-visible {
  transition-delay: 0.7s;
}

@media (max-width: 768px) {
  .media-section {
    padding: 50px 0;
  }

  .media-title {
    font-size: 2.25rem; /* 36px */
    letter-spacing: 3px;
    margin-bottom: 24px;
  }

  .media-divider {
    width: 60px;
    margin-bottom: 24px;
  }

  .media-description {
    font-size: 1.125rem; /* 18px */
  }

  .media-header {
    margin-bottom: 40px;
  }

  .media-content {
    padding: 0 20px;
  }

  .media-videos {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .media-title {
    font-size: 2rem; /* 32px */
    letter-spacing: 2px;
  }

  .media-section {
    padding: 35px 0;
  }

  .media-content {
    padding: 0 15px;
  }

  .media-videos {
    gap: 20px;
  }
}

/* Contact Section */
.contact-section {
  width: 100vw;
  padding: 100px 0;
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.95) 50%, rgba(0, 0, 0, 0.98) 100%),
    radial-gradient(ellipse at center, rgba(40, 0, 0, 0.2) 0%, transparent 70%);
  background-color: var(--color-black);
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem; /* 32px - h2 size */
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  margin: 0 auto 16px;
  position: relative;
}

.contact-divider::before,
.contact-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-divider::before {
  left: -16px;
}

.contact-divider::after {
  right: -16px;
}

.contact-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* 16px */
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form {
  background: transparent;
  border: none;
  padding: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* 16px */
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.contact-submit {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* 16px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--color-white);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  width: 100%;
}

.contact-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.contact-submit:hover {
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2), 0 4px 15px rgba(0, 0, 0, 0.4);
}

.contact-submit:hover::before {
  left: 0;
}

.contact-submit span {
  position: relative;
  z-index: 1;
}

.contact-submit:active {
  transform: translateY(0);
}

/* Reveal animations for contact section */
.contact-title,
.contact-divider,
.contact-subtitle,
.contact-form {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contact-title.rf-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.contact-divider.rf-visible {
  opacity: 1;
  transform: translateY(0) scaleX(1);
  transition-delay: 0.3s;
}

.contact-subtitle.rf-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.contact-form.rf-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-title {
    font-size: 1.75rem; /* 28px */
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .contact-divider {
    width: 50px;
    margin-bottom: 12px;
  }

  .contact-subtitle {
    font-size: 0.9375rem; /* 15px */
  }

  .contact-header {
    margin-bottom: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.5rem; /* 24px */
  }

  .contact-section {
    padding: 45px 0;
  }

  .form-group {
    margin-bottom: 16px;
  }
}

/* Fixed Young Goat Media Button */
.ygm-fixed-button {
  position: fixed;
  top: 50%;
  right: 26px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  color: var(--color-black);
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem; /* 15px */
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1;
  white-space: nowrap;
}

.ygm-fixed-button:hover {
  transform: translateY(-50%) rotate(-90deg) translateX(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-black);
  text-decoration: none;
}

.ygm-fixed-button:active {
  transform: translateY(-50%) rotate(-90deg) translateX(-2px) scale(1.02);
}

.ygm-button-text {
  position: relative;
  white-space: nowrap;
}

.ygm-button-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: var(--color-white);
  font-size: 0.6875rem; /* 11px */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
  position: relative;
}

.ygm-button-badge::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #ff6666, #ff0000);
  border-radius: 14px;
  z-index: -1;
  opacity: 0.5;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.6);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Hide button when at the media section */
.ygm-fixed-button.hide-button {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) rotate(-90deg) translateX(20px);
}

@media (max-width: 768px) {
  .ygm-fixed-button {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(-90deg);
    padding: 14px 18px;
    font-size: 0.875rem; /* 14px */
    gap: 10px;
  }

  .ygm-fixed-button:hover {
    transform: translateY(-50%) rotate(-90deg) translateX(-4px) scale(1.05);
  }

  .ygm-fixed-button:active {
    transform: translateY(-50%) rotate(-90deg) translateX(-2px) scale(1.02);
  }

  .ygm-fixed-button.hide-button {
    transform: translateY(-50%) rotate(-90deg) translateX(20px);
  }

  .ygm-button-badge {
    padding: 3px 8px;
    font-size: 0.625rem; /* 10px */
  }
}

@media (max-width: 480px) {
  .ygm-fixed-button {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(-90deg);
    padding: 12px 16px;
    font-size: 0.8125rem; /* 13px */
    gap: 8px;
  }

  .ygm-fixed-button:hover {
    transform: translateY(-50%) rotate(-90deg) translateX(-4px) scale(1.05);
  }

  .ygm-fixed-button:active {
    transform: translateY(-50%) rotate(-90deg) translateX(-2px) scale(1.02);
  }

  .ygm-fixed-button.hide-button {
    transform: translateY(-50%) rotate(-90deg) translateX(20px);
  }

  .ygm-button-text {
    font-size: 0.8125rem;
  }

  .ygm-button-badge {
    padding: 3px 7px;
    font-size: 0.5625rem; /* 9px */
  }
}

/* ============================================
   Refund Policy Page (Red Fitness theme)
   Banner + wider containers + same look as home
   ============================================ */

/* Dummy banner - full width, same feel as home banner */
.rf-policy-banner {
  width: 100vw;
  min-height: 45vh;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 80px;
  background-color: var(--color-black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rf-policy-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.rf-page-hero {
  width: 100%;
  padding: 48px 0 36px;
  background: var(--color-black);
  position: relative;
  margin-top: 0;
}

.rf-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.rf-page-hero .container {
  position: relative;
  z-index: 1;
}

.rf-page-hero-inner {
  text-align: left;
}

/* Page title - subtle dark gray / embossed on black (matches home minimal look) */
.rf-page-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Breadcrumb - Home = blue + underline (like design); current = light gray */
.rf-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.rf-breadcrumb-link {
  color: #5b9bd5;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.rf-breadcrumb-link:hover {
  color: #7eb8e8;
}

.rf-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 8px;
}

.rf-breadcrumb-current {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* Policy content section - same black + subtle gradient as .shop-category-section */
.rf-policy-section {
  width: 100%;
  padding: 0 0 48px;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
  position: relative;
}

.rf-policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

.rf-policy-content {
  width: 100%;
}

/* Section titles - "1. Return Policy" / "2. Refund Policy" */
.rf-policy-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f0f0f0;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  line-height: 1.3;
}

.rf-policy-section-title:first-child {
  margin-top: 0;
  padding-top: 0;
}

.rf-policy-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), transparent);
}

/* Body text - clean, readable */
.rf-policy-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #e8e8e8;
  line-height: 1.8;
  margin-bottom: 18px;
}

.rf-policy-text strong {
  color: #f2f2f2;
  font-weight: 600;
}

/* List - consistent spacing, clear bullets */
.rf-policy-list {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #e8e8e8;
  line-height: 1.8;
  margin: 0 0 22px 0;
  padding-left: 0;
  list-style: none;
}

.rf-policy-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.rf-policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background: #e8e8e8;
  border-radius: 50%;
}

/* Remove extra space after last block */
.rf-policy-content > .rf-policy-list:last-child,
.rf-policy-content > .rf-policy-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .rf-policy-banner {
    min-height: 35vh;
    margin-top: 64px;
  }

  .rf-page-hero {
    padding: 40px 0 32px;
  }

  .rf-page-hero-title {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }

  .rf-policy-section {
    padding: 0 0 40px;
  }

  .rf-policy-section-title {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 16px;
  }

  .rf-policy-text,
  .rf-policy-list {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .rf-page-hero-title {
    font-size: 1.75rem;
  }

  .rf-policy-section-title {
    font-size: 1.25rem;
  }
}



.rf-nav-item {
  position: relative;
  display: inline-block;
}

.rf-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 999;
}

.rf-submenu a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #000;
}

.rf-submenu a:hover {
  background: #f5f5f5;
}

.has-submenu:hover .rf-submenu {
  display: block;
}


.category-price {
  display: block;
  margin: 6px 0;
  font-weight: 600;
  color: #fff;
}

.buy-now {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  text-transform: uppercase;
}

.single-product  h1 {
  font-size: 28px;
  color: white;
  font-weight: 600;
}


.single-product bdi {
    font-size: 18px;
}
.woocommerce-product-details__short-description
{
  color: white;
  font-size: 16px;
}
.woocommerce div.product form.cart .button {
    vertical-align: middle;
    float: revert;
    margin-top: 0px;
    width: 100%;
    background: black;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid;
}


.quantity {
  width: 100%;
}
.product_meta {
  color: white;
  font-size: 16px;
}
span.posted_in a {
  color: white;
}
section.related.products {
  border-top: 1px solid white;
  padding-top: 17px;
}

section.related.products h2{
  color: white;
}

.single-product .container, .woocommerce-shop .container, .tax-product_cat .container{
  margin-top: 6em;
}
body {
  background-color: black !important;
}
h2.woocommerce-loop-product__title {
    color: white;
}
p.woocommerce-result-count {
  color: white;
}
.woocommerce-cart p {
  font-size: 14px;
}
a.wc-block-components-product-name {
  color: white;
  font-size: 18px;
}

button.wc-block-cart-item__remove-link {
  color: red !important;
  text-decoration: none !important;
}
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  color: white;
  border: 1px solid;
  border-radius: 10px;
}
.rf-icon {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.rf-icon-button {
  background: none;
  border: none;
  cursor: pointer;
}


.woocommerce-account a {
  color: white;
}

.woocommerce form .form-row::after, .woocommerce form .form-row::before, .woocommerce-page form .form-row::after, .woocommerce-page form .form-row::before {
  content: none;
  display: table;
}
.rf-search-form {
  display: flex;
  align-items: center;
  position: relative;
}

.rf-search-input {
  width: 0;
  opacity: 0;
  padding: 6px 0;
  margin-right: 6px;
  border: none;
  background: transparent;
  color: #fff;
  outline: none;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.rf-search-form.active .rf-search-input {
  width: 180px;
  opacity: 1;
  padding: 6px 10px;
  border-bottom: 1px solid #555;
}

.rf-search-submit {
  display: none;
}

.rf-search-form.active .rf-search-submit {
  display: inline-flex;
}
.footer-column{
  color: white;
}
.rf-submenu a {
  font-size: 15px;
}

a.wc-block-grid__product-link {
    color: white;
}

/* MOBILE SIDEBAR */
.rf-m-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: #000;
  z-index: 9999;
  padding: 20px;
  transition: left 0.35s ease;
}

.rf-m-menu.active {
  left: 0;
}

/* CLOSE */
.rf-m-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
  cursor: pointer;
}

/* LINKS & TOGGLES */
.rf-m-nav a,
.rf-m-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* SUBMENU */
.rf-m-sub {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  padding-left: 14px;
}

.rf-m-sub a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: #ccc;
}

/* ARROW */
.rf-m-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.rf-m-item.active .rf-m-arrow {
  transform: rotate(45deg);
}

/* ===============================
   HAMBURGER BASE
=============================== */

.rf-hamburger {
  display: none; /* hidden by default (desktop) */
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 10001;
  padding: 0;
}

/* hamburger lines */
.rf-hamburger span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: #fff; /* change if header is light */
  border-radius: 2px;
  transition: all 0.3s ease;
}

.rf-hamburger span:nth-child(1) {
  top: 12px;
}

.rf-hamburger span:nth-child(2) {
  top: 19px;
}

.rf-hamburger span:nth-child(3) {
  top: 26px;
}

/* ===============================
   MOBILE ONLY
=============================== */

@media (max-width: 1024px) {
  .rf-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .rf-header-center {
    margin-left: 30px;

      
  }
  
  .rf-icon.rf-icon-search{
      width: 15px;
    height: 15px;
  }
  .rf-icon {
    width: 18px;
    height: 18px;
    fill: #fff;
}
.rf-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}
}




.cart {
  display: flex;
  align-items: center;
  gap: 10px; /* space between quantity & button */
}

.cart .quantity {
  width: 30%;
}

.cart .quantity input {
  width: 100%;
  height: 45px;
  text-align: center;
}

.cart .single_add_to_cart_button {
  width: 70%;
  height: 45px;
}
.quantity .qty {
    width: 100% !important;
    text-align: center;
}

@media (max-width: 600px) {
  .cart {
    flex-direction: column;
  }

  .cart .quantity,
  .cart .single_add_to_cart_button {
    width: 100%;
  }
}
