/*
Theme Name: Röllin Racing Shop v2.1
Theme URI: https://pressmegpt.com
Author: PressMeGPT
Author URI: https://pressmegpt.com
Description: This theme was generated by PressMeGPT.com - AI WordPress Theme Generator. Free software released under GNU GPLv2 with attribution.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rllin-racing-shop
Tags: custom, pressmegpt, ai-generated, custom-logo, custom-menu, custom-colors, light

This theme was created with PressMeGPT.com - AI WordPress Theme Generator.
Free to use, modify, and distribute under GNU GPLv2 with attribution.
*/

/* Reset and base styles */
*, *::before, *::after {
box-sizing: border-box;
}

body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
}

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

a {
text-decoration: none;
}

/* ===== Header Styles ===== */
.site-header {
padding: 1rem 2rem;
}

.header-inner {
max-width: 1400px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}

/* Header Layout: Logo Left, Menu Right (default) */
.header-layout-logo-left-menu-right .header-inner {
flex-direction: row;
justify-content: space-between;
}

/* Header Layout: Logo Right, Menu Left */
.header-layout-logo-right-menu-left .header-inner {
flex-direction: row-reverse;
justify-content: space-between;
}

/* Header Layout: Logo Center, Menu Below */
.header-layout-logo-center-menu-below .header-inner {
flex-direction: column;
text-align: center;
}

.header-layout-logo-center-menu-below .site-branding {
margin-bottom: 1rem;
}

/* Header Layout: Logo Center, Menu Split */
.header-layout-logo-center-menu-split .header-inner {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
}

.header-layout-logo-center-menu-split .menu-left {
justify-self: end;
}

.header-layout-logo-center-menu-split .menu-right {
justify-self: start;
}

/* Site Branding */
.site-branding {
display: flex;
align-items: center;
gap: 1rem;
}

.site-branding a {
display: inline-block;
}

.custom-logo {
display: block;
height: auto;
}

.site-title {
margin: 0;
font-size: 1.5rem;
font-weight: 700;
}

.site-title a {
color: inherit;
}

.site-description {
margin: 0.25rem 0 0;
font-size: 0.875rem;
opacity: 0.8;
}

/* Primary Navigation */
.main-navigation {
display: flex;
align-items: center;
}

.main-navigation ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 1.5rem;
}

.main-navigation li {
position: relative;
}

.main-navigation a {
display: block;
padding: 0.5rem 0;
font-weight: 500;
transition: color 0.2s ease;
}

.main-navigation a:hover {
opacity: 0.7;
}

/* Dropdown menus */
.main-navigation ul ul {
position: absolute;
top: 100%;
left: 0;
min-width: 200px;
flex-direction: column;
gap: 0;
background: #fff;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
border-radius: 4px;
padding: 0.5rem 0;
opacity: 0;
visibility: hidden;
transition: opacity 0.2s, visibility 0.2s;
}

.main-navigation li:hover > ul {
opacity: 1;
visibility: visible;
}

.main-navigation ul ul a {
padding: 0.5rem 1rem;
color: #333;
}

/* Mobile Menu Toggle */
.menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}

.menu-toggle svg {
width: 24px;
height: 24px;
}

@media (max-width: 768px) {
.menu-toggle {
    display: block;
}

.main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: inherit;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.main-navigation.toggled {
    display: block;
}

.main-navigation ul {
    flex-direction: column;
    gap: 0.5rem;
}

.main-navigation ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding-left: 1rem;
}
}

/* ===== Footer Styles ===== */
.site-footer {
padding: 2rem;
}

.footer-inner {
max-width: 1400px;
margin: 0 auto;
}

/* Footer Layout: Centered */
.footer-layout-centered .footer-inner {
text-align: center;
}

.footer-layout-centered .footer-navigation ul {
justify-content: center;
}

/* Footer Layout: Left Aligned */
.footer-layout-left-aligned .footer-inner {
text-align: left;
}

/* Footer Layout: Split */
.footer-layout-split .footer-inner {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

/* Footer Navigation */
.footer-navigation {
margin-bottom: 1rem;
}

.footer-navigation ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 1.5rem;
flex-wrap: wrap;
}

.footer-navigation a {
font-size: 0.875rem;
transition: opacity 0.2s;
}

.footer-navigation a:hover {
opacity: 0.7;
}

/* Footer Menu Position */
.footer-menu-below .footer-navigation {
order: 2;
margin-bottom: 0;
margin-top: 1rem;
}

.footer-menu-below .site-info {
order: 1;
}

/* Footer Widgets */
.footer-widgets {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.footer-widgets .widget {
margin-bottom: 0;
}

.footer-widgets .widget-title {
font-size: 1rem;
font-weight: 600;
margin-bottom: 1rem;
}

/* Site Info */
.site-info {
font-size: 0.875rem;
opacity: 0.8;
}

.site-info p {
margin: 0;
}

@media (max-width: 768px) {
.footer-layout-split .footer-inner {
    flex-direction: column;
    text-align: center;
}

.footer-navigation ul {
    justify-content: center;
}
}

/* ===== Widget Styles ===== */
.widget {
margin-bottom: 2rem;
}

.widget-title {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 1rem;
}

.widget ul {
list-style: none;
padding: 0;
margin: 0;
}

.widget li {
padding: 0.25rem 0;
}

/* ===== Content Styles ===== */
.content-area {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}

.content-area.has-sidebar {
display: grid;
grid-template-columns: 1fr 300px;
gap: 3rem;
align-items: start;
}

@media (max-width: 768px) {
.content-area.has-sidebar {
    grid-template-columns: 1fr;
    gap: 2rem;
}
}

/* PressMeGPT: full-bleed entry header for blog posts (rendered outside .content-area) */
.single .entry-header,
.page .entry-header.full-bleed {
width: 100%;
margin: 0;
}

.primary-content {
min-width: 0;
}

.page-content-wrapper {
max-width: 1200px;
margin: 0 auto;
}

/* PressMeGPT inner pages render full-bleed (sections handle their own width) */
.pressmegpt-page-content,
.pressmegpt-page-content.entry-content {
width: 100%;
max-width: none;
margin: 0;
padding: 0;
line-height: inherit;
}

.page-header {
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 2px solid #D7282F;
}

.page-title {
font-size: 2rem;
margin: 0 0 0.5rem;
color: #0B0C0E;
}

.archive-description {
font-size: 1rem;
opacity: 0.7;
}

.entry-header {
margin-bottom: 1.5rem;
}

.entry-title {
font-size: 2rem;
margin: 0 0 0.5rem;
}

.entry-title a {
color: #0B0C0E;
text-decoration: none;
transition: color 0.2s;
}

.entry-title a:hover {
color: #D7282F;
}

.entry-meta {
font-size: 0.875rem;
opacity: 0.7;
margin-bottom: 0.5rem;
}

.entry-content {
margin-bottom: 2rem;
line-height: 1.8;
}

.entry-footer {
font-size: 0.875rem;
padding: 1rem 0;
border-top: 1px solid rgba(0,0,0,0.1);
margin-bottom: 1.5rem;
}

.entry-footer .cat-links,
.entry-footer .tags-links {
display: block;
margin-bottom: 0.25rem;
}

.entry-footer a {
color: #D7282F;
}

.post-thumbnail {
margin-bottom: 1.5rem;
}

.post-thumbnail img {
border-radius: 8px;
width: 100%;
}

/* Post navigation */
.post-navigation,
.posts-navigation {
padding: 1.5rem 0;
border-top: 1px solid rgba(0,0,0,0.1);
margin-top: 1rem;
}

.post-navigation a,
.posts-navigation a,
.nav-links a {
color: #D7282F;
text-decoration: none;
font-weight: 500;
}

.post-navigation a:hover,
.posts-navigation a:hover,
.nav-links a:hover {
text-decoration: underline;
}

.nav-subtitle {
display: block;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.05em;
opacity: 0.6;
margin-bottom: 0.25rem;
}

/* ===== Search ===== */
.search-form {
display: flex;
max-width: 500px;
}

.search-form .search-field {
flex: 1;
padding: 10px 16px;
border: 2px solid rgba(0,0,0,0.15);
border-right: none;
border-radius: 6px 0 0 6px;
font-size: 1rem;
outline: none;
}

.search-form .search-field:focus {
border-color: #D7282F;
}

.search-form .search-submit {
padding: 10px 20px;
background: #D7282F;
color: #fff;
border: 2px solid #D7282F;
border-radius: 0 6px 6px 0;
cursor: pointer;
font-weight: 600;
font-size: 1rem;
}

.search-result {
padding-bottom: 1.5rem;
margin-bottom: 1.5rem;
border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ===== Comments ===== */
.comments-area {
margin-top: 2rem;
padding-top: 2rem;
border-top: 2px solid rgba(0,0,0,0.08);
}

.comments-title {
font-size: 1.5rem;
margin-bottom: 1.5rem;
}

.comment-list {
list-style: none;
padding: 0;
margin: 0;
}

.comment-list li {
padding: 1rem 0;
border-bottom: 1px solid rgba(0,0,0,0.06);
}

.comment-list .comment-author img {
border-radius: 50%;
margin-right: 0.75rem;
vertical-align: middle;
}

.comment-form label {
display: block;
margin-bottom: 0.25rem;
font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
width: 100%;
padding: 10px 14px;
border: 2px solid rgba(0,0,0,0.12);
border-radius: 6px;
font-size: 1rem;
margin-bottom: 1rem;
}

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

.comment-form .submit-button,
.comment-form input[type="submit"] {
background: #D7282F;
color: #fff;
border: none;
padding: 12px 24px;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
font-size: 1rem;
}

/* ===== Sidebar ===== */
.widget-area {
padding: 1.5rem;
background: rgba(0,0,0,0.03);
border-radius: 8px;
}

.widget-area .widget {
margin-bottom: 2rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid rgba(0,0,0,0.08);
}

.widget-area .widget:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}

.widget-area .widget-title {
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: #0B0C0E;
}

.widget-area ul {
list-style: none;
padding: 0;
margin: 0;
}

.widget-area li {
padding: 0.35rem 0;
}

.widget-area a {
color: #D7282F;
text-decoration: none;
}

.widget-area a:hover {
text-decoration: underline;
}

/* ===== Utility Classes ===== */
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}

.skip-link:focus {
background-color: #f1f1f1;
clip: auto !important;
clip-path: none;
color: #21759b;
display: block;
font-size: 0.875rem;
font-weight: 700;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
}

/* Theme Designer Custom Styles */
/* Base Styles & Utilities */
* {
  min-width: 0;
  box-sizing: border-box;
}

:root {
  --td-color-primary: #D7282F;
  --td-color-secondary: #0B0C0E;
  --td-color-accent: #EFA9AC;
  --td-color-background: #FFFFFF;
  --td-color-text: #0B0C0E;
  --td-color-heading: #0B0C0E;
  --td-color-link: #D7282F;
  --td-color-link-hover: #b82025;
  --td-color-btn-primary-bg: #D7282F;
  --td-color-btn-primary-text: #FFFFFF;
  --td-color-btn-primary-hover: #b82025;
  --td-color-btn-secondary-bg: transparent;
  --td-color-btn-secondary-text: #FFFFFF;
  --td-color-btn-secondary-hover: rgba(255,255,255,0.1);
  --td-color-header-bg: #0B0C0E;
  --td-color-header-text: #FFFFFF;
  --td-color-footer-bg: #0B0C0E;
  --td-color-footer-text: #E0E0E0;
  --td-font-body: 'Inter', sans-serif;
  --td-font-heading: 'Inter', sans-serif;
  --td-font-size-base: 18px;
  --td-heading-scale: 1.25;
}

body {
  font-family: var(--td-font-body);
  color: var(--td-color-text);
  background: var(--td-color-background);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--td-color-link);
  text-decoration: none;
}

a:hover {
  color: var(--td-color-link-hover);
  text-decoration: none;
}

.fse-group, .fse-section {
  overflow-x: hidden;
}

.fse-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Headings */
.fse-heading {
  font-family: var(--td-font-heading);
  color: var(--td-color-heading);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0;
  margin-bottom: 0.8em;
}

.fse-heading.fse-hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--td-color-header-text);
}

h2.fse-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h3.fse-heading {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 0.7em;
}

h4.fse-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7em;
}

.fse-paragraph {
  font-size: var(--td-font-size-base);
  line-height: 1.6;
  margin-bottom: 1em;
}

.fse-text-primary {
  color: var(--td-color-primary);
}

.fse-tagline {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--td-color-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.fse-link-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--td-color-text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.fse-link-text:hover {
  color: var(--td-color-primary);
}

.fse-link-text i {
  transition: transform 0.3s ease;
}

.fse-link-text:hover i {
  transform: translateX(4px);
}

/* Buttons */
.fse-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 0px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.fse-button:hover {
  text-decoration: none;
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.fse-button-primary {
  background: var(--td-color-btn-primary-bg);
  color: var(--td-color-btn-primary-text);
  border-color: var(--td-color-btn-primary-bg);
}

.fse-button-secondary {
  background: var(--td-color-btn-secondary-bg);
  color: var(--td-color-header-text);
  border-color: rgba(255, 255, 255, 0.2);
}

.fse-button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  filter: none;
}

.fse-button i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.fse-button:hover i {
  transform: translateX(4px);
}

.fse-button-icon {
  padding: 12px;
  border-radius: 0;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: normal;
  border: none;
}

.fse-button-icon i {
  margin-left: 0;
}

.fse-bg-white {
  background: #FFFFFF;
  color: var(--td-color-text);
}

.fse-bg-light {
  background: #F4F5F7;
  color: var(--td-color-text);
}

.fse-bg-dark {
  background: var(--td-color-secondary);
  color: var(--td-color-footer-text);
}

/* Section: Header */
.fse-header {
  padding: 15px 0;
  background: var(--td-color-header-bg);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.fse-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.fse-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 1 auto;
  padding-left: 0;
}

.fse-header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 0 auto;
  margin-left: auto;
  padding-right: 0;
}

.fse-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fse-logo {
  height: 40px;
  width: auto;
  min-height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.fse-site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--td-color-header-text);
  display: none; /* Hide site title, show logo */
}

.fse-main-nav {
  display: flex;
}

.fse-nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.fse-nav-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.fse-nav-menu a:hover {
  color: var(--td-color-header-text);
}

.fse-toggle-button {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--td-color-header-text);
  padding: 8px;
}

.fse-header-actions {
  display: flex;
  gap: 15px;
}

.fse-main-nav.mobile-open {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--td-color-header-bg);
  flex-direction: column;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 100;
}

.fse-main-nav.mobile-open .fse-nav-menu {
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

/* Section: Hero */
.fse-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 100px; /* Account for fixed header */
  background-color: var(--td-color-secondary);
  overflow: hidden;
  text-align: left;
}

.fse-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/images/011-8b0980327_0ba3b4d5-7cc8-483a-a904-f8b92acf4ae2.jpeg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.fse-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--td-color-secondary) 0%, rgba(11, 12, 14, 0.8) 50%, transparent 100%), linear-gradient(to top, var(--td-color-secondary) 0%, transparent 40%);
  z-index: 1;
}

.fse-hero.fse-hero-dark-overlay {
  color: var(--td-color-header-text);
}

.fse-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.fse-hero-content > * {
  margin-bottom: 20px;
}

.fse-hero-content .fse-hero-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  font-weight: 500;
}

.fse-hero-content .fse-hero-subheadline {
  font-size: 1.125rem;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.6;
}

.fse-hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.fse-hero-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 50px;
}

.fse-hero-features .fse-paragraph {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fse-dot-separator {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(215, 40, 47, 0.6);
}

.fse-scroll-down-button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  cursor: pointer;
  animation: bounce 1.5s infinite;
  transition: color 0.3s ease;
}

.fse-scroll-down-button:hover {
  color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

/* Section: Features Grid (from Trust Element) */
.fse-features-grid-section {
  padding: 80px 0;
  position: relative;
}

.fse-features-grid-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.fse-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.fse-feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px;
  transition: background 0.5s ease, border-color 0.5s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.fse-feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.fse-feature-card::before, .fse-feature-card::after {
  content: '';
  position: absolute;
  background: rgba(215, 40, 47, 0.4);
  transition: background 0.3s ease;
}

.fse-feature-card::before {
  top: 0;
  left: 0;
  width: 24px;
  height: 1px;
}

.fse-feature-card::after {
  top: 0;
  left: 0;
  width: 1px;
  height: 24px;
}

.fse-feature-card .fse-icon {
  font-size: 1.25rem;
  color: var(--td-color-primary);
  margin-bottom: 1rem;
}

.fse-feature-card .fse-heading {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--td-color-header-text);
  margin-bottom: 0.5rem;
}

.fse-feature-card .fse-paragraph {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Section: Categories */
.fse-categories-section {
  padding: 80px 0;
  background: var(--td-color-background);
  position: relative;
}

.fse-categories-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(to top, var(--td-color-secondary) 0%, transparent 100%);
  z-index: 1;
}

.fse-categories-section .fse-heading {
  margin-bottom: 3rem;
}

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

.fse-category-card {
  position: relative;
  min-height: 240px;
  background: var(--td-color-secondary);
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.fse-category-card-large {
  grid-row: span 2;
  min-height: 420px;
}

.fse-category-card .fse-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.fse-category-card:hover .fse-image {
  transform: scale(1.05);
  opacity: 0.9;
}

.fse-category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--td-color-secondary) 0%, rgba(11, 12, 14, 0.4) 40%, transparent 100%);
  z-index: 1;
}

.fse-category-card .fse-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: var(--td-color-header-text);
}

.fse-category-card .fse-card-tag {
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.fse-category-card .fse-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--td-color-header-text);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.fse-category-card .fse-link-text {
  color: var(--td-color-primary);
}

.fse-category-card:hover .fse-link-text {
  color: var(--td-color-header-text);
}

.fse-category-card .fse-corner-accent {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  z-index: 2;
}

.fse-category-card .fse-corner-accent::before,
.fse-category-card .fse-corner-accent::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.5s ease;
}

.fse-category-card:hover .fse-corner-accent::before,
.fse-category-card:hover .fse-corner-accent::after {
  background: rgba(215, 40, 47, 0.4);
}

.fse-category-card .fse-corner-accent::before {
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
}

.fse-category-card .fse-corner-accent::after {
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
}

/* Section: Products */
.fse-products-section {
  padding: 80px 0;
  background: var(--td-color-background);
}

.fse-products-section .fse-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  border-top: 1px solid #E8E9EB;
  padding-top: 2.5rem;
}

.fse-products-section .fse-section-header .fse-heading {
  margin-bottom: 0;
}

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

.fse-product-card {
  background: #FFFFFF;
  border: 1px solid #E8E9EB;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.fse-product-card:hover {
  border-color: rgba(215, 40, 47, 0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.fse-product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #FAFAFA;
}

.fse-product-image-wrap .fse-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  color: #FFFFFF;
  background: var(--td-color-secondary);
}

.fse-product-image-wrap .fse-badge-secondary {
  background: #1A365D; /* Example secondary badge color from source */
}

.fse-product-image-wrap .fse-badge-primary {
  background: var(--td-color-primary);
}

.fse-product-image-wrap .fse-weight-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  font-size: 0.5625rem;
  letter-spacing: 0.05em;
  color: rgba(11, 12, 14, 0.4);
  background: #F4F5F7;
  padding: 4px 8px;
  font-weight: 500;
}

.fse-product-image-wrap .fse-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.fse-product-card:hover .fse-product-image-wrap .fse-image {
  transform: scale(1.05);
}

.fse-product-image-wrap .fse-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 14, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fse-product-card:hover .fse-image-overlay {
  opacity: 1;
}

.fse-product-image-wrap .fse-image-overlay .fse-button {
  transform: none; /* Override general button hover transform */
  filter: none;
}

.fse-product-image-wrap .fse-image-overlay .fse-bg-white {
  color: var(--td-color-text);
}

.fse-product-details {
  padding: 16px;
}

.fse-product-details .fse-heading {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--td-color-text);
  margin-bottom: 0.75rem;
}

.fse-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fse-product-footer .fse-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--td-color-text);
}

.fse-product-footer .fse-link-text {
  opacity: 0;
  pointer-events: none;
}

.fse-product-card:hover .fse-product-footer .fse-link-text {
  opacity: 1;
  pointer-events: auto;
}

/* Section: Service Focus (Image + Text) */
.fse-service-focus {
  padding: 80px 0;
}

.fse-service-focus .fse-container {
  gap: 60px;
}

.fse-service-image-column img {
  border-radius: 0px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.fse-service-content-column .fse-heading {
  color: var(--td-color-header-text);
}

.fse-service-content-column .fse-paragraph {
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
}

.fse-service-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 40px;
}

.fse-service-list li.fse-paragraph {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.fse-service-list i {
  color: var(--td-color-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Section: About */
.fse-about-section {
  padding: 80px 0;
  position: relative;
}

.fse-about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232, 233, 235, 1), transparent);
}

.fse-about-layout {
  gap: 60px;
}

.fse-about-text-column .fse-heading {
  margin-top: 0;
}

.fse-about-stats-column {
  text-align: center;
}

.fse-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.fse-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 20px;
  border-radius: 0px;
  background: #fdfdfd;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.fse-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--td-color-primary);
  line-height: 1;
}

.fse-stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--td-color-text);
}

/* Section: Final CTA */
.fse-cta-section {
  padding: 100px 0;
  background: var(--td-color-secondary);
  text-align: center;
}

.fse-cta-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--td-color-header-text);
}

.fse-cta-content .fse-heading {
  color: var(--td-color-header-text);
  margin-bottom: 20px;
}

.fse-cta-content .fse-paragraph {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

/* Section: Footer */
.fse-footer {
  background: var(--td-color-footer-bg);
  padding: 60px 0 20px;
  color: var(--td-color-footer-text);
  font-size: 0.95rem;
}

.fse-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.fse-footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.fse-footer-columns .fse-column {
  text-align: left;
}

.fse-footer-columns .fse-column h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--td-color-footer-text);
  text-align: left;
  font-weight: 700;
}

.fse-footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.fse-footer-columns .fse-paragraph {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.fse-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.fse-footer-menu li {
  margin-bottom: 10px;
}

.fse-footer-menu a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.fse-footer-menu a:hover {
  color: var(--td-color-primary);
}

.fse-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.fse-contact-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  justify-content: flex-start;
  color: rgba(255,255,255,0.7);
}

.fse-contact-list i {
  width: 20px;
  color: var(--td-color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.fse-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
}

.fse-copyright {
  font-size: 14px;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

/* Responsive Rules */
.fse-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.fse-column {
  flex: 1 1 0;
  min-width: 0;
}

.fse-columns.fse-align-center {
  align-items: center;
}

@media (min-width: 769px) {
  .fse-column.fse-service-image-column {
    flex-basis: 45%;
  }

  .fse-column.fse-service-content-column {
    flex-basis: 50%;
  }

  .fse-column.fse-about-text-column {
    flex-basis: 60%;
  }

  .fse-column.fse-about-stats-column {
    flex-basis: 35%;
  }
}

@media (max-width: 992px) {
  .fse-features-grid, .fse-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fse-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fse-category-card-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 320px;
  }
  h1.fse-heading.fse-hero-headline {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
  }
  h2.fse-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .fse-toggle-button {
    display: block;
    order: 3;
    margin-left: auto;
  }
  .fse-main-nav {
    display: none;
  }
  .fse-header-actions {
    display: none;
  }
  .fse-header-content {
    flex-wrap: wrap;
  }
  .fse-columns {
    flex-direction: column;
  }
  .fse-column {
    flex: 1 1 100%;
    width: 100%;
  }
  .fse-hero {
    text-align: center;
    padding-top: 80px;
  }
  .fse-hero::after {
    background: linear-gradient(to top, var(--td-color-secondary) 0%, rgba(11, 12, 14, 0.4) 40%, transparent 100%);
  }
  .fse-hero-content {
    padding: 0 15px;
  }
  .fse-hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .fse-hero-buttons .fse-button {
    width: 100%;
    max-width: 280px;
  }
  .fse-hero-features {
    justify-content: center;
  }
  .fse-dot-separator {
    display: none;
  }
  .fse-features-grid, .fse-products-grid {
    grid-template-columns: 1fr;
  }
  .fse-categories-grid {
    grid-template-columns: 1fr;
  }
  .fse-category-card-large {
    grid-column: span 1;
    min-height: 280px;
  }
  .fse-footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .fse-footer-columns .fse-column {
    text-align: center;
  }
  .fse-footer-columns .fse-column h4 {
    text-align: center;
  }
  .fse-footer-menu, .fse-contact-list {
    text-align: center;
  }
  .fse-contact-list li {
    justify-content: center;
  }
  .fse-section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .fse-section-header .fse-heading {
    margin-bottom: 0.5rem;
  }
  .fse-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1.fse-heading.fse-hero-headline {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }
  .fse-hero-content .fse-hero-subheadline {
    font-size: 1rem;
  }
  .fse-hero-content .fse-hero-tagline {
    font-size: 0.65rem;
  }
}

/* === Scroll Reveal Animation System === */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.animate-on-scroll { opacity: 0; }
.animate-slide-left { opacity: 0; }
.animate-slide-right { opacity: 0; }
.animate-scale { opacity: 0; }
.animate-on-scroll.visible { animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-slide-left.visible { animation: fadeSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-slide-right.visible { animation: fadeSlideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-scale.visible { animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
/* Hover micro-interactions — buttons only lighten slightly, no underline, no text color change */
.fse-button { transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.2s ease; }
.fse-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); filter: brightness(1.1); text-decoration: none !important; }
.fse-button:hover * { text-decoration: none !important; color: inherit !important; }




/* ===== Per-Page Scoped Styles (PressMeGPT) ===== */


/* ===== PressMeGPT: Blog/Archive Layout Enforcement (must win over master CSS) ===== */
body.single .content-area,
body.blog .content-area,
body.archive .content-area,
body.search .content-area,
body.error404 .content-area {
max-width: 1200px !important;
margin-left: auto !important;
margin-right: auto !important;
padding-left: 2rem !important;
padding-right: 2rem !important;
box-sizing: border-box;
}

@media (max-width: 768px) {
body.single .content-area,
body.blog .content-area,
body.archive .content-area,
body.search .content-area,
body.error404 .content-area {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
}

body.single .content-area.has-sidebar,
body.blog .content-area.has-sidebar,
body.archive .content-area.has-sidebar,
body.search .content-area.has-sidebar {
display: grid !important;
grid-template-columns: minmax(0, 1fr) 300px !important;
gap: 3rem !important;
align-items: start;
}

@media (max-width: 900px) {
body.single .content-area.has-sidebar,
body.blog .content-area.has-sidebar,
body.archive .content-area.has-sidebar,
body.search .content-area.has-sidebar {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
}
}

body.single .primary-content,
body.single .primary-content > article,
body.single .entry-content,
body.single .entry-footer,
body.single .post-navigation,
body.single .comments-area,
body.blog .primary-content,
body.archive .primary-content {
max-width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
box-sizing: border-box;
}


/* Röllin Racing Shop custom integration tweaks */
.fse-product-details .fse-heading a { color: inherit; text-decoration: none; }
.fse-product-details .fse-heading a:hover { color: var(--td-color-primary); }
.fse-product-image-wrap { display: block; color: inherit; text-decoration: none; }
.fse-product-image-wrap:hover { color: inherit; }
.woocommerce .fse-products-grid { list-style: none; }

/* RRS custom adjustments */
.fse-about-logo-column {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fse-about-logo-image {
  max-width: 520px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .fse-about-logo-image { max-width: 360px; }
}

/* RRS v1.4 cleanup and WooCommerce alignment */
.rrs-site-header {
  position: relative;
  z-index: 50;
  background: #0B0C0E;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rrs-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.rrs-header-logo,
.fse-logo.rrs-header-logo {
  width: 220px !important;
  max-width: 220px !important;
  height: 58px !important;
  max-height: 58px !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: left center !important;
  filter: none !important;
  display: block !important;
}
.rrs-account-button { white-space: nowrap; }
.rrs-mobile-toggle { display: none !important; }
.rrs-mobile-menu-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9998;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.rrs-mobile-menu-backdrop.open { opacity: 1; visibility: visible; }
.rrs-mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: 300px; max-width: 86vw;
  background: #0B0C0E; color: #fff; z-index: 9999; transform: translateX(100%);
  transition: transform .25s ease; box-shadow: -10px 0 30px rgba(0,0,0,.35);
}
.rrs-mobile-menu.open { transform: translateX(0); }
.rrs-mobile-menu-header { display: flex; justify-content: flex-end; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.rrs-mobile-menu-close { background: none; border: 0; color: #fff; font-size: 32px; line-height: 1; cursor: pointer; }
.rrs-mobile-nav-menu { list-style: none; margin: 0; padding: 10px 0; }
.rrs-mobile-nav-menu a { display: block; padding: 13px 24px; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 1023px) {
  .fse-main-nav { display: none !important; }
  .rrs-mobile-toggle { display: inline-flex !important; }
  .rrs-account-button { display: none !important; }
  .rrs-header-logo,
  .fse-logo.rrs-header-logo { width: 180px !important; max-width: 180px !important; height: 48px !important; }
}
@media (max-width: 520px) {
  .rrs-header-logo,
  .fse-logo.rrs-header-logo { width: 150px !important; max-width: 150px !important; height: 42px !important; }
}

/* Keep WooCommerce category and product images aligned */
.woocommerce ul.products,
ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px !important;
  align-items: stretch;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after { display: none !important; }
.woocommerce ul.products li.product,
ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.woocommerce ul.products li.product a img,
ul.products li.product a img {
  width: 100% !important;
  height: 240px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff !important;
  padding: 18px !important;
  margin: 0 0 14px !important;
}
.woocommerce ul.products li.product.product-category a img,
ul.products li.product.product-category a img {
  height: 190px !important;
  padding: 22px !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3,
ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h2,
ul.products li.product h3 {
  min-height: 48px;
}
.single-product div.product div.images img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #fff;
}
.rrs-woocommerce-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
}


/* RRS v1.5 header/search and WooCommerce polish */
html,
body,
#page,
.theme-designer-homepage {
  overflow-x: hidden !important;
}
.rrs-site-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
  padding: 17px 52px !important;
  width: 100% !important;
}
.rrs-site-header .fse-header-left {
  flex: 0 0 auto !important;
}
.rrs-site-header .fse-header-right {
  flex: 1 1 auto !important;
  justify-content: flex-end !important;
  margin-left: auto !important;
  gap: 20px !important;
  min-width: 0 !important;
}
.rrs-site-header .fse-main-nav {
  margin-left: auto !important;
}
.rrs-header-search {
  display: inline-flex;
  align-items: center;
  height: 42px;
  min-width: 190px;
  max-width: 260px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.035);
  overflow: hidden;
}
.rrs-header-search-field {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 12px;
  outline: none;
  font-size: .82rem;
}
.rrs-header-search-field::placeholder { color: rgba(255,255,255,.55); }
.rrs-header-search-button {
  width: 44px;
  height: 100%;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.rrs-header-search-button:hover { color: var(--td-color-primary); }
.rrs-mobile-search {
  display: flex;
  align-items: center;
  margin: 18px 20px 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.rrs-mobile-search-field {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 12px;
  outline: none;
}
.rrs-mobile-search-field::placeholder { color: rgba(255,255,255,.55); }
.rrs-mobile-search-button {
  width: 46px;
  height: 44px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: #fff;
}
.woocommerce mark,
.woocommerce mark.count,
mark.count,
mark {
  background: transparent !important;
  color: inherit !important;
  padding: 0 !important;
}
.fse-service-focus,
.fse-cta-section,
.fse-service-focus .fse-container,
.fse-cta-section .fse-container {
  overflow: hidden !important;
}
@media (max-width: 1180px) {
  .rrs-header-search { min-width: 44px; width: 44px; }
  .rrs-header-search-field { width: 0; padding: 0; }
  .rrs-header-search:focus-within { width: 220px; }
  .rrs-header-search:focus-within .rrs-header-search-field { width: 100%; padding: 0 12px; }
}
@media (max-width: 1023px) {
  .rrs-site-header { padding: 14px 20px !important; }
  .rrs-header-search { display: none !important; }
}
@media (max-width: 640px) {
  .rrs-site-header { gap: 16px !important; }
}

/* RRS v1.5 cart icon in header */
.rrs-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.035);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .02em;
  white-space: nowrap;
}
.rrs-cart-link:hover {
  color: var(--td-color-primary);
  border-color: rgba(215,40,47,.55);
}
.rrs-cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.rrs-cart-total .woocommerce-Price-amount {
  color: inherit;
}
.rrs-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--td-color-primary);
  color: #fff;
  font-size: .7rem;
  line-height: 1;
  border: 2px solid #0b0c0e;
}
.rrs-mobile-cart-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 20px 8px;
  padding: 12px 14px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  font-weight: 800;
}
.rrs-mobile-cart-count {
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--td-color-primary);
  color: #fff;
  font-size: .75rem;
}
@media (max-width: 1280px) {
  .rrs-cart-total { display: none; }
  .rrs-cart-link { min-width: 44px; justify-content: center; padding: 0 10px; }
}
@media (max-width: 1023px) {
  .rrs-cart-link { display: none !important; }
}


/* RRS v1.6 final webshop polish */
/* Header: no duplicate account button, compact menu/tools layout */
.rrs-site-header .rrs-account-button { display: none !important; }
.rrs-site-header .fse-header-right { gap: 18px !important; }
.rrs-site-header .fse-main-nav { flex: 0 1 auto !important; }
.rrs-site-header .fse-main-nav a,
.rrs-site-header .fse-nav-menu a { white-space: nowrap; }

/* Cart: show amount and icon together */
.rrs-cart-link {
  min-width: 108px;
  justify-content: center;
  gap: 10px;
}
.rrs-cart-total { display: inline-flex; align-items: center; }
.rrs-cart-icon { order: 2; font-size: 1.05rem; }
.rrs-cart-total { order: 1; }
.rrs-cart-count { order: 3; }
@media (max-width: 1280px) {
  .rrs-cart-total { display: inline-flex !important; }
  .rrs-cart-link { min-width: 94px; padding: 0 11px; }
}
@media (max-width: 1120px) {
  .rrs-cart-total { display: none !important; }
  .rrs-cart-link { min-width: 44px; }
}

/* Hide any old generated revision tagline if cached or injected */
.fse-hero-tagline { display: none !important; }

/* Markenspezifisch / Woo category cards */
.woocommerce ul.products li.product.product-category,
ul.products li.product.product-category {
  background: #fff !important;
  border: 1px solid rgba(11,12,14,.10) !important;
  border-radius: 0 !important;
  box-shadow: 0 12px 28px rgba(11,12,14,.055) !important;
  padding: 24px 18px 20px !important;
  min-height: 270px !important;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.woocommerce ul.products li.product.product-category:hover,
ul.products li.product.product-category:hover {
  transform: translateY(-3px);
  border-color: rgba(215,40,47,.36) !important;
  box-shadow: 0 18px 38px rgba(11,12,14,.10) !important;
}
.woocommerce ul.products li.product.product-category a,
ul.products li.product.product-category a {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: center;
  text-decoration: none !important;
}
.woocommerce ul.products li.product.product-category a img,
ul.products li.product.product-category a img {
  height: 165px !important;
  width: 100% !important;
  object-fit: contain !important;
  padding: 12px !important;
  margin: 0 0 18px !important;
  background: #fff !important;
}
.woocommerce ul.products li.product.product-category .woocommerce-loop-category__title,
ul.products li.product.product-category .woocommerce-loop-category__title {
  min-height: auto !important;
  margin: auto 0 0 !important;
  padding: 0 !important;
  color: var(--td-color-primary, #D7282F) !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}
.woocommerce ul.products li.product.product-category .woocommerce-loop-category__title mark.count,
ul.products li.product.product-category .woocommerce-loop-category__title mark.count {
  color: inherit !important;
  font-weight: 900 !important;
}
.tax-product_cat .rrs-woocommerce-content,
.post-type-archive-product .rrs-woocommerce-content {
  padding-top: 56px !important;
  padding-bottom: 72px !important;
}
.tax-product_cat .woocommerce-products-header__title,
.post-type-archive-product .woocommerce-products-header__title,
.woocommerce .page-title {
  margin-bottom: 36px !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  color: #0b0c0e !important;
}

/* WooCommerce account page */
.woocommerce-account .rrs-woocommerce-content,
.woocommerce-account .site-main,
.woocommerce-account main.site-main {
  background: #f6f6f6;
}
.woocommerce-account .woocommerce {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 24px 72px;
}
.woocommerce-account .woocommerce h1,
.woocommerce-account .woocommerce h2,
.woocommerce-account .entry-title {
  color: #0b0c0e;
  font-weight: 900;
  letter-spacing: -.02em;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 280px;
  margin-right: 34px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #0b0c0e;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 42px rgba(11,12,14,.16);
}
.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.woocommerce-account .woocommerce-MyAccount-navigation li:last-child { border-bottom: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 15px 18px;
  color: rgba(255,255,255,.78);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .82rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  color: #fff;
  background: var(--td-color-primary, #D7282F);
}
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account form.login,
.woocommerce-account form.register,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  background: #fff;
  border: 1px solid rgba(11,12,14,.10);
  box-shadow: 0 18px 42px rgba(11,12,14,.08);
  padding: 30px !important;
}
.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  overflow: hidden;
  min-height: 260px;
}
.woocommerce-account .woocommerce-MyAccount-content p:first-child {
  font-size: 1.05rem;
  line-height: 1.7;
}
.woocommerce-account .woocommerce-MyAccount-content a { font-weight: 800; }
.woocommerce-account .woocommerce form .form-row input.input-text,
.woocommerce-account .woocommerce form .form-row textarea,
.woocommerce-account .woocommerce form .form-row select {
  min-height: 48px;
  border: 1px solid rgba(11,12,14,.18);
  background: #fff;
  padding: 10px 12px;
}
.woocommerce-account .woocommerce button.button,
.woocommerce-account .woocommerce a.button,
.woocommerce-account .woocommerce input.button {
  background: var(--td-color-primary, #D7282F) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 14px 22px !important;
  text-transform: uppercase;
  font-weight: 900 !important;
  letter-spacing: .04em;
}
.woocommerce-account .woocommerce button.button:hover,
.woocommerce-account .woocommerce a.button:hover,
.woocommerce-account .woocommerce input.button:hover {
  filter: brightness(.93);
}
.woocommerce-account .woocommerce-Addresses .woocommerce-Address,
.woocommerce-account .woocommerce-orders-table,
.woocommerce-account .woocommerce-table {
  background: #fff;
  border: 1px solid rgba(11,12,14,.10);
}
@media (max-width: 768px) {
  .woocommerce-account .woocommerce { padding: 34px 18px 54px; }
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100% !important;
    float: none !important;
    margin-right: 0 !important;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation { margin-bottom: 24px; }
}


/* RRS v1.7 page/shop refinements */
/* Startseite: unteren generischen CTA-Block entfernen */
.fse-cta-section { display: none !important; }

/* Header Logo transparent PNG */
.rrs-header-logo {
  background: transparent !important;
  object-fit: contain !important;
}

/* Normale Inhaltsseiten wie Kontakt und Einbau & Anpassung */
body.page:not(.home):not(.woocommerce-page) .site-main {
  background: #f5f5f5;
  padding: 52px 20px 72px;
}
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content,
body.page:not(.home):not(.woocommerce-page) .entry-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px clamp(22px, 4vw, 56px);
  background: #fff;
  border: 1px solid rgba(11,12,14,.10);
  box-shadow: 0 18px 44px rgba(11,12,14,.07);
  color: #161616;
  line-height: 1.75;
}
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content > *:first-child,
body.page:not(.home):not(.woocommerce-page) .entry-content > *:first-child { margin-top: 0; }
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content h1,
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content h2,
body.page:not(.home):not(.woocommerce-page) .entry-content h1,
body.page:not(.home):not(.woocommerce-page) .entry-content h2 {
  color: #0b0c0e;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 22px;
}
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content h1,
body.page:not(.home):not(.woocommerce-page) .entry-content h1 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  padding-bottom: 18px;
  border-bottom: 3px solid var(--td-color-primary, #D7282F);
}
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content h2,
body.page:not(.home):not(.woocommerce-page) .entry-content h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin-top: 32px;
}
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content p,
body.page:not(.home):not(.woocommerce-page) .entry-content p { margin-bottom: 18px; }
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content ul,
body.page:not(.home):not(.woocommerce-page) .entry-content ul { padding-left: 1.2rem; }
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content li,
body.page:not(.home):not(.woocommerce-page) .entry-content li { margin-bottom: 9px; }
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content a,
body.page:not(.home):not(.woocommerce-page) .entry-content a { font-weight: 800; }

/* Kontaktformular und allgemeine Formulare auf Inhaltsseiten */
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content form,
body.page:not(.home):not(.woocommerce-page) .entry-content form {
  margin-top: 28px;
  padding: 26px;
  background: #f7f7f7;
  border: 1px solid rgba(11,12,14,.10);
}
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content label,
body.page:not(.home):not(.woocommerce-page) .entry-content label {
  display: block;
  font-weight: 800;
  color: #0b0c0e;
  margin-bottom: 8px;
}
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content input[type="text"],
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content input[type="email"],
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content input[type="tel"],
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content textarea,
body.page:not(.home):not(.woocommerce-page) .entry-content input[type="text"],
body.page:not(.home):not(.woocommerce-page) .entry-content input[type="email"],
body.page:not(.home):not(.woocommerce-page) .entry-content input[type="tel"],
body.page:not(.home):not(.woocommerce-page) .entry-content textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(11,12,14,.18);
  background: #fff;
  color: #0b0c0e;
  outline: none;
}
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content textarea,
body.page:not(.home):not(.woocommerce-page) .entry-content textarea { min-height: 150px; resize: vertical; }
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content input:focus,
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content textarea:focus,
body.page:not(.home):not(.woocommerce-page) .entry-content input:focus,
body.page:not(.home):not(.woocommerce-page) .entry-content textarea:focus {
  border-color: var(--td-color-primary, #D7282F);
  box-shadow: 0 0 0 3px rgba(215,40,47,.10);
}
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content input[type="submit"],
body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content button,
body.page:not(.home):not(.woocommerce-page) .entry-content input[type="submit"],
body.page:not(.home):not(.woocommerce-page) .entry-content button {
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  background: var(--td-color-primary, #D7282F);
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .04em;
  cursor: pointer;
}

/* WooCommerce Warenkorb: Empfehlungen/Cross-Sells sauber als Produktkarten */
.woocommerce-cart .rrs-woocommerce-content,
.woocommerce-cart .site-main,
.woocommerce-cart main.site-main { background: #fff; }
.woocommerce-cart .cross-sells,
.woocommerce-cart .cart-collaterals,
.woocommerce-cart .woocommerce {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.woocommerce-cart .cross-sells > h2,
.woocommerce-cart .woocommerce > h2 {
  text-align: center;
  color: #0b0c0e;
  font-weight: 900;
  margin: 38px 0 30px;
}
.woocommerce ul.products li.product:not(.product-category),
ul.products li.product:not(.product-category) {
  border: 1px solid rgba(11,12,14,.10) !important;
  box-shadow: 0 12px 30px rgba(11,12,14,.055) !important;
  padding: 18px 18px 22px !important;
  align-items: stretch;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.woocommerce ul.products li.product:not(.product-category):hover,
ul.products li.product:not(.product-category):hover {
  transform: translateY(-3px);
  border-color: rgba(215,40,47,.32) !important;
  box-shadow: 0 18px 38px rgba(11,12,14,.10) !important;
}
.woocommerce ul.products li.product:not(.product-category) a img,
ul.products li.product:not(.product-category) a img {
  height: 250px !important;
  padding: 10px !important;
  object-fit: contain !important;
  background: #f7f7f7 !important;
}
.woocommerce ul.products li.product:not(.product-category) .woocommerce-loop-product__title,
ul.products li.product:not(.product-category) .woocommerce-loop-product__title {
  color: var(--td-color-primary, #D7282F) !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  min-height: 46px !important;
  margin-bottom: 10px !important;
}
.woocommerce ul.products li.product:not(.product-category) .price,
ul.products li.product:not(.product-category) .price {
  color: #0b0c0e !important;
  font-weight: 800 !important;
  margin: 0 0 16px !important;
}
.woocommerce ul.products li.product:not(.product-category) .button,
ul.products li.product:not(.product-category) .button {
  margin-top: auto !important;
  align-self: center;
  background: #20252b !important;
  color: #fff !important;
  border-radius: 0 !important;
  padding: 12px 18px !important;
  font-weight: 900 !important;
  text-transform: none;
}
.woocommerce ul.products li.product:not(.product-category) .button:hover,
ul.products li.product:not(.product-category) .button:hover { background: var(--td-color-primary, #D7282F) !important; }

@media (max-width: 768px) {
  body.page:not(.home):not(.woocommerce-page) .site-main { padding: 28px 12px 48px; }
  body.page:not(.home):not(.woocommerce-page) .pressmegpt-page-content,
  body.page:not(.home):not(.woocommerce-page) .entry-content { padding: 28px 18px; }
}

/* RRS v2.0 - mobile-only hero readability refinements */
@media (max-width: 768px) {
  .fse-hero {
    min-height: 92vh;
    padding-top: 96px;
    text-align: center;
  }

  .fse-hero::before {
    background-position: 58% center;
    filter: brightness(.88) contrast(1.03);
  }

  .fse-hero::after {
    background:
      linear-gradient(to bottom, rgba(11,12,14,.34) 0%, rgba(11,12,14,.10) 26%, rgba(11,12,14,.40) 58%, rgba(11,12,14,.74) 100%),
      linear-gradient(to right, rgba(11,12,14,.48) 0%, rgba(11,12,14,.14) 50%, rgba(11,12,14,.38) 100%);
  }

  .fse-hero-content {
    padding: 0 20px;
    margin-top: 16px;
  }

  h1.fse-heading.fse-hero-headline {
    font-size: clamp(2.05rem, 8.6vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    text-shadow: 0 4px 18px rgba(0,0,0,.82), 0 1px 2px rgba(0,0,0,.92);
    margin-bottom: 18px;
    white-space: nowrap;
  }

  .fse-hero-content .fse-hero-subheadline {
    max-width: 94%;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,.9);
    font-size: clamp(1.0rem, 4vw, 1.15rem);
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 3px 14px rgba(0,0,0,.82), 0 1px 2px rgba(0,0,0,.95);
  }

  .fse-hero-buttons {
    margin-top: 30px;
    gap: 14px;
  }

  .fse-hero-buttons .fse-button {
    max-width: 320px;
    min-height: 58px;
    padding: 16px 22px;
    font-size: .94rem;
    letter-spacing: .10em;
    box-shadow: 0 10px 24px rgba(0,0,0,.24);
  }

  .fse-hero-buttons .fse-button-secondary {
    background: rgba(11,12,14,.30);
    border-color: rgba(255,255,255,.34);
  }

  .fse-hero-features {
    margin-top: 38px;
    gap: 14px 24px;
  }

  .fse-hero-features .fse-paragraph {
    color: rgba(255,255,255,.74);
    font-size: .76rem;
    letter-spacing: .12em;
    text-shadow: 0 2px 8px rgba(0,0,0,.78);
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .fse-hero-content {
    padding: 0 16px;
  }

  h1.fse-heading.fse-hero-headline {
    font-size: clamp(1.95rem, 7.9vw, 2.28rem);
    letter-spacing: -0.06em;
  }

  .fse-hero-content .fse-hero-subheadline {
    font-size: 1rem;
  }

  .fse-hero-features {
    flex-direction: column;
    gap: 12px;
  }
}

/* RRS v2.1: Hero CTA anchor scrolling */
html { scroll-behavior: smooth; }
#rrs-kategorien,
#rrs-montagepartner { scroll-margin-top: 95px; }
@media (max-width: 768px) {
  #rrs-kategorien,
  #rrs-montagepartner { scroll-margin-top: 75px; }
}
