body {
    text-align: center;
}

header h1 {
    font-size: 50px;
}

header p {
    font-size: 22px;
    color: #F5E6C8;
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 35px;
}

.card {
    background: #fffaf3;
    width: 300px;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    animation: up 1s ease;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 25px #D7A86E;
}

.img-skeleton--card {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.img-skeleton--card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: 0.5s;
}

.card .img-skeleton--card:hover img {
    transform: scale(1.05);
}

.card h2 {
    color: #3E2723;
    font-size: 24px;
}

.name {
    background: #EAD8C3;
    color: #3E2723;
    padding: 12px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
}

/* products.html overrides */
.page-products header h1 {
    font-size: 45px;
}

.page-products header p {
    font-size: 20px;
    color: inherit;
}

.page-products .products {
    padding: 40px;
}

.page-products .card {
    background: white;
}

.page-products .card:hover {
    transform: translateY(-15px) scale(1.03);
}

.page-products .img-skeleton--card,
.page-products .img-skeleton--card img {
    height: auto;
    min-height: 220px;
}

.page-products .img-skeleton--card.loaded {
    min-height: 0;
}

.page-products .img-skeleton--card:hover img {
    transform: scale(1.08);
    box-shadow: 0 0 25px #D7A86E;
}

.page-products .card h2 {
    font-size: 25px;
}

.page-products .card p {
    font-size: 18px;
    color: #555;
}

/* wabra.html header tagline color */
.page-wabra header p {
    color: #EAD8C3;
}

.page-triko header p {
    color: #EAD8C3;
}

/* triko.html back button */
.page-triko .back-btn {
    font-weight: bold;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-triko .back-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow:
        0 0 25px #D7A86E,
        0 10px 25px rgba(0, 0, 0, 0.3);
}
