/* ========================= */
/* BREADCRUMB */
/* ========================= */

.breadcrumb-section{
    width:100%;
    background:#f4faf4;
    padding:10px 5%;
    border-bottom:1px solid #e2efe2;
}

.breadcrumb-container{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    font-size:14px;
}

.breadcrumb-container a{
    color:#056d05;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.breadcrumb-container a:hover{
    color:#043d04;
}

.breadcrumb-container span{
    color:#666;
}

.breadcrumb-container .active{
    color:#222;
    font-weight:600;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */

.premium-hero{
    position:relative;
    width:100%;
    min-height:320px;
    padding:34px 5% 78px;
    background:linear-gradient(135deg, #f9fff9, #eef8ee);
    overflow:hidden;
    display:flex;
    justify-content:center;
    text-align:center;
    isolation:isolate;
}

/* ========================= */
/* BG GLOW */
/* ========================= */

.hero-bg-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(70px);
    opacity:0.15;
    z-index:1;
}

.hero-glow-1{
    width:180px;
    height:180px;
    background:#0f9b0f;
    top:20px;
    left:6%;
}

.hero-glow-2{
    width:150px;
    height:150px;
    background:#7ed957;
    bottom:20px;
    right:6%;
}

/* ========================= */
/* HERO CONTENT */
/* ========================= */

.premium-hero-content{
    position:relative;
    z-index:3;
    max-width:720px;
    animation:fadeUpHero 0.9s ease;
}

.hero-tag{
    display:inline-block;
    padding:8px 18px;
    background:#dff5df;
    color:#056d05;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    margin-bottom:12px;
    box-shadow:0 6px 14px rgba(0,0,0,0.04);
}

.premium-hero-content h1{
    font-size:clamp(26px, 5vw, 44px);
    line-height:1.08;
    color:#111;
    font-weight:900;
    margin-bottom:12px;
    letter-spacing:-0.6px;
}

.premium-hero-content p{
    font-size:14px;
    line-height:1.7;
    color:#555;
    max-width:560px;
    margin:0 auto;
}

/* ========================= */
/* FLOATING COVERS */
/* ========================= */

.floating-cover{
    position:absolute;
    z-index:2;
}

.cover-card{
    width:100%;
    padding:10px;
    border-radius:28px;
    background:rgba(255,255,255,0.45);
    border:1px solid rgba(255,255,255,0.65);
    backdrop-filter:blur(10px);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.10),
        inset 0 1px 0 rgba(255,255,255,0.55);
}

.cover-card img{
    width:100%;
    display:block;
    border-radius:20px;
    aspect-ratio:1 / 1;
    object-fit:cover;
}

.floating-cover-left-one{
    left:4%;
    bottom:24px;
    width:110px;
    animation:floatLeftOne 5s ease-in-out infinite;
}

.floating-cover-left-two{
    left:13%;
    top:56px;
    width:90px;
    animation:floatLeftTwo 6s ease-in-out infinite;
}

.floating-cover-right-one{
    right:4%;
    bottom:24px;
    width:110px;
    animation:floatRightOne 5s ease-in-out infinite;
}

.floating-cover-right-two{
    right:13%;
    top:56px;
    width:90px;
    animation:floatRightTwo 6s ease-in-out infinite;
}

/* ========================= */
/* ANIMATIONS */
/* ========================= */

@keyframes fadeUpHero{
    from{
        opacity:0;
        transform:translateY(26px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes floatLeftOne{
    0%,100%{
        transform:rotate(-14deg) translateY(0px);
    }
    50%{
        transform:rotate(-10deg) translateY(-12px);
    }
}

@keyframes floatLeftTwo{
    0%,100%{
        transform:rotate(-8deg) translateY(0px);
    }
    50%{
        transform:rotate(-4deg) translateY(10px);
    }
}

@keyframes floatRightOne{
    0%,100%{
        transform:rotate(14deg) translateY(0px);
    }
    50%{
        transform:rotate(10deg) translateY(-12px);
    }
}

@keyframes floatRightTwo{
    0%,100%{
        transform:rotate(8deg) translateY(0px);
    }
    50%{
        transform:rotate(4deg) translateY(10px);
    }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){
    .premium-hero{
        min-height:340px;
        padding:32px 5% 72px;
    }

    .floating-cover-left-one,
    .floating-cover-right-one{
        width:92px;
    }

    .floating-cover-left-two,
    .floating-cover-right-two{
        width:74px;
    }

    .floating-cover-left-two{
        left:11%;
    }

    .floating-cover-right-two{
        right:11%;
    }
}

@media(max-width:768px){
    .breadcrumb-section{
        padding:10px 20px;
    }

    .premium-hero{
        min-height:300px;
        padding:28px 20px 64px;
    }

    .premium-hero-content h1{
        font-size:clamp(24px, 6vw, 34px);
    }

    .premium-hero-content p{
        font-size:13px;
        max-width:500px;
    }

    .floating-cover-left-one,
    .floating-cover-right-one{
        width:74px;
        bottom:16px;
    }

    .floating-cover-left-two,
    .floating-cover-right-two{
        width:58px;
        top:70px;
    }

    .floating-cover-left-two{
        left:9%;
    }

    .floating-cover-right-two{
        right:9%;
    }
}

@media(max-width:576px){
    .premium-hero{
        min-height:280px;
        padding:24px 16px 54px;
    }

    .hero-tag{
        font-size:11px;
        padding:7px 15px;
    }

    .premium-hero-content h1{
        font-size:24px;
    }

    .premium-hero-content p{
        font-size:13px;
        line-height:1.6;
        max-width:100%;
    }

    .floating-cover-left-one,
    .floating-cover-right-one{
        width:58px;
        bottom:12px;
    }

    .floating-cover-left-two,
    .floating-cover-right-two{
        width:46px;
        top:82px;
    }

    .floating-cover-left-one{
        left:2%;
    }

    .floating-cover-right-one{
        right:2%;
    }

    .floating-cover-left-two{
        left:8%;
    }

    .floating-cover-right-two{
        right:8%;
    }

    .cover-card{
        padding:6px;
        border-radius:18px;
    }

    .cover-card img{
        border-radius:12px;
    }
}

/* ========================= */
/* PRODUCTS LISTING SECTION */
/* ========================= */

.covers-listing-section{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:30px;
    padding:60px 5%;
    background:#f9fbf8;
}

/* ========================= */
/* FILTER */
/* ========================= */

.filter-box{
    background:rgba(255,255,255,0.78);
    border:1px solid rgba(5,109,5,0.08);
    border-radius:26px;
    padding:24px 20px;
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
    position:sticky;
    top:95px;
    backdrop-filter:blur(8px);
}

.filter-box h2{
    font-size:22px;
    color:#111;
    margin-bottom:18px;
    font-weight:800;
}

.filter-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:16px;
}

.filter-action-btn{
    border:none;
    background:#fff;
    color:#056d05;
    padding:12px 14px;
    border-radius:14px;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 6px 18px rgba(0,0,0,0.04);
    transition:0.3s ease;
}

.filter-action-btn:hover,
.filter-action-btn.active{
    background:linear-gradient(135deg, #0f9b0f, #056d05);
    color:#fff;
}

.clear-btn{
    color:#333;
    background:#f4f4f4;
}

.filter-options{
    display:flex;
    flex-direction:column;
    gap:12px;
    max-height:392px;
    overflow-y:auto;
    padding-right:6px;
}

.filter-options::-webkit-scrollbar{
    width:6px;
}

.filter-options::-webkit-scrollbar-thumb{
    background:#cfe4cf;
    border-radius:20px;
}

.filter-btn{
    width:100%;
    border:none;
    background:#fff;
    color:#333;
    text-align:left;
    padding:14px 16px;
    border-radius:16px;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
    transition:0.3s ease;
    box-shadow:0 6px 18px rgba(0,0,0,0.04);
}

.filter-btn:hover,
.filter-btn.active{
    background:linear-gradient(135deg, #0f9b0f, #056d05);
    color:#fff;
    transform:translateX(4px);
}

/* ========================= */
/* GRID */
/* ========================= */

.covers-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
}

.cover-product-card{
    display:block;
    text-decoration:none;
    background:linear-gradient(180deg, #ffffff, #f7fbf6);
    border:1px solid rgba(5,109,5,0.08);
    border-radius:26px;
    padding:24px 22px;
    box-shadow:0 14px 35px rgba(0,0,0,0.06);
    transition:0.35s ease;
    position:relative;
    overflow:hidden;
}

.cover-product-card::before{
    content:"";
    position:absolute;
    top:-40px;
    right:-40px;
    width:120px;
    height:120px;
    background:radial-gradient(circle, rgba(15,155,15,0.12), transparent 70%);
    border-radius:50%;
}

.cover-product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,0.10);
}

.cover-badge{
    display:inline-block;
    padding:7px 14px;
    font-size:11px;
    font-weight:700;
    color:#056d05;
    background:#e7f7e7;
    border-radius:30px;
    margin-bottom:14px;
}

.cover-product-card h3{
    font-size:22px;
    line-height:1.25;
    color:#111;
    margin-bottom:12px;
    font-weight:800;
}

.cover-product-card p{
    font-size:14px;
    line-height:1.7;
    color:#666;
}

/* ========================= */
/* PAGINATION */
/* ========================= */

.pagination{
    margin-top:30px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
}

.pagination button{
    border:none;
    min-width:42px;
    height:42px;
    border-radius:12px;
    background:#fff;
    color:#056d05;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 6px 18px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.pagination button.active,
.pagination button:hover{
    background:linear-gradient(135deg, #0f9b0f, #056d05);
    color:#fff;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1200px){
    .covers-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:992px){
    .covers-listing-section{
        grid-template-columns:1fr;
    }

    .filter-box{
        position:static;
    }
}

@media(max-width:768px){
    .covers-listing-section{
        padding:45px 20px;
    }

    .filter-actions{
        grid-template-columns:1fr;
    }

    .covers-grid{
        grid-template-columns:1fr;
    }

    .filter-box h2{
        font-size:20px;
    }

    .cover-product-card h3{
        font-size:20px;
    }
}