/* K-Ergo E-Commerce Website - Warm, Friendly Consumer Design */
/* Matching ErgoMug brand aesthetic with consumer-focused tone */

/* Import Google Font to match ErgoMug brand */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

/* CSS Variables - Consistent with ErgoMug theming */
:root {
    --primary-orange: #E85D04;
    --primary-red: #D00000;
    --warm-orange: #F48C06;
    --light-orange: #FAA307;
    --cream: #FFF8F0;
    --warm-white: #FFFCF9;
    --dark-charcoal: #2D2D2D;
    --medium-gray: #5A5A5A;
    --light-gray: #E8E8E8;
    --warm-beige: #F5EBE0;
    --accent-gold: #D4A373;
    --terracotta: #C05746;
    --soft-terracotta: #D4756A;
    --bright-logo-orange: #F0864D;
    --bright-logo-red: #D64545;
    --bright-center: #FCCFB0;
    --success-green: #2E7D32;
    --gradient-warm: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-red) 100%);
    --gradient-hero: radial-gradient(ellipse at center, #D64545 0%, #E06850 30%, #F0864D 60%, #FCCFB0 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.18);
    --transition-smooth: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-charcoal);
    background-color: var(--warm-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-charcoal);
}

h1 { font-size: 2.75rem; margin-bottom: 1rem; }
h2 { font-size: 2.25rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--primary-red);
}

/* Header / Navigation */
header {
    background: var(--warm-white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo img {
    height: 60px;
    width: auto;
}

.site-title {
    display: flex;
    flex-direction: column;
}

.site-title h1 {
    font-size: 1.75rem;
    margin: 0;
    color: var(--dark-charcoal);
    font-weight: 800;
}

.site-title .tagline {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

nav ul li a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-charcoal);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-orange);
    background-color: var(--cream);
}

nav ul li a.buy-now-nav {
    background: var(--gradient-warm);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
}

nav ul li a.buy-now-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.4);
    color: white;
    background: var(--gradient-warm);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    color: var(--dark-charcoal);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 4px solid var(--bright-logo-red);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Nunito', sans-serif;
    color: white;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.hero-problem {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-solution {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.price-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-orange);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: var(--shadow-medium);
}

.free-shipping {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--gradient-warm);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(232, 93, 4, 0.5);
    color: white;
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.cta-button.white {
    background: white;
    color: var(--primary-orange);
}

.cta-button.white:hover {
    background: var(--cream);
    color: var(--primary-red);
}

/* Section Styles */
section {
    padding: 4rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--dark-charcoal);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 20%, var(--primary-red) 50%, var(--primary-orange) 80%, transparent 100%);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--medium-gray);
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Problem/Solution Section */
.problem-solution {
    background: var(--cream);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.problem-box, .solution-box {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.problem-box {
    border-top: 4px solid var(--primary-red);
}

.solution-box {
    border-top: 4px solid var(--success-green);
}

.problem-box h3 {
    color: var(--primary-red);
}

.solution-box h3 {
    color: var(--success-green);
}

.problem-box .icon, .solution-box .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-box ul, .solution-box ul {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.problem-box li, .solution-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--medium-gray);
}

.problem-box li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.solution-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Product Gallery */
.product-gallery {
    background: var(--warm-white);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.product-gallery .section-title {
    margin-bottom: 1.5rem;
}

.gallery-main {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.main-image-container {
    flex: 2;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.main-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-info h3 {
    color: var(--primary-orange);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.thumbnail {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 3px solid transparent;
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* How It Works Section */
.how-it-works {
    background: var(--cream);
}

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

.step-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.step-icon {
    font-size: 3rem;
    margin: 1rem 0 1.5rem 0;
}

.step-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

/* Video Section */
.video-section {
    background: var(--warm-beige);
    padding: 1.5rem 2rem;
}

.video-section .section-title {
    margin-bottom: 1rem;
}

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

.video-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin: 0 auto;
}

.video-item-full {
    max-width: 520px;
    width: 100%;
    text-align: center;
}

.video-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: var(--warm-beige);
    line-height: 0;
    display: inline-block;
    max-width: 100%;
}

.video-container video {
    max-width: 100%;
    max-height: 450px;
    height: auto;
    display: block;
    background: var(--warm-beige);
}

.video-label {
    text-align: center;
    padding: 0.4rem;
    background: white;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark-charcoal);
    border-radius: 0 0 10px 10px;
    margin-top: -3px;
}

.video-description {
    text-align: center;
    padding: 0.2rem 1rem 0.5rem 1rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 520px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: var(--warm-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-orange);
}

/* Product Specs */
.specifications {
    background: var(--cream);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.spec-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.spec-item h4 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.spec-item p {
    margin: 0;
    font-weight: 600;
    color: var(--dark-charcoal);
}

/* Purchase Section */
.purchase-section {
    background: var(--gradient-warm);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.purchase-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.purchase-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.purchase-box {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.purchase-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.purchase-shipping {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.purchase-includes {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.guarantee-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

/* IONOS Buy Now Button Integration */
.ionos-buy-button-wrapper {
    margin: 1.5rem auto;
    max-width: 300px;
}

.ionos-buy-button-wrapper .ecsp-SingleProduct-v2 {
    margin: 0 auto;
}

/* Style overrides for IONOS widget to match site theme */
.ionos-buy-button-wrapper .ecsp .ecsp-ProductWidget {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Override IONOS Buy Now button colors to match site branding */
.ecsp .ecsp-SingleProduct-v2 .form-control--button,
.ecsp .ecsp-SingleProduct-v2 .form-control.form-control--button,
.ecsp .ecsp-SingleProduct-v2 button,
.ecsp .ecsp-SingleProduct-v2 .ec-btn,
.ecsp .ecsp-SingleProduct-v2 [class*="AddToBag"],
.ecsp .ecsp-SingleProduct-v2 .form-control--button-primary,
.ecsp-SingleProduct-v2 button,
.ecsp-SingleProduct-v2 .form-control--button,
.ec-Product button,
.ec-Product .form-control--button {
    background: linear-gradient(135deg, #E85D04 0%, #D00000 100%) !important;
    background-color: #E85D04 !important;
    border: none !important;
    border-radius: 30px !important;
    color: white !important;
    font-family: 'Nunito', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    padding: 0.85rem 2.5rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
}

.ecsp .ecsp-SingleProduct-v2 .form-control--button:hover,
.ecsp .ecsp-SingleProduct-v2 button:hover,
.ecsp-SingleProduct-v2 button:hover,
.ec-Product button:hover,
.ec-Product .form-control--button:hover {
    background: linear-gradient(135deg, #D00000 0%, #E85D04 100%) !important;
    background-color: #D00000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(232, 93, 4, 0.4) !important;
}

/* FAQ Section */
.faq-section {
    background: var(--warm-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-charcoal);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: var(--cream);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: var(--cream);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-orange);
}

/* Footer */
footer {
    background: var(--dark-charcoal);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand img {
    height: 50px;
}

.footer-brand h3 {
    color: white;
    margin: 0;
}

.footer-tagline {
    font-size: 1.25rem;
    color: var(--warm-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-links {
    margin: 1.5rem 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 1rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--warm-orange);
}

.copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.ergomug-link {
    margin-top: 1rem;
}

.ergomug-link a {
    color: var(--warm-orange);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-main {
        flex-direction: column;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .logo-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .site-title {
        text-align: center;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    nav ul li a {
        padding: 0.4rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .hero-problem {
        font-size: 1.2rem;
    }
    
    section {
        padding: 3rem 1.5rem;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .brand-logo img {
        height: 50px;
    }
    
    .site-title h1 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .price-tag {
        font-size: 1.5rem;
        padding: 0.5rem 1.5rem;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .purchase-price {
        font-size: 2.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* OCR developer introduction */
.ocr-developer { background: var(--cream); padding: clamp(32px, 6vw, 64px) 0; }
.ocr-developer-card { max-width: 960px; margin: 0 auto; padding: clamp(24px, 5vw, 48px); background: var(--warm-white); border: 1px solid var(--accent-gold); border-top: 4px solid var(--terracotta); border-radius: 12px; box-shadow: var(--shadow-soft); text-align: center; }
.ocr-developer-card h2 { color: var(--dark-charcoal); font-size: clamp(26px, 4vw, 36px); line-height: 1.3; margin: 0 0 20px; }
.ocr-developer-card p { color: var(--dark-charcoal); font-size: clamp(18px, 2.5vw, 21px); line-height: 1.7; margin: 0 auto; max-width: 760px; }
.ocr-developer-card a { color: #923d2f; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.ocr-developer-card a:hover { color: #69291f; }
.ocr-developer-card a:focus-visible { outline: 2px solid #69291f; outline-offset: 4px; border-radius: 2px; }

/* Related OCR product websites */
.ocr-other-products{background:var(--cream);padding:24px 20px 56px}
.ocr-other-products-inner{max-width:960px;margin:0 auto;text-align:center}
.ocr-other-products h2{color:var(--dark-charcoal);font-size:clamp(24px,3.5vw,32px);line-height:1.3;margin:0 0 24px}
.ocr-other-products-links{display:grid;grid-template-columns:1fr;gap:4px;max-width:600px;margin:0 auto}
.ocr-other-products-links a{display:flex;align-items:center;justify-content:center;min-height:72px;padding:20px 16px;background:var(--warm-white);border:1px solid var(--accent-gold);border-radius:10px;color:#923d2f;font-size:20px;font-weight:700;text-decoration:underline;text-underline-offset:4px;line-height:1.4}
.ocr-other-products-links a:hover{color:var(--dark-charcoal);border-color:#923d2f}
.ocr-other-products-links a:focus-visible{outline:3px solid #923d2f;outline-offset:4px}
@media(max-width:600px){.ocr-other-products-links{grid-template-columns:1fr}}
