.amy-shop-categories {
    max-width: 1400px;
    margin: 0px auto;
//    padding: 0 20px;
}

.amy-section-header {
    text-align: center;
    margin-bottom: 25px;
}

.amy-section-header span {
    display: block;
    color: #c59d5f;
    letter-spacing: 3px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.amy-section-header h2 {
    font-size: 42px;
    font-weight: 300;
    margin: 0;
    line-height: 1.2;
}

.amy-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.amy-category-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.amy-category-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: .4s ease;
}

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

.amy-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.1)
    );

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 20px;
}

.amy-category-overlay h3 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    word-break: keep-all;
}

.amy-category-overlay span {
    color: #fff;
    margin-top: 6px;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Tablet */
@media (max-width: 1024px) {

    .amy-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .amy-category-card img {
        height: 260px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .amy-shop-categories {
        margin: 0px auto;
     //   padding: 0 15px;
    }

    .amy-section-header {
        margin-bottom: 20px;
    }

    .amy-section-header span {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .amy-section-header h2 {
        font-size: 26px;
        line-height: 1.15;
    }

    .amy-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .amy-category-card {
        border-radius: 10px;
    }

    .amy-category-card img {
        height: 180px;
    }

    .amy-category-overlay {
        padding: 12px;
    }

    .amy-category-overlay h3 {
        font-size: 16px;
        line-height: 1.1;
    }

    .amy-category-overlay span {
        font-size: 11px;
        margin-top: 4px;
    }
}
