/* ========================================
   MOBILE SHOP FIXES (IG / TIKTOK STYLE)
======================================== */

/* SHOP WRAPPER */
.awj-shop-wrap {
    padding: 0 14px 40px;
}

/* STICKY FILTER BAR */
.awj-categories /* ========================================
   ADVENTURES WITH JAZ SHOP
======================================== */

.awj-shop-wrap{
    max-width:1400px;
    margin:0 auto;
    padding:20px 14px 60px;
}

/* ========================================
   HEADER
======================================== */

.awj-heading{
    margin-bottom:18px;
}

.awj-heading h1{
    font-size:42px;
    line-height:1;
    margin:0 0 10px;
    color:#111;
}

.awj-heading p{
    color:#666;
    font-size:15px;
    line-height:1.5;
    margin:0;
}

/* ========================================
   STICKY CATEGORY FILTERS
======================================== */

.awj-categories{
    position:sticky;
    top:0;
    z-index:50;

    background:#fff;

    padding:12px 0;

    margin-bottom:10px;

    display:flex;
    gap:10px;

    overflow-x:auto;
    overflow-y:hidden;

    white-space:nowrap;

    -webkit-overflow-scrolling:touch;

    scrollbar-width:none;
}

.awj-categories::-webkit-scrollbar{
    display:none;
}

.awj-cat{
    flex:0 0 auto;

    background:#fff;

    border:2px solid #f430a2;

    color:#f430a2;

    padding:9px 18px;

    border-radius:999px;

    font-size:13px;
    font-weight:700;

    cursor:pointer;

    transition:.2s;
}

.awj-cat:hover{
    background:#f430a2;
    color:#fff;
}

.awj-cat.active{
    background:#f430a2;
    color:#fff;
}

/* ========================================
   RESULTS COUNT
======================================== */

.awj-results-count{
    font-size:14px;
    color:#666;
    margin:4px 0 18px;
}

/* ========================================
   PRODUCT GRID
======================================== */

.awj-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    align-items:start;
}

/* ========================================
   PRODUCT CARD
======================================== */

.awj-card{
    position:relative;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 3px 12px rgba(0,0,0,.06);

    transition:.25s;
}

.awj-card:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}

/* ========================================
   IMAGE AREA
======================================== */

.awj-img-wrap{
    position:relative;

    width:100%;
    aspect-ratio:1/1;

    overflow:hidden;

    background:#f8f8f8;

    cursor:pointer;
}

.awj-img-wrap img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:.3s;
}

.awj-card:hover .awj-img-wrap img{
    transform:scale(1.03);
}

/* ========================================
   MAGNIFY ICON
======================================== */

.awj-overlay-icon{
    position:absolute;

    right:10px;
    bottom:10px;

    width:34px;
    height:34px;

    border-radius:50%;

    background:#46ddf5;

    color:#111;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:16px;

    box-shadow:0 4px 12px rgba(0,0,0,.18);

    z-index:4;
}

/* ========================================
   NEW BADGE
======================================== */

.awj-new-badge{
    position:absolute;

    top:10px;
    left:10px;

    z-index:5;

    background:#f430a2;

    color:#fff;

    font-size:11px;
    font-weight:800;

    padding:6px 10px;

    border-radius:999px;

    box-shadow:0 4px 10px rgba(0,0,0,.1);

    animation:awjPulse 1.2s infinite alternate;
}

@keyframes awjPulse{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

/* ========================================
   PRODUCT TITLE
======================================== */

.awj-title{
    font-size:14px;
    line-height:1.35;

    color:#111;

    padding:10px 10px 4px;

    margin:0;
}

/* ========================================
   PRICE
======================================== */

.awj-price{
    padding:0 10px 10px;

    font-size:14px;
    font-weight:700;

    color:#f430a2;
}

/* ========================================
   BUTTON
======================================== */

.awj-btn{
    display:block;

    margin:0 10px 12px;

    text-align:center;

    background:#111;

    color:#fff;

    padding:11px;

    border-radius:12px;

    font-size:13px;
    font-weight:700;

    text-decoration:none;

    transition:.2s;
}

.awj-btn:hover{
    background:#f430a2;
    color:#fff;
}

/* ========================================
   MODAL
======================================== */

.awj-modal{
    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    z-index:9999;

    align-items:center;
    justify-content:center;

    padding:20px;
}

.awj-modal.show{
    display:flex;
}

.awj-modal-inner{
    background:#fff;

    width:100%;
    max-width:420px;

    border-radius:22px;

    padding:18px;

    position:relative;

    max-height:90vh;

    overflow-y:auto;
}

.awj-close{
    position:absolute;

    top:12px;
    right:14px;

    font-size:28px;

    cursor:pointer;
}

/* ========================================
   QUICK VIEW
======================================== */

.awj-qv img{
    width:100%;
    border-radius:16px;
    margin-bottom:14px;
}

.awj-qv h2{
    font-size:22px;
    margin:0 0 8px;
}

.awj-qv .price{
    color:#f430a2;
    font-weight:700;
    margin-bottom:10px;
}

.awj-qv-desc{
    font-size:14px;
    line-height:1.5;
    color:#555;
    margin-bottom:18px;
}

/* ========================================
   DESKTOP
======================================== */

@media(min-width:768px){

    .awj-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .awj-heading h1{
        font-size:54px;
    }

}

@media(min-width:1024px){

    .awj-grid{
        grid-template-columns:repeat(4,1fr);
    }

}
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    padding: 10px 0;
    margin-bottom: 14px;

    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.awj-categories::-webkit-scrollbar {
    display: none;
}

/* CATEGORY BUTTONS */
.awj-cat {
    flex: 0 0 auto;

    background: #fff;
    border: 2px solid #f430a2;

    color: #f430a2;

    padding: 8px 16px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    transition: .2s;
}

.awj-cat.active {
    background: #f430a2;
    color: #fff;
    border-color: #f430a2;
}

/* RESULTS COUNT */
.awj-results-count {
    margin: 8px 0 12px;
    font-size: 14px;
    color: #666;
}

/* PRODUCT GRID */
.awj-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    align-items: start;
}

/* PRODUCT CARD */
.awj-card {
    position: relative;

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 3px 12px rgba(0,0,0,.06);

    transition: .25s;
}

.awj-card:active {
    transform: scale(.98);
}

/* IMAGE WRAPPER */
.awj-img-wrap {
    position: relative;

    width: 100%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #f8f8f8;
}

/* PRODUCT IMAGE */
.awj-img-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

/* MAGNIFY ICON */
.awj-overlay-icon {
    position: absolute;

    right: 10px;
    bottom: 10px;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: rgba(244,48,162,.92);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;

    backdrop-filter: blur(6px);

    box-shadow: 0 4px 12px rgba(0,0,0,.18);

    opacity: 1;

    pointer-events: none;
}

/* NEW BADGE */
.awj-new-badge {
    position: absolute;

    top: 10px;
    left: 10px;

    z-index: 5;

    background: #46ddf5;

    color: #111;

    font-size: 11px;
    font-weight: 800;

    padding: 6px 10px;

    border-radius: 999px;

    box-shadow: 0 4px 10px rgba(0,0,0,.1);

    animation: awjPulse 1.3s infinite alternate;
}

@keyframes awjPulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}

/* PRODUCT TITLE */
.awj-title {
    font-size: 14px;
    line-height: 1.35;

    padding: 10px 10px 4px;

    margin: 0;

    color: #111;
}

/* PRICE */
.awj-price {
    padding: 0 10px 10px;

    font-size: 14px;
    font-weight: 700;

    color: #f430a2;
}

/* BUTTON */
.awj-btn {
    display: block;

    margin: 0 10px 12px;

    text-align: center;

    background: #f430a2;

    color: #fff;

    padding: 11px;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: .2s;
}

.awj-btn:active {
    transform: scale(.98);
}

.awj-btn:hover {
    background: #111;
}

/* MODAL */
.awj-modal-inner {
    width: 92%;
    max-width: 420px;

    border-radius: 20px;

    padding: 18px;
}

/* QUICK VIEW DESCRIPTION */
.awj-qv-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #555;

    margin: 10px 0 16px;
}

/* DESKTOP */
@media(min-width:768px){

    .awj-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(min-width:1024px){

    .awj-grid{
        grid-template-columns:repeat(4,1fr);
    }

}
/* ========================================
FEATURED DROP ROW
======================================== */

.awj-featured-wrap{
    margin:10px 0 26px;
}

.awj-featured-header{
    margin-bottom:14px;
}

.awj-featured-header h2{
    font-size:24px;
    margin:0 0 4px;
    color:#111;
}

.awj-featured-header p{
    margin:0;
    color:#666;
    font-size:14px;
}

/* HORIZONTAL SCROLL */
.awj-featured-scroll{
    display:flex;
    gap:14px;

    overflow-x:auto;
    overflow-y:hidden;

    padding-bottom:4px;

    scroll-snap-type:x mandatory;

    -webkit-overflow-scrolling:touch;

    scrollbar-width:none;
}

.awj-featured-scroll::-webkit-scrollbar{
    display:none;
}

/* FEATURED CARD */
.awj-featured-card{
    flex:0 0 150px;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 4px 14px rgba(0,0,0,.06);

    scroll-snap-align:start;

    transition:.25s;
}

.awj-featured-card:active{
    transform:scale(.98);
}

.awj-featured-card a{
    text-decoration:none;
    color:inherit;
}

/* IMAGE */
.awj-featured-img{
    aspect-ratio:1/1;
    overflow:hidden;
    background:#f7f7f7;
}

.awj-featured-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* TITLE */
.awj-featured-card h3{
    font-size:13px;
    line-height:1.35;

    padding:10px;

    margin:0;

    color:#111;
}