/* ============================================================
   Ah Product Section — Category Grid 6 (Asymmetric Bento)
   ============================================================ */

.elementor-widget-ah_category_grid_6 {
    flex-shrink: 0 !important;
    height: auto !important;
    min-width: 0;
}

.elementor-widget-ah_category_grid_6 > .elementor-widget-container {
    height: auto !important;
    min-width: 0;
}

.ahcat6-wrap {
    padding: 10px 0;
    background: #fff;
    width: 100%;
}

.ahcat6-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 65px;
    font-family: inherit;
    box-sizing: border-box;
    min-width: 0;
}

.ahcat6-title {
    font-size: 28px;
    font-weight: 700;
    color: #190053;
    margin-bottom: 32px;
}

/* Main grid */
.ahcat6-bento {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 24px;
    min-height: 600px;
    width: 100%;
    min-width: 0;
}

/* Right column */
.ahcat6-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Bottom 2-col row */
.ahcat6-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    flex: 1;
    min-width: 0;
}

/* ── Card base ── */
.ahcat6-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    transition: transform .4s cubic-bezier(.2,0,.2,1), box-shadow .4s cubic-bezier(.2,0,.2,1);
}
.ahcat6-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

/* Background image */
.ahcat6-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .7s ease;
    z-index: 1;
}
.ahcat6-card:hover .ahcat6-bg {
    transform: scale(1.05);
}

/* Overlay */
.ahcat6-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.60) 0%, rgba(0,0,0,0) 50%);
    z-index: 2;
}

/* Text */
.ahcat6-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 3;
    color: #fff;
}

/* Featured card */
.ahcat6-featured {
    min-height: 500px;
}
.ahcat6-featured .ahcat6-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    opacity: .80;
    margin-bottom: 8px;
}
.ahcat6-featured .ahcat6-label {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.2;
    display: block;
    margin-bottom: 16px;
}

/* Wide card */
.ahcat6-wide {
    height: 260px;
}
.ahcat6-wide .ahcat6-text {
    padding: 20px 24px;
}
.ahcat6-wide .ahcat6-label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .02em;
    display: block;
    margin-bottom: 8px;
}

/* Small cards */
.ahcat6-small .ahcat6-text {
    padding: 20px 24px;
}
.ahcat6-small .ahcat6-label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .02em;
    display: block;
    margin-bottom: 8px;
}

/* Shop now link */
.ahcat6-shop {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.90);
    transition: gap .2s ease;
}
.ahcat6-card:hover .ahcat6-shop {
    gap: 10px;
}
.ahcat6-shop-arrow {
    font-size: 16px;
    line-height: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .ahcat6-bento { grid-template-columns: 1fr; min-height: auto; }
    .ahcat6-featured { min-height: 400px; }
    .ahcat6-wide { height: 240px; }
}
@media (max-width: 768px) {
    .ahcat6-container { padding: 0 5px; }
    .ahcat6-bento { gap: 12px; }
    .ahcat6-right { gap: 12px; }
    .ahcat6-bottom { gap: 12px; }
}
@media (max-width: 480px) {
    .ahcat6-bottom { grid-template-columns: 1fr; }
    .ahcat6-small { min-height: 220px; }
}
