/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.sticky {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.site-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.12em;
    color: #ffffff;
    text-transform: uppercase;
}

.site-logo a {
    color: #ffffff;
}

.site-logo a:hover {
    color: #e8001d;
}

/* === NAVIGATION === */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav .menu {
    display: flex;
    gap: 32px;
}

.main-nav .menu li a {
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #c0c0c0;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav .menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8001d;
    transition: width 0.3s ease;
}

.main-nav .menu li a:hover {
    color: #ffffff;
}

.main-nav .menu li a:hover::after {
    width: 100%;
}

.main-nav .menu li.current-menu-item a {
    color: #e8001d;
}

/* === CART ICON === */
.header-cart {
    position: relative;
    display: flex;
    align-items: center;
}

.header-cart a {
    color: #c0c0c0;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.header-cart a:hover {
    color: #e8001d;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e8001d;
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0 4px;
    line-height: 1;
}

.cart-count.animate {
    animation: cartBounce 0.4s ease;
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4); }
}

/* === HEADER ACTIONS (cart + hamburger) === */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* === HAMBURGER === */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #c0c0c0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === MOBILE MENU === */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-bottom: 1px solid #2a2a2a;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.mobile-menu.open {
    display: block;
    transform: translateY(0);
}

.mobile-menu .menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu .menu li a {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #c0c0c0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    transition: color 0.3s ease;
}

.mobile-menu .menu li a:hover {
    color: #e8001d;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 40%, #0a0a0a 100%);
    overflow: hidden;
    padding: 120px 0 100px;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: #0a0a0a;
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 0);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.hero-title .highlight {
    color: #e8001d;
    display: block;
}

.hero-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1rem, 2vw, 1.375rem);
    color: #c0c0c0;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 0, 29, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* === TRUST BAR === */
.trust-bar {
    background: #1a1a1a;
    padding: 32px 0;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.trust-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.trust-label {
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* === FEATURED CATEGORIES === */
.categories-section {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.category-card {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #e8001d;
    box-shadow: 0 16px 40px rgba(232, 0, 29, 0.15);
}

.category-card[style*="--cat-bg"] {
    background: linear-gradient(135deg, #1a1a1a, rgba(10,10,10,0.9)), var(--cat-bg) center/cover;
}

.category-card[style*="--cat-bg"]:hover {
    background: linear-gradient(135deg, #1a1a1a, rgba(10,10,10,0.7)), var(--cat-bg) center/cover;
}

.category-card-inner {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.category-count {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 0.8125rem;
    color: #888;
    margin-bottom: 0.75rem;
    letter-spacing: 0.04em;
}

.category-link {
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    color: #e8001d;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    transition: letter-spacing 0.3s;
}

.category-card:hover .category-link {
    letter-spacing: 0.12em;
}

.category-card-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 0, 29, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* === BEST SELLERS === */
.best-sellers-section {
    padding: 100px 0;
    background: #0a0a0a;
}

/* === WHY CHOOSE US === */
.why-section {
    padding: 100px 0;
    background: #1a1a1a;
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: #0a0a0a;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px 0;
    position: relative;
    z-index: 2;
}

.why-card {
    text-align: center;
    padding: 40px 24px;
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.why-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.why-text {
    font-size: 0.9375rem;
    color: #c0c0c0;
    line-height: 1.7;
}

/* === TESTIMONIALS === */
.testimonials-section {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.testimonial-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 36px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #e8001d;
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 0.9375rem;
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-quote::before {
    content: '\201C';
    font-size: 3rem;
    color: #e8001d;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    text-transform: uppercase;
}

.testimonial-sport {
    font-size: 0.8125rem;
    color: #e8001d;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ==========================================
   FAQ PAGE
   ========================================== */
.faq-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: #333;
}

.faq-item.open {
    border-color: #e8001d;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.faq-question:hover {
    color: #e8001d;
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    color: #888;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: #e8001d;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #c0c0c0;
    margin: 0;
}

/* FAQ CTA */
.faq-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0000 0%, #e8001d 50%, #0a0a0a 100%);
    text-align: center;
}

.faq-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.faq-cta-text {
    font-family: 'Barlow', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.faq-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta-buttons .btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.faq-cta-buttons .btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* === NEWSLETTER === */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0000 0%, #e8001d 50%, #0a0a0a 100%);
    text-align: center;
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #0a0a0a;
    clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
}

.newsletter-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 1rem;
}

.newsletter-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
    border-color: #ffffff;
}

.newsletter-form .btn {
    flex-shrink: 0;
}

/* CF7 Newsletter */
.cf7-newsletter {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cf7-newsletter p {
    margin: 0;
}

.cf7-newsletter .wpcf7-form-control-wrap {
    display: block;
}

.cf7-newsletter input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.cf7-newsletter input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cf7-newsletter input[type="email"]:focus {
    border-color: #ffffff;
}

.cf7-newsletter input[type="submit"] {
    background: #e8001d;
    color: #ffffff;
    border: 2px solid #e8001d;
    padding: 14px 32px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 0;
}

.cf7-newsletter input[type="submit"]:hover {
    background: #c00015;
    border-color: #c00015;
}

.cf7-newsletter .wpcf7-response-output {
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 4px;
    padding: 12px 18px !important;
    margin: 16px auto 0 !important;
    max-width: 500px;
    text-align: center;
}

.cf7-newsletter .wpcf7-mail-sent-ok {
    background: rgba(0, 200, 83, 0.2) !important;
    border-color: #00c853 !important;
}

.cf7-newsletter .wpcf7-spinner {
    display: none !important;
}

.cf7-newsletter.is-loading input[type="submit"],
.cf7-newsletter.wpcf7-submitting input[type="submit"] {
    background: linear-gradient(90deg, #e8001d 25%, #ff4466 50%, #e8001d 75%);
    background-size: 200% 100%;
    color: transparent !important;
    pointer-events: none;
    animation: cf7-btn-loading 1s linear infinite;
}

/* === FOOTER === */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid #2a2a2a;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand-desc {
    font-size: 0.875rem;
    color: #888;
    line-height: 1.7;
    margin-top: 1rem;
}

.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.footer-links li a {
    font-size: 0.875rem;
    color: #888;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #e8001d;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #c0c0c0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e8001d;
    border-color: #e8001d;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 24px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom-text {
    font-size: 0.8125rem;
    color: #666;
}

/* === PAGE DEFAULT === */
.page-content {
    padding: 120px 0 60px;
}

.page-content .entry-header {
    margin-bottom: 2rem;
}

.page-content .entry-title {
    font-size: 3rem;
}

/* ==========================================
   SINGLE POST HERO
   ========================================== */
.single-post-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 160px 0 80px;
}

.single-post-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.single-post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, #0a0a0a 100%);
    z-index: 1;
}

.single-post-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.single-post-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.single-post-cats a {
    display: inline-block;
    padding: 6px 14px;
    background: #e8001d;
    color: #ffffff;
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.single-post-cats a:hover {
    background: #c00015;
}

.single-post-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin: 0 0 20px;
}

.single-post-hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.single-post-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.single-post-author-name {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
}

.single-post-date {
    font-family: 'Barlow', sans-serif;
    font-size: 0.8125rem;
    color: #888;
}

/* ==========================================
   SINGLE POST CONTENT
   ========================================== */
.single-post-section {
    padding: 0 0 100px;
    background: #0a0a0a;
}

.single-post-article {
    max-width: 760px;
    margin: 0 auto;
    margin-top: -40px;
    position: relative;
    z-index: 3;
    background: #0a0a0a;
    padding: 48px 0 0;
}

.entry-content {
    font-family: 'Barlow', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #c0c0c0;
}

.entry-content p {
    margin-bottom: 1.25rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 2.5rem 0 1rem;
}

.entry-content h2 { font-size: 2rem; }
.entry-content h3 { font-size: 1.5rem; }
.entry-content h4 { font-size: 1.25rem; }

.entry-content ul,
.entry-content ol {
    margin: 0 0 1.25rem 1.5rem;
    padding: 0;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content a {
    color: #e8001d;
}

.entry-content a:hover {
    text-decoration: underline;
}

.entry-content blockquote {
    border-left: 3px solid #e8001d;
    margin: 1.5rem 0;
    padding: 16px 28px;
    background: #1a1a1a;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: #ffffff;
}

.entry-content img,
.entry-content iframe {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.entry-content img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.entry-content .wp-block-image {
    margin: 1.5rem 0;
}

.entry-content .wp-block-image figcaption {
    font-size: 0.8125rem;
    color: #888;
    text-align: center;
    margin-top: 8px;
}

/* Entry footer */
.single-post-article .entry-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2a2a2a;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.875rem;
}

.post-tags .tags-label {
    font-weight: 600;
    color: #c0c0c0;
    margin-right: 4px;
}

.post-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    color: #888;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.post-tags a:hover {
    border-color: #e8001d;
    color: #e8001d;
}

/* Page links (multi-page posts) */
.page-links {
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    color: #c0c0c0;
    margin: 2rem 0;
    padding: 16px 20px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
}

.page-links a {
    color: #e8001d;
}

/* Author Box */
.single-post-author-box {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding: 28px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
}

.single-post-author-box-avatar {
    flex-shrink: 0;
}

.single-post-author-box-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.single-post-author-box-info {
    flex: 1;
}

.single-post-author-box-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.375rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 6px;
}

.single-post-author-box-name a {
    color: #ffffff;
    text-decoration: none;
}

.single-post-author-box-name a:hover {
    color: #e8001d;
}

.single-post-author-box-bio {
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #888;
    margin: 0;
}

/* Post Navigation */
.single-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.single-post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.single-post-nav-link:hover {
    border-color: #e8001d;
}

.single-post-nav-prev {
    align-items: flex-start;
}

.single-post-nav-next {
    align-items: flex-end;
    text-align: right;
}

.single-post-nav-arrow {
    font-size: 1.25rem;
    color: #e8001d;
    font-family: 'Barlow', sans-serif;
}

.single-post-nav-direction {
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
}

.single-post-nav-title {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.single-post-nav-link:hover .single-post-nav-title {
    color: #e8001d;
}

/* Related Posts */
.single-post-related {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #2a2a2a;
}

.single-post-related-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 24px;
}

/* === BLOG PAGE TEMPLATE === */
.blog-posts-section {
    padding: 80px 0 100px;
    background: #0a0a0a;
}

.blog-pagination {
    margin-top: 48px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    color: #c0c0c0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-pagination .page-numbers a:hover {
    border-color: #e8001d;
    color: #e8001d;
}

.blog-pagination .page-numbers.current {
    background: #e8001d;
    border-color: #e8001d;
    color: #ffffff;
}

.blog-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: #555;
}

.blog-no-results {
    text-align: center;
    padding: 60px 20px;
}

.blog-no-results h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.blog-no-results p {
    color: #888;
    font-size: 1rem;
}

/* === ARCHIVE / BLOG === */
.archive-content {
    padding: 120px 0 60px;
}

.archive-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.post-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover {
    border-color: #e8001d;
    transform: translateY(-4px);
}

.post-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.post-card-body {
    padding: 24px;
}

.post-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.post-card-title a {
    color: #ffffff;
}

.post-card-title a:hover {
    color: #e8001d;
}

.post-card-excerpt {
    font-size: 0.875rem;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.post-card-meta {
    font-size: 0.8125rem;
    color: #888;
}

/* ==========================================
   COMMENTS
   ========================================== */
.single-post-article #comments {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #2a2a2a;
}

.single-post-article .comments-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 24px;
}

.single-post-article .comment-list {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
}

.single-post-article .comment-list .comment {
    margin-bottom: 20px;
}

.single-post-article .comment-list .comment-body {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 24px;
}

.single-post-article .comment-list .comment-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.single-post-article .comment-list .comment-author img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.single-post-article .comment-list .comment-author .fn {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
    font-style: normal;
}

.single-post-article .comment-list .comment-author .says {
    display: none;
}

.single-post-article .comment-list .comment-metadata {
    font-family: 'Barlow', sans-serif;
    font-size: 0.8125rem;
    color: #888;
}

.single-post-article .comment-list .comment-metadata a {
    color: #888;
    text-decoration: none;
}

.single-post-article .comment-list .comment-metadata a:hover {
    color: #e8001d;
}

.single-post-article .comment-list .comment-content {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #c0c0c0;
}

.single-post-article .comment-list .comment-content p {
    margin-bottom: 0.75rem;
}

.single-post-article .comment-list .reply {
    margin-top: 12px;
}

.single-post-article .comment-list .reply a {
    font-family: 'Barlow', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #e8001d;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.single-post-article .comment-list .reply a:hover {
    color: #c00015;
}

.single-post-article .comment-list .children {
    list-style: none;
    margin: 20px 0 0 40px;
    padding: 0;
}

/* Comment Form */
#respond {
    margin-top: 40px;
}

#reply-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 8px;
}

#cancel-comment-reply-link {
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-left: 12px;
}

#cancel-comment-reply-link:hover {
    color: #e8001d;
}

.comment-notes {
    font-family: 'Barlow', sans-serif;
    font-size: 0.8125rem;
    color: #888;
    margin-bottom: 24px;
}

.comment-notes .required {
    color: #e8001d;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-form p {
    margin: 0;
}

.comment-form label {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.comment-form label .required {
    color: #e8001d;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: #ffffff;
    padding: 14px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #e8001d;
}

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

.comment-form .comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #e8001d;
    cursor: pointer;
    flex-shrink: 0;
}

.comment-form .comment-form-cookies-consent label {
    margin: 0;
    font-size: 0.8125rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    color: #888;
    cursor: pointer;
}

.comment-form .form-submit {
    margin: 0;
}

.comment-form .submit {
    background: #e8001d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 16px 36px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s ease;
    width: auto;
}

.comment-form .submit:hover {
    background: #c00015;
}

/* Pingbacks / Trackbacks */
.single-post-article .comment-list .pingback {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 16px 24px;
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    color: #888;
}

.single-post-article .comment-list .pingback a {
    color: #e8001d;
}

.single-post-article .comment-list .pingback .edit-link {
    margin-left: 8px;
}

/* === 404 PAGE === */
.error404-content {
    padding: 160px 0 80px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error404-title {
    font-size: 8rem;
    color: #e8001d;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error404-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.error404-text {
    font-size: 1rem;
    color: #c0c0c0;
    margin-bottom: 2rem;
}

/* ==========================================
   PAGE HERO (About & Contact)
   ========================================== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 40%, #0a0a0a 100%);
    overflow: hidden;
    padding: 140px 0 80px;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #0a0a0a;
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 0);
    z-index: 2;
}

.page-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 0, 29, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.page-hero-title .highlight {
    color: #e8001d;
    display: block;
}

.page-hero-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: #c0c0c0;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   ADD TO CART MODAL
   ========================================== */
.cart-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-modal-overlay.open {
    display: flex;
    opacity: 1;
}

.cart-modal {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 40px 36px 32px;
    max-width: 400px;
    width: 90%;
    position: relative;
    text-align: center;
}

.cart-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: color 0.2s ease;
    line-height: 0;
}

.cart-modal-close:hover {
    color: #e8001d;
}

.cart-modal-icon {
    margin-bottom: 16px;
}

.cart-modal-icon svg {
    animation: cartModalBounce 0.5s ease;
}

@keyframes cartModalBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.15); }
    70% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.cart-modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 20px;
}

.cart-modal-product {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #0a0a0a;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.cart-modal-image {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.cart-modal-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-modal-name {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.cart-modal-price {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #e8001d;
}

.cart-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-modal-actions .btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   LEGAL PAGES (Privacy, Terms)
   ========================================== */
.legal-section {
    padding: 80px 0 100px;
    background: #0a0a0a;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 60px;
}

.legal-container .legal-effective-date {
    color: #888;
    font-size: 0.875rem;
    font-family: 'Barlow', sans-serif;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2a2a;
}

.legal-container h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 36px 0 16px;
    padding-top: 16px;
    border-top: 1px solid #2a2a2a;
}

.legal-container h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-container h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #e8001d;
    margin: 24px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.legal-container p {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #c0c0c0;
    margin-bottom: 14px;
}

.legal-container ul {
    margin: 10px 0 20px;
    padding-left: 24px;
    list-style: none;
}

.legal-container ul li {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #c0c0c0;
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}

.legal-container ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #e8001d;
    border-radius: 50%;
}

/* ==========================================
   ABOUT - STORY SECTION
   ========================================== */
.story-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9375rem;
    color: #e8001d;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}

.story-paragraph {
    font-size: 1rem;
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.story-cta {
    margin-top: 2rem;
}

.story-visual {
    position: relative;
}

.story-image-placeholder {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #1a1a1a, #2a0000);
    border: 1px solid #2a2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.story-image-icon {
    font-size: 4rem;
}

.story-image-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.story-accent-block {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid #e8001d;
    z-index: 1;
}

/* ==========================================
   ABOUT - STATS
   ========================================== */
.stats-section {
    padding: 80px 0;
    background: #1a1a1a;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #e8001d;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ==========================================
   ABOUT - VALUES
   ========================================== */
.about-values-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-value-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.about-value-card:hover {
    border-color: #e8001d;
    transform: translateY(-4px);
}

.about-value-icon {
    margin-bottom: 1.25rem;
}

.about-value-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.about-value-text {
    font-size: 0.9375rem;
    color: #c0c0c0;
    line-height: 1.7;
}

/* ==========================================
   ABOUT - TEAM
   ========================================== */
.team-section {
    padding: 100px 0;
    background: #1a1a1a;
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #0a0a0a;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 20px;
}

.team-card {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: #e8001d;
    transform: translateY(-4px);
}

.team-avatar {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}

.team-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: #ffffff;
    letter-spacing: 0.04em;
}

.team-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.375rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.team-role {
    display: block;
    font-size: 0.8125rem;
    color: #e8001d;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.875rem;
    color: #c0c0c0;
    line-height: 1.7;
}

/* ==========================================
   ABOUT - CTA
   ========================================== */
.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0000 0%, #e8001d 50%, #0a0a0a 100%);
    text-align: center;
}

.about-cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.about-cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.about-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   CONTACT - MAIN
   ========================================== */
.contact-main-section {
    padding: 80px 0 100px;
    background: #0a0a0a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

/* Contact Info */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 24px;
    transition: border-color 0.2s ease;
}

.contact-info-card:hover {
    border-color: #e8001d;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 0, 29, 0.1);
    border-radius: 8px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.125rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 4px;
}

.contact-info-text {
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* Contact Social Card */
.contact-social-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 24px;
}

.contact-social-card .contact-info-title {
    margin-bottom: 12px;
}

.contact-social-card .social-links {
    display: flex;
    gap: 12px;
}

.contact-social-card .social-links .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #888;
    transition: all 0.2s ease;
}

.contact-social-card .social-links .social-link:hover {
    color: #e8001d;
    border-color: #e8001d;
}

/* Map Placeholder */
.contact-map-placeholder {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.contact-map-placeholder:hover {
    border-color: #e8001d;
}

.contact-map-placeholder span {
    font-family: 'Barlow', sans-serif;
    font-size: 0.8125rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Contact Form Column */
.contact-form-col {
    display: flex;
    flex-direction: column;
}

.contact-form-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 36px;
}

.contact-form-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 8px;
}

.contact-form-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    color: #888;
    margin: 0 0 28px;
    line-height: 1.6;
}

/* CF7 Styles */
.contact-form-card .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-card .wpcf7-form p {
    margin: 0;
}

.contact-form-card .wpcf7-form label {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.contact-form-card .wpcf7-form input[type="text"],
.contact-form-card .wpcf7-form input[type="email"],
.contact-form-card .wpcf7-form input[type="tel"],
.contact-form-card .wpcf7-form select,
.contact-form-card .wpcf7-form textarea {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: #ffffff;
    padding: 14px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.contact-form-card .wpcf7-form input:focus,
.contact-form-card .wpcf7-form select:focus,
.contact-form-card .wpcf7-form textarea:focus {
    border-color: #e8001d;
}

.contact-form-card .wpcf7-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form-card .wpcf7-form input[type="submit"] {
    background: #e8001d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 16px 36px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
    position: relative;
}

.contact-form-card .wpcf7-form input[type="submit"]:hover {
    background: #c00015;
}

.contact-form-card .wpcf7-form input[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* CF7 validation */
.contact-form-card .wpcf7-not-valid-tip {
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    color: #e8001d;
    margin-top: 4px;
}

.contact-form-card .wpcf7-response-output {
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    color: #c0c0c0;
    background: rgba(232, 0, 29, 0.08);
    border: 1px solid #e8001d !important;
    border-radius: 6px;
    padding: 14px 18px !important;
    margin: 0 !important;
}

.contact-form-card .wpcf7-mail-sent-ok {
    background: rgba(0, 200, 83, 0.08) !important;
    border-color: #00c853 !important;
}

.contact-form-card .wpcf7-spinner {
    display: none !important;
}

@keyframes cf7-btn-loading {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.contact-form-card .wpcf7-form.is-loading .wpcf7-submit,
.contact-form-card .wpcf7-form.wpcf7-submitting .wpcf7-submit {
    background: linear-gradient(90deg, #e8001d 25%, #ff4466 50%, #e8001d 75%);
    background-size: 200% 100%;
    color: transparent !important;
    pointer-events: none;
    animation: cf7-btn-loading 1s linear infinite;
}

/* Error message styling */
.contact-form-card .wpcf7-form.failed .wpcf7-response-output,
.contact-form-card .wpcf7-form[data-status="failed"] .wpcf7-response-output {
    border-color: #e8001d !important;
}

@media (max-width: 768px) {
    .contact-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .faq-question {
        padding: 16px 20px;
        font-size: 0.9375rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 20px 16px;
    }

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

    .single-post-navigation {
        grid-template-columns: 1fr;
    }

    .single-post-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .single-post-article .comment-list .children {
        margin-left: 20px;
    }

    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"],
    .comment-form textarea {
        padding: 12px 14px;
    }

    .comment-form .submit {
        width: 100%;
        text-align: center;
    }

    .legal-container {
        padding: 24px 16px;
    }

    .legal-container h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .trust-bar-inner {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .story-accent-block {
        display: none;
    }

    .contact-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.875rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 16px 14px;
    }

    .single-post-hero {
        min-height: 40vh;
        padding: 140px 0 40px;
    }

    .single-post-article {
        padding: 24px 0 0;
    }

    .single-post-author-box {
        padding: 20px;
    }

    .legal-container {
        padding: 24px 16px;
    }

    .legal-container h2 {
        font-size: 1.25rem;
    }
}

/* ==========================================
   RESPONSIVE — 1024px
   ========================================== */

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

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

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

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

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

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

    .best-sellers-section {
        padding: 80px 0;
    }

    .categories-section {
        padding: 80px 0;
    }

    .why-section {
        padding: 80px 0;
    }

    .testimonials-section {
        padding: 80px 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

/* ==========================================
   RESPONSIVE — 900px (Hamburger)
   ========================================== */

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }

    .hero-section {
        min-height: 80vh;
        padding: 100px 0 80px;
    }

    .categories-grid {
        gap: 16px;
    }

    .category-card {
        min-height: 260px;
    }

    .category-name {
        font-size: 2rem;
    }
}

/* ==========================================
   RESPONSIVE — 768px
   ========================================== */

@media (max-width: 768px) {
    .contact-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .faq-question {
        padding: 16px 20px;
        font-size: 0.9375rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 20px 16px;
    }

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

    .single-post-navigation {
        grid-template-columns: 1fr;
    }

    .single-post-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .single-post-article .comment-list .children {
        margin-left: 20px;
    }

    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"],
    .comment-form textarea {
        padding: 12px 14px;
    }

    .comment-form .submit {
        width: 100%;
        text-align: center;
    }

    .legal-container {
        padding: 24px 16px;
    }

    .legal-container h2 {
        font-size: 1.25rem;
    }

    .hero-section {
        min-height: 70vh;
        padding: 90px 0 60px;
    }

    .hero-title {
        font-size: clamp(2.25rem, 9vw, 3.75rem);
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .category-card {
        min-height: 240px;
    }

    .category-name {
        font-size: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 400px;
    }

    .newsletter-form input[type="email"] {
        min-width: auto;
        width: 100%;
    }

    .cf7-newsletter {
        flex-direction: column;
        max-width: 400px;
    }

    .cf7-newsletter input[type="email"] {
        min-width: auto;
        width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-section {
        padding: 60px 0;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

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

    .team-section {
        padding: 60px 0;
    }

    .about-values-section {
        padding: 60px 0;
    }

    .best-sellers-section {
        padding: 60px 0;
    }

    .categories-section {
        padding: 60px 0;
    }

    .why-section {
        padding: 60px 0;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .blog-posts-section {
        padding: 60px 0 80px;
    }

    .page-content {
        padding: 100px 0 40px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-cta-section {
        padding: 60px 0;
    }

    .legal-section {
        padding: 60px 0 80px;
    }

    .contact-main-section {
        padding: 60px 0 80px;
    }

    .site-footer {
        padding: 40px 0 0;
    }

    .why-section::before {
        height: 60px;
    }

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

    .stat-number {
        font-size: 2.25rem;
    }
}

/* ==========================================
   RESPONSIVE — 600px
   ========================================== */

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .categories-grid {
        gap: 12px;
    }

    .category-card {
        min-height: 200px;
    }

    .category-name {
        font-size: 1.75rem;
    }

    .trust-bar-inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
    }

    .hero-section {
        min-height: 60vh;
        padding: 80px 0 50px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .newsletter-section::before {
        height: 40px;
    }

    .single-post-hero {
        min-height: 30vh;
        padding: 120px 0 30px;
    }

    .single-post-hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .single-post-article {
        padding: 20px 0 0;
    }

    .story-accent-block {
        display: none;
    }

    .story-grid {
        gap: 24px;
    }

    .story-image-placeholder {
        aspect-ratio: 16 / 9;
    }

    .stats-grid {
        gap: 16px;
    }

    .team-grid {
        gap: 16px;
    }
}

/* ==========================================
   RESPONSIVE — 480px
   ========================================== */

@media (max-width: 480px) {
    .trust-bar-inner {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .story-accent-block {
        display: none;
    }

    .contact-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.875rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 16px 14px;
    }

    .single-post-hero {
        min-height: 40vh;
        padding: 140px 0 40px;
    }

    .single-post-article {
        padding: 24px 0 0;
    }

    .single-post-author-box {
        padding: 20px;
    }

    .legal-container {
        padding: 20px 16px;
    }

    .legal-container h2 {
        font-size: 1.25rem;
    }

    .category-card {
        min-height: 180px;
    }

    .category-name {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 70px 0 40px;
        min-height: 50vh;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .newsletter-form input[type="email"],
    .cf7-newsletter input[type="email"] {
        padding: 12px 16px;
        font-size: 0.875rem;
    }

    .newsletter-form .btn,
    .cf7-newsletter input[type="submit"] {
        padding: 12px 24px;
        font-size: 0.8125rem;
    }

    .cart-modal {
        padding: 28px 20px 24px;
    }

    .cart-modal-title {
        font-size: 1.375rem;
    }

    .page-hero {
        min-height: 40vh;
        padding: 120px 0 60px;
    }

    .page-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .error404-title {
        font-size: 5rem;
    }

    .error404-subtitle {
        font-size: 1.125rem;
    }

    .story-section {
        padding: 40px 0;
    }

    .story-grid {
        gap: 20px;
    }

    .story-image-placeholder {
        aspect-ratio: 3 / 2;
    }

    .story-paragraph {
        font-size: 0.9375rem;
    }

    .about-values-section {
        padding: 40px 0;
    }

    .about-value-card {
        padding: 28px 20px;
    }

    .team-section {
        padding: 40px 0;
    }

    .team-card {
        padding: 28px 20px;
    }

    .stats-section {
        padding: 40px 0;
    }

    .about-cta-section {
        padding: 50px 0;
    }

    .about-cta-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .about-cta-text {
        font-size: 0.9375rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* WhatsApp Floating Bubble */
.whatsapp-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-bubble svg {
    display: block;
}

@media (max-width: 480px) {
    .whatsapp-bubble {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
}
