body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.hero-section {
    background: linear-gradient(135deg, #1a6dc9 0%, #0d4a8f 100%);
}

.card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
}

.product-description img {
    max-width: 100%;
    height: auto;
}

.cms-page-body img {
    max-width: 100%;
    height: auto;
}

.product-zoom-viewport .product-zoom-image {
    object-fit: contain;
    transition: transform 0.12s ease-out;
    will-change: transform;
    cursor: zoom-in;
    user-select: none;
}

.product-zoom-viewport.is-zoomed .product-zoom-image {
    cursor: grab;
}

.product-zoom-viewport.is-panning .product-zoom-image {
    cursor: grabbing;
}
