
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
     font-family: "Open Sans", sans-serif !important;
    color: #333;
}

.main-container h1 {
    margin-bottom: 30px;
    font-size: 48px;
    color: #222;
     font-family: "Open Sans", sans-serif !important;
    text-align: center;
    letter-spacing: 1px;
}

.main-container p {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.obchodcard {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 280px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.obchodcard:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.obchodcard img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #eee;
}

.obchodcard-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.obchodcard-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #007BFF;
     font-family: "Open Sans", sans-serif !important;
}

.obchodcard-content p {
    font-size: 16px;
    color: #666;
     font-family: "Open Sans", sans-serif !important;
    margin-bottom: 10px;
}

.obchodcard-content .price {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-top: auto;
}

.button {
    display: inline-block;
    padding: 16px 36px;
    margin-top: 40px;
    background: linear-gradient(135deg, #007BFF, #00c6ff);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
     font-family: "Open Sans", sans-serif !important;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.button:hover {
    background: linear-gradient(135deg, #0056b3, #00aaff);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 24px rgba(0, 123, 255, 0.4);
}

.button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}
.main-container h1 {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}