@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
}

section {
    margin-bottom: 60px;
}

section:last-child {
    margin-bottom: 0;
}



.premium-accessories-1 {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 50px 20px;
}

.accessories-heading-1 {
    max-width: 1051px;
    margin: 0 auto 30px;
    text-align: center;
}

.accessories-heading-1 img {
    display: block;
    margin: 0 auto 15px;
}

.accessories-heading-1 h2 {
    font-size: 42px;
    line-height: 100%;
    font-weight: 400;
    color: #18171C;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: 'Lora', sans-serif;
}

.accessories-heading-1 p {
    max-width: 900px;
    margin: auto;
    font-size: 14px;
    line-height: 27px;
    color: #1C1614;
    font-family: 'Bricolage Grotesque', sans-serif;
}


@media(max-width:1024px) {
    .premium-accessories-1 {
        padding: 70px 20px;
    }

    .accessories-heading-1 {
        margin-bottom: 45px;
    }

    .accessories-heading-1 h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .accessories-heading-1 p {
        font-size: 15px;
        line-height: 24px;
    }


}

@media(max-width:768px) {
    .premium-accessories-1 {
        padding: 60px 15px;
    }

    .accessories-heading-1 {
        margin-bottom: 35px;
    }

    .accessories-heading-1 h2 {
        font-size: 28px;
        line-height: 38px;
    }


}

@media(max-width:576px) {
    .premium-accessories-1 {
        padding: 50px 15px;
    }

    .accessories-heading-1 {
        margin-bottom: 30px;
    }

    .accessories-heading-1 img {
        width: 50px;
    }

    .accessories-heading-1 h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .accessories-heading-1 p {
        font-size: 14px;
        line-height: 24px;
    }


}

@media(max-width:400px) {
    .premium-accessories-1 {
        padding: 40px 10px;
    }

    .accessories-heading-1 h2 {
        font-size: 18px;
        line-height: 28px;
    }


}


.temple-section {
    width: 100%;


}

.temple-container {
    width: 100%;
    max-width: 1321px;
    margin: 0 auto;
}



.temple-heading {
    width: 100%;
    margin-bottom: 32px;
}

.temple-heading h2 {
    font-family: "Lora", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    color: #18171C;
    margin: 0;
}



.temple-banner {
    width: 100%;
    overflow: hidden;
}

.temple-banner img {
    width: 100%;
    height: auto;
    display: block;
}



@media (max-width:1321px) {

    .temple-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .temple-container {
        max-width: 100%;
    }

    .temple-banner img {
        width: 100%;
        height: auto;
    }

}


.temple-specs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #D0C09E;
    border-top: 1px solid #D0C09E;
    background: #F8F5F1;
}


.spec-column:last-child {
    border-right: none;
}


.spec-item {
    min-height: 86px;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1px solid #E8E2DB; */
}



.spec-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-left img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.spec-left span {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #51422E;
}



.spec-right h4 {
    margin: 0;
    font-family: "Bricolage Grotesque", serif;
    font-size: 30px;
    font-weight: 400;
    color: #18171C;
    line-height: 1;
}



@media(max-width:1024px) {

    .spec-item {
        padding: 20px;
    }

    .spec-left span {
        font-size: 11px;
    }

    .spec-right h4 {
        font-size: 24px;
    }

}



@media (max-width:768px) {

    /* .temple-section{
        padding:60px 15px;
    } */

    .temple-heading {
        text-align: center;
        margin-bottom: 25px;
    }

    .temple-heading h2 {
        font-size: 28px;
    }

    /* Banner */

    .temple-banner {
        width: 100%;
        margin-bottom: 0;
    }

    .temple-banner img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Specs */

    .temple-specs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border-top: none;
    }

    .spec-column {
        display: contents;
    }

    .spec-item {
        min-height: 78px;
        padding: 18px;
        border-bottom: 1px solid #DDD7CF;
    }

    /* Vertical Divider */
    .spec-item:nth-child(odd) {
        border-right: 1px solid #DDD7CF;
    }

    .spec-left {
        gap: 10px;
    }

    .spec-left img {
        width: 26px;
        height: 26px;
    }

    .spec-left span {
        font-size: 11px;
    }

    .spec-right h4 {
        font-size: 22px;
    }

}



@media (max-width:480px) {

    /* .temple-section{
        padding:50px 12px;
    } */

    .temple-heading {
        text-align: center;
        margin-bottom: 20px;
    }

    .temple-heading h2 {
        font-size: 18px;
        line-height: 1.4;
    }

    .temple-banner img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* 2 Columns */
    .temple-specs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border-top: none;
    }

    /* Wrapper remove */
    .spec-column {
        display: contents;
    }

    .spec-item {
        min-height: 70px;
        padding: 5px;
        border-bottom: 1px solid #DDD7CF;
    }

    /* Left column divider */
    .spec-item:nth-child(odd) {
        border-right: 1px solid #DDD7CF;
    }

    .spec-left {
        gap: 8px;
    }

    .spec-left img {
        width: 18px;
        height: 18px;
    }

    .spec-left span {
        font-size: 9px;
    }

    .spec-right h4 {
        font-size: 13px;
    }

}




.animate-heading {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-text {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-image {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.animate-image.visible {
    opacity: 1;
    transform: scale(1);
}

.animate-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 40%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.3) 60%,
            transparent 100%);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 1;
}

.animate-btn:hover::before {
    left: 100%;
}

.animate-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.animate-btn.experts-btn:hover {
    background: #3E3128 !important;
    border-color: #3E3128 !important;
    color: #fff !important;
}

.animate-btn.footer-social a:hover {
    background: #fff !important;
    color: #2f1e18 !important;
}

.footer-social .animate-btn::before {
    display: none;
}

.logo img:hover,
.footer-logo img:hover,
.badge img:hover {
    transform: none !important;
    filter: none !important;
}





.experts-bg .animate-image {
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.experts-bg .animate-image.visible {
    opacity: 1;
    transform: scale(1);
}



* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img.animate-image,
video.animate-image,
iframe.animate-image {
    display: block;
}

