/* ============================================
   MOBILE NAV, FOOTER MOBILE NAVIGATION & FOOTER - OPTIMIZED COMPONENTS - OPTIMIZED
   AI Connects Engineering
   Version: 2.0 - UX/UI & Accessibility Enhanced
   ============================================ */

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    --nav-bg: #ffffff;
    --nav-text: #1a1a2e;
    --nav-accent: #00BCD4;
    --nav-accent-hover: #0097a7;
    --nav-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    --nav-radius: 12px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --focus-ring: 0 0 0 3px rgba(0, 188, 212, 0.4);
}

/* ========================================
   REDUCED MOTION - Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   FOCUS STATES - Accessibility
   ======================================== */
.mobile-toggle:focus-visible,
.nav-menu a:focus-visible,
.footer-links a:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.nav-menu a:focus-visible {
    background: rgba(0, 188, 212, 0.1) !important;
}

/* ========================================
   DESKTOP - Hide mobile toggle, show nav menu
   ======================================== */
.mobile-toggle {
    display: none;
}

.nav-menu {
    display: flex !important;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    color: #00BCD4;
    background: rgba(0, 188, 212, 0.08);
}

.nav-menu a.active {
    color: #00BCD4;
}

.nav-menu .nav-cta {
    background: linear-gradient(135deg, #00BCD4 0%, #0097a7 100%);
    color: white !important;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    margin-left: 0.5rem;
}

.nav-menu .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.4);
    background: linear-gradient(135deg, #00BCD4 0%, #0097a7 100%);
}

/* ========================================
   FOOTER - Base Desktop Styles
   ======================================== */
.footer {
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff !important;
}

.footer-brand .logo-text span {
    color: #00BCD4 !important;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

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

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
    color: #00BCD4;
    padding-left: 4px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #00BCD4;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact a:hover {
    color: #00BCD4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0.25rem 0;
}

/* Footer - Tablet */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* ========================================
   TABLET BREAKPOINT (1024px and below)
   ======================================== */
@media (max-width: 1024px) {
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        z-index: 10001 !important;
        flex-shrink: 0 !important;
        background: transparent !important;
        border: none !important;
        width: 44px;
        height: 44px;
        pointer-events: auto !important;
        border-radius: 8px;
        transition: background var(--transition-fast);
    }
    
    .mobile-toggle:hover {
        background: rgba(0, 0, 0, 0.05) !important;
    }
    
    .mobile-toggle:active {
        background: rgba(0, 0, 0, 0.1) !important;
    }
    
    .mobile-toggle span {
        pointer-events: none !important;
        display: block;
        width: 22px;
        height: 2px;
        background: #0a2540 !important;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-menu {
        display: flex !important;
        position: absolute !important;
        top: 100% !important;
        right: 1rem !important;
        left: auto !important;
        width: 260px !important;
        max-height: 0 !important;
        background: var(--nav-bg) !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all var(--transition-smooth) !important;
        z-index: 9999 !important;
        list-style: none !important;
        border-radius: var(--nav-radius) !important;
        box-shadow: var(--nav-shadow) !important;
        overflow: hidden !important;
        transform: scale(0.95) translateY(-10px) !important;
        pointer-events: none !important;
    }
    
    .nav-menu.active {
        display: flex !important;
        max-height: 500px !important;
        padding: 0.5rem 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: scale(1) translateY(0) !important;
        pointer-events: auto !important;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        list-style: none !important;
    }
    
    .nav-menu li:last-child {
        border-bottom: none !important;
    }
    
    .nav-menu a {
        color: var(--nav-text) !important;
        font-size: 0.9375rem !important;
        font-weight: 500 !important;
        padding: 0.875rem 1.25rem !important;
        display: flex !important;
        align-items: center !important;
        text-decoration: none !important;
        transition: background var(--transition-fast), color var(--transition-fast) !important;
        min-height: 44px;
    }
    
    .nav-menu a:hover,
    .nav-menu a:focus {
        background: rgba(0, 188, 212, 0.08) !important;
        color: var(--nav-accent) !important;
    }
    
    .nav-menu a.active {
        color: var(--nav-accent) !important;
        font-weight: 600 !important;
    }
    
    .nav-menu .nav-cta {
        background: linear-gradient(135deg, #00BCD4 0%, #00a0b8 100%) !important;
        color: white !important;
        border-radius: 8px !important;
        margin: 0.5rem 1rem 0.75rem !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    .nav-menu .nav-cta:hover {
        background: linear-gradient(135deg, #00a0b8 0%, #008fa3 100%) !important;
        color: white !important;
    }
    
    .nav-container {
        position: relative !important;
    }
}

/* ========================================
   MOBILE BREAKPOINT (768px and below)
   ======================================== */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex !important;
        width: 44px;
        height: 44px;
    }
    
    .nav-menu {
        width: 240px !important;
        top: calc(100% + 8px) !important;
        right: 0 !important;
        transform-origin: top right !important;
    }
    
    .nav-menu a {
        font-size: 0.9rem !important;
        padding: 0.75rem 1rem !important;
    }
    
    /* MOBILE FOOTER */
    .footer {
        padding: 2.5rem 1.25rem 1.5rem !important;
    }
    
    .footer-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0 !important;
        text-align: center;
    }
    
    .footer-brand {
        flex: 0 0 100% !important;
        width: 100% !important;
        text-align: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-brand .logo {
        justify-content: center;
        margin-bottom: 1rem !important;
    }
    
    .footer-brand .logo-text {
        color: #ffffff !important;
    }
    
    .footer-brand .logo-text span {
        color: #00BCD4 !important;
    }
    
    .footer-brand p {
        font-size: 0.875rem;
        line-height: 1.6;
        max-width: 320px;
        margin: 0 auto;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .footer-grid > div:nth-child(2) {
        flex: 0 0 50% !important;
        width: 50% !important;
        text-align: center;
        padding: 1rem 0.5rem;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        box-sizing: border-box;
    }
    
    .footer-grid > div:nth-child(3) {
        flex: 0 0 50% !important;
        width: 50% !important;
        text-align: center;
        padding: 1rem 0.5rem;
        box-sizing: border-box;
    }
    
    .footer-title {
        font-size: 0.75rem !important;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 0.75rem !important;
        color: rgba(255, 255, 255, 0.5) !important;
    }
    
    .footer-links {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    .footer-links li {
        margin-bottom: 0.375rem !important;
        list-style: none !important;
    }
    
    .footer-links a {
        font-size: 0.85rem !important;
        padding: 0.4rem 0.25rem !important;
        display: inline-block;
        min-height: 44px;
        line-height: 2.2;
        color: rgba(255, 255, 255, 0.9) !important;
        text-decoration: none;
        transition: color var(--transition-fast);
    }
    
    .footer-links a:hover,
    .footer-links a:focus {
        color: #00BCD4 !important;
    }
    
    .footer-contact {
        flex: 0 0 100% !important;
        width: 100% !important;
        padding: 1.5rem 0 !important;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-contact .footer-title {
        margin-bottom: 1rem !important;
    }
    
    .footer-contact p {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }
    
    .footer-contact a {
        color: #00BCD4 !important;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
        padding-top: 1.5rem !important;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        opacity: 0.7;
        margin: 0.125rem 0;
    }
}

/* ========================================
   SMALL MOBILE (480px and below)
   ======================================== */
@media (max-width: 480px) {
    .nav-menu {
        width: 200px !important;
        right: -0.5rem !important;
    }
    
    .nav-menu a {
        font-size: 0.85rem !important;
        padding: 0.625rem 0.875rem !important;
    }
    
    .nav-menu .nav-cta {
        margin: 0.375rem 0.75rem 0.5rem !important;
    }
    
    .footer {
        padding: 2rem 1rem 1.25rem !important;
    }
}

/* ========================================
   EXTRA SMALL (360px and below)
   ======================================== */
@media (max-width: 360px) {
    .mobile-toggle {
        width: 40px;
        height: 40px;
        padding: 6px;
    }
    
    .mobile-toggle span {
        width: 20px;
    }
    
    .nav-menu {
        width: 180px !important;
    }
    
    .footer-grid > div:nth-child(2),
    .footer-grid > div:nth-child(3) {
        flex: 0 0 100% !important;
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0;
    }
    
    .footer-grid > div:nth-child(3) {
        border-bottom: none;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .mobile-toggle, .nav-menu, .nav-cta {
        display: none !important;
    }
    
    .footer {
        background: white !important;
        color: black !important;
    }
    
    .footer-links a, .footer-contact a,
    .footer-brand .logo-text, .footer-brand .logo-text span {
        color: black !important;
    }
}

/* ========================================
   HIGH CONTRAST MODE
   ======================================== */
@media (prefers-contrast: high) {
    .nav-menu {
        border: 2px solid #000 !important;
    }
    
    .nav-menu a:focus {
        outline: 3px solid #000 !important;
    }
    
    .mobile-toggle span {
        background: #000 !important;
    }
}

/* ========================================
   SERVICE CARDS - Shared across pages
   ======================================== */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-card .service-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00BCD4 0%, #0097a7 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.service-card .service-icon svg {
    stroke: white !important;
}

.service-card .service-title {
    color: #1a1a2e !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin: 1rem 0 0.75rem 0 !important;
    display: block !important;
    line-height: 1.3;
}

.service-card .service-description {
    color: #4a5568 !important;
    font-size: 0.9375rem !important;
    line-height: 1.65 !important;
    margin: 0 0 1rem 0 !important;
    display: block !important;
}

.service-card .service-link {
    margin-top: auto;
    padding-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00BCD4;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.service-card .service-link:hover {
    gap: 0.75rem;
    color: #0097a7;
}

.service-card .service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.service-card .service-link:hover svg {
    transform: translateX(4px);
}

/* Service Cards - Tablet */
@media (max-width: 1024px) {
    .service-card {
        padding: 1.5rem;
    }
}

/* Service Cards - Mobile */
@media (max-width: 768px) {
    .service-card {
        padding: 1.25rem;
    }
    
    .service-card .service-icon {
        width: 48px;
        height: 48px;
    }
    
    .service-card .service-title {
        font-size: 1.125rem !important;
        margin: 0.75rem 0 0.5rem 0 !important;
    }
    
    .service-card .service-description {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
    }
    
    .service-card .service-link {
        font-size: 0.875rem;
    }
}

/* Service Cards - Small Mobile */
@media (max-width: 480px) {
    .service-card {
        padding: 1rem;
    }
    
    .service-card .service-icon {
        width: 44px;
        height: 44px;
    }
    
    .service-card .service-title {
        font-size: 1rem !important;
    }
    
    .service-card .service-description {
        font-size: 0.8125rem !important;
    }
}

/* ========================================
   SPECS GRID - Technical Specifications
   Used on: pcb-design-assembly, services, etc.
   ======================================== */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.spec-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.spec-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #00BCD4;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.spec-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Specs Grid - Tablet (2 columns) */
@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .spec-item {
        padding: 1.25rem 1rem;
    }
    
    .spec-number {
        font-size: 1.75rem;
    }
    
    .spec-label {
        font-size: 0.85rem;
    }
}

/* Specs Grid - Small Mobile */
@media (max-width: 480px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .spec-item {
        padding: 1rem 0.75rem;
    }
    
    .spec-number {
        font-size: 1.5rem;
    }
    
    .spec-label {
        font-size: 0.8rem;
    }
}

/* ========================================
   VIDEO GRID - For automation page
   ======================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.video-card-content {
    padding: 1.5rem;
}

.video-card h3 {
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.video-card p {
    color: #4a5568;
    font-size: 0.9375rem;
}

/* ========================================
   APPLICATIONS GRID - For automation page
   ======================================== */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.application-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

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

.application-item .icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00BCD4 0%, #0097a7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.application-item .icon svg {
    stroke: white;
}

.application-item h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

/* ========================================
   FEATURES LIST - Shared component
   ======================================== */
.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(0, 188, 212, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #374151;
}

.features-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #00BCD4;
}

/* Video/Applications Grid - Tablet */
@media (max-width: 1024px) {
    .applications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Video/Applications Grid - Mobile */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .application-item {
        padding: 1rem;
    }
    
    .application-item .icon {
        width: 48px;
        height: 48px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .video-card-content {
        padding: 1rem;
    }
}

/* Video/Applications Grid - Small Mobile */
@media (max-width: 480px) {
    .applications-grid {
        gap: 0.75rem;
    }
    
    .application-item {
        padding: 0.875rem;
    }
    
    .application-item h4 {
        font-size: 0.8125rem;
    }
}

/* ========================================
   PRODUCT PAGE - Cards and Grid
   ======================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-card-image {
    height: 240px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-card-content {
    padding: 1.5rem;
}

.product-card h3 {
    color: #1a1a2e;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.product-card p {
    color: #4a5568;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: #374151;
}

.product-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #00BCD4;
}

/* Product Grid - Mobile */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card-image {
        height: 200px;
    }
    
    .product-card-content {
        padding: 1.25rem;
    }
}
