/* ==========================================================
   COA PAGE
========================================================== */

.pv-coa-page{
    background:#f6f6f3;
}

/* ==========================================================
   HERO
========================================================== */

.pv-coa-hero{
    position:relative;
    overflow:hidden;

    padding:165px 0 80px;
    text-align:left;

    background:url("../images/coas-hero-image.jpg") center center / cover no-repeat;
}

.pv-coa-hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        to right,
        rgba(247,250,247,.82) 0%,
        rgba(247,250,247,.45) 35%,
        rgba(24,52,45,.18) 100%
    );

    z-index:0;
}

.pv-coa-hero > *{
    position:relative;
    z-index:1;
}

/*=====================================
  Hero Icon
=====================================*/

.pv-coa-icon{
    display:flex;
    justify-content:flex-start;
    margin-bottom:35px;
}

.pv-coa-icon-circle{
    width:72px;
    height:72px;
    border:1.5px solid #d8a537;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
}

.pv-coa-icon-circle svg{
    width:28px;
    height:28px;
    color:#d8a537;
}

.pv-coa-title{
    font-size:58px;
    line-height:1.1;
    font-weight:800;
    color:#18342d;
    margin-bottom:24px;
}

.pv-coa-title span{
    display:block;
}

.pv-coa-line{
    width:90px;
    height:2px;
    background:#d8a537;
    margin:0 0 30px;
}

.pv-coa-description{
    max-width:600px;
    margin:0 0 40px;
    font-size:15px;
    line-height:1.8;
    color:#2a332e;
}

.pv-coa-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 26px;
    border-radius:999px;
    background:#DDB049;
    color:#12301E;
    text-decoration:none;
    font-weight:400;
    transition:.3s;
    font-size:14px;
}

.pv-coa-btn:hover{
    background:#18342d;
    color:#fff;
}

/* ==========================================================
   CERTIFICATES
========================================================== */

.pv-coa-certificates{
    padding:70px 0 120px;
}

.pv-coa-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

/* ==========================================================
   CARD
========================================================== */

.pv-coa-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    border:1px solid #ececec;
    transition:.35s ease;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.pv-coa-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);
}

/* ==========================================================
   IMAGE
========================================================== */

.pv-coa-image{
    padding:22px;
    background:#f7f7f7;
}

.pv-coa-image img{
    width:100%;
    display:block;
    background:#fff;
    height:auto;
}

/* ==========================================================
   CONTENT
========================================================== */

.pv-coa-card-content{
    padding:32px;
}

.pv-coa-card-content h3{
    font-size:15px;
    font-weight:700;
    color:#18342d;
    line-height:1.2;
    margin:0 0 2px;
}

.pv-coa-lot{
    font-size:10px;
    font-weight:500;
    color:#d8a537;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:14px;
}

/* ==========================================================
   BUTTON
========================================================== */

.pv-coa-card-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:10px 13px;
    border-radius:999px;
    background:#fff;
    border:1px solid #d6d6d6;
    color:#18342d;
    text-decoration:none;
    font-size:10px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    transition:.3s;
}

.pv-coa-card-btn:hover{
    background:#DDB049;
    color:#fff;
    border-color:#DDB049;
}

.pv-coa-card-btn span{
    transition:.3s;
}

.pv-coa-card-btn:hover span{
    transform:translateX(4px);
}

.pv-no-certificates{
    grid-column:1/-1;
    text-align:center;
    font-size:22px;
    color:#777;
    padding:80px 0;
}

/* ==========================================================
   COA GALLERY MODAL
========================================================== */

.pv-coa-modal{

    position:fixed;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,.82);

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    z-index:999999;

}

.pv-coa-modal.active{

    opacity:1;
    visibility:visible;

}

.pv-coa-overlay{

    position:absolute;
    inset:0;

}

.pv-coa-modal-content{

    position:relative;

    width:min(1100px,95vw);
    height:90vh;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    border-radius:24px;

}

.pv-coa-image-wrap{

    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px;

}

#pv-coa-image{

    max-width:100%;
    max-height:100%;

    object-fit:contain;

    border-radius:12px;

    background:#fff;

    box-shadow:0 25px 70px rgba(0,0,0,.30);

    transition:.3s ease;

}

.pv-coa-close{

    position:absolute;

    top:20px;
    right:20px;

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;

    border-radius:50%;

    background:#ffffff;

    color:#18342d;

    font-size:30px;

    cursor:pointer;

    transition:.3s;

    z-index:100;

}

.pv-coa-close:hover{

    background:#DDB049;

    color:#ffffff;

}

.pv-coa-nav{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;

    border-radius:50%;

    background:#ffffff;

    color:#18342d;

    font-size:28px;

    cursor:pointer;

    transition:.3s;

    z-index:100;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

}

.pv-coa-nav:hover{

    background:#DDB049;

    color:#ffffff;

}

.pv-coa-prev{

    left:25px;

}

.pv-coa-next{

    right:25px;

}

.pv-coa-pagination{

    position:absolute;

    bottom:25px;
    left:50%;

    transform:translateX(-50%);

    display:flex;
    align-items:center;
    gap:6px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.95);

    color:#18342d;

    font-size:14px;

    font-weight:700;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

#pv-current-page,
#pv-total-pages{

    min-width:16px;
    text-align:center;

}

.pv-coa-nav:disabled{

    opacity:.35;

    pointer-events:none;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:1200px){

    .pv-coa-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .pv-coa-modal-content{
        width:95vw;
        height:88vh;
    }

}

@media (max-width:992px){

    .pv-coa-title{
        font-size:48px;
    }

    .pv-coa-card-content{
        padding:26px;
    }

    .pv-coa-image-wrap{
        padding:25px;
    }

}

@media (max-width:768px){

    /* Hero */

    .pv-coa-hero{
        padding:70px 0 60px;
    }

    .pv-coa-title{
        font-size:38px;
    }

    .pv-coa-description{
        font-size:15px;
        line-height:1.7;
    }

    /* Grid */

    .pv-coa-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .pv-coa-card-content{
        padding:24px;
    }

    .pv-coa-card-content h3{
        font-size:18px;
    }

    .pv-coa-card-btn{
        width:100%;
    }

    /* Gallery */

    .pv-coa-modal-content{

        width:100vw;
        height:100vh;

        border-radius:0;

    }

    .pv-coa-image-wrap{

        padding:15px;

    }

    #pv-coa-image{

        max-width:100%;
        max-height:85vh;

    }

    .pv-coa-close{

        top:15px;
        right:15px;

        width:42px;
        height:42px;

        font-size:24px;

    }

    .pv-coa-nav{

        width:46px;
        height:46px;

        font-size:22px;

    }

    .pv-coa-prev{

        left:12px;

    }

    .pv-coa-next{

        right:12px;

    }

    .pv-coa-pagination{

        bottom:18px;

        padding:8px 16px;

        font-size:13px;

    }

}

@media (max-width:480px){

    .pv-coa-title{
        font-size:32px;
    }

    .pv-coa-description{
        font-size:14px;
    }

    .pv-coa-card{
        border-radius:20px;
    }

    .pv-coa-card-content{
        padding:20px;
    }

    .pv-coa-image{
        padding:15px;
    }

    .pv-coa-nav{

        width:40px;
        height:40px;

        font-size:18px;

    }

    .pv-coa-prev{

        left:8px;

    }

    .pv-coa-next{

        right:8px;

    }

    .pv-coa-close{

        width:40px;
        height:40px;

        font-size:22px;

    }

    .pv-coa-pagination{

        bottom:12px;

        font-size:12px;

        padding:8px 14px;

    }

}

/* ==========================================================
   UTILITIES
========================================================== */

body.pv-coa-open{

    overflow:hidden;

}

.pv-hidden{

    display:none !important;

}