* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*==================================
        COMPONENTS HERO
==================================*/

.components-hero {

    padding: 120px 0 90px;
    background: #F8FBFF;

}

.components-hero-container {

    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

}

.components-content {

    flex: 1;

}

.components-content span {

    color: #2563EB;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;

}

.components-content h1 {

    margin: 22px 0;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    font-family: 'Nunito', sans-serif;

}

.components-content h1 span {

    color: #2563EB;

}

.components-content p {

    font-size: 20px;
    line-height: 1.8;
    color: #64748B;
    margin-bottom: 40px;
    font-family: 'Nunito', sans-serif;

}

.components-buttons {

    display: flex;
    gap: 20px;
    margin-bottom: 50px;

}

.components-buttons .primary-btn {

    padding: 16px 36px;
    background: #2563EB;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: .3s;
    font-family: 'Nunito', sans-serif;

}

.components-buttons .primary-btn:hover {

    background: #1D4ED8;

}

.components-buttons .secondary-btn {

    padding: 16px 36px;
    border: 2px solid #2563EB;
    color: #2563EB;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: .3s;
    font-family: 'Nunito', sans-serif;

}

.components-buttons .secondary-btn:hover {

    background: #2563EB;
    color: #fff;

}

.components-stats {

    display: flex;
    gap: 60px;

}

.components-stats h3 {

    font-size: 34px;
    color: #2563EB;
    margin-bottom: 8px;
    font-family: 'Nunito', sans-serif;

}

.components-stats span {

    color: #64748B;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;

}

.components-image {

    flex: 1;
    text-align: right;

}

.components-image img {

    width: 100%;
    max-width: 620px;
    border-radius: 20px;
}

@media(max-width:1200px) {

    .components-hero-container {

        width: calc(100% - 80px);

    }

}

@media(max-width:992px) {

    .components-hero {

        padding: 100px 0 80px;

    }

    .components-hero-container {

        width: calc(100% - 40px);
        flex-direction: column;
        text-align: center;

    }

    .components-content h1 {

        font-size: 42px;

    }

    .components-content p {

        font-size: 18px;

    }

    .components-buttons {

        justify-content: center;
        flex-wrap: wrap;

    }

    .components-stats {

        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;

    }

    .components-image {

        text-align: center;

    }

}

@media(max-width:768px) {

    .components-hero {

        padding: 80px 0 70px;

    }

    .components-content h1 {

        font-size: 34px;

    }

    .components-content p {

        font-size: 16px;

    }

    .components-buttons {

        flex-direction: column;

    }

    .components-buttons .primary-btn,
    .components-buttons .secondary-btn {

        width: 100%;
        text-align: center;

    }

    .components-stats {

        flex-direction: column;
        gap: 25px;

    }

}

/*==================================
        FILTER BAR
==================================*/

.electronics-filter {

    width: 100%;
    padding: 40px 0;
    background: #ffffff;

}

.filter-container {

    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;

}

.filter-left span {

    font-size: 18px;
    font-weight: 700;
    color: #111827;
    font-family: 'Nunito', sans-serif;

}

.filter-right {

    display: flex;
    gap: 18px;
    flex-wrap: wrap;

}

.filter-right select {

    min-width: 180px;
    height: 50px;

    padding: 0 18px;

    border: 1px solid #D1D5DB;

    border-radius: 10px;

    background: #fff;

    font-size: 16px;

    color: #374151;

    font-family: 'Nunito', sans-serif;

    cursor: pointer;

    transition: .3s;

}

.filter-right select:hover {

    border-color: #2563EB;

}

.filter-right select:focus {

    outline: none;

    border-color: #2563EB;

    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);

}

@media(max-width:992px) {

    .filter-container {

        width: calc(100% - 40px);

        flex-direction: column;
        align-items: flex-start;

    }

    .filter-right {

        width: 100%;

        flex-direction: column;

    }

    .filter-right select {

        width: 100%;

    }

}

/*==================================
        PAGINATION
==================================*/

.pagination-section {

    padding: 20px 0 100px;
    background: #F8FBFF;

}

.pagination-container {

    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

}

.page-btn {

    width: 48px;
    height: 48px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #E5E7EB;

    border-radius: 12px;

    text-decoration: none;

    background: #fff;

    color: #374151;

    font-weight: 700;

    transition: .3s;

    font-family: 'Nunito', sans-serif;

}

.page-btn:hover {

    background: #2563EB;
    color: #fff;
    border-color: #2563EB;

}

.page-btn.active {

    background: #2563EB;
    color: #fff;
    border-color: #2563EB;

}

.page-btn.disabled {

    pointer-events: none;
    opacity: .45;

}

.dots {

    font-size: 20px;
    color: #6B7280;
    padding: 0 6px;

}

@media(max-width:768px) {

    .pagination-section {

        padding: 10px 0 70px;

    }

    .pagination-container {

        width: calc(100% - 40px);

        gap: 8px;

    }

    .page-btn {

        width: 42px;
        height: 42px;

        font-size: 15px;

    }

}

/*==================================
        COMPONENTS PRODUCTS
==================================*/

.components-products{

    width:100%;
    padding:100px 0;
    background:#F8FBFF;

}

.products-container{

    width:calc(100% - 240px);
    max-width:1400px;
    margin:auto;

}

.products-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

/*==================================
        PRODUCT CARD
==================================*/

.product-card{

    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    position:relative;

    border:1px solid #E5E7EB;

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.10);

}

/*==================================
        PRODUCT BADGE
==================================*/

.product-badge{

    position:absolute;

    top:18px;
    left:18px;

    background:#2563EB;
    color:#ffffff;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;
    font-weight:700;

    font-family:'Nunito',sans-serif;

    z-index:2;

}

.product-badge.bestseller{

    background:#F97316;

}

.product-badge.new{

    background:#10B981;

}

.product-badge.popular{

    background:#8B5CF6;

}

/*==================================
        PRODUCT IMAGE
==================================*/

.product-card img{

    width:100%;
    height:240px;

    object-fit:contain;

    padding:30px;

    background:#ffffff;

    transition:.35s;

}

.product-card:hover img{

    transform:scale(1.05);

}

/*==================================
        PRODUCT CONTENT
==================================*/

.product-content{

    padding:24px;

}

.product-content h3{

    font-size:22px;
    font-weight:800;

    color:#111827;

    line-height:1.4;

    margin-bottom:12px;

    font-family:'Nunito',sans-serif;

}

.product-content p{

    font-size:16px;
    line-height:1.8;

    color:#64748B;

    margin-bottom:18px;

    font-family:'Nunito',sans-serif;

}

/*==================================
        PRODUCT RATING
==================================*/

.product-rating{

    color:#F59E0B;

    font-size:16px;

    margin-bottom:18px;

    font-family:'Nunito',sans-serif;

}

.product-rating span{

    color:#64748B;

    font-size:15px;

    margin-left:8px;

}

/*==================================
        PRICE
==================================*/

.product-price{

    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:25px;

    font-size:30px;
    font-weight:800;

    color:#111827;

    font-family:'Nunito',sans-serif;

}

.product-price span{

    color:#94A3B8;

    font-size:18px;
    font-weight:600;

    text-decoration:line-through;

}

/*==================================
        BUTTONS
==================================*/

.product-buttons{

    display:flex;
    gap:12px;

}

.details-btn{

    flex:1;

    text-align:center;

    padding:14px;

    text-decoration:none;

    border-radius:10px;

    border:2px solid #2563EB;

    color:#2563EB;

    font-weight:700;

    transition:.3s;

    font-family:'Nunito',sans-serif;

}

.details-btn:hover{

    background:#2563EB;

    color:#ffffff;

}

.cart-btn{

    flex:1;

    text-align:center;

    padding:14px;

    text-decoration:none;

    border-radius:10px;

    background:#2563EB;

    color:#ffffff;

    font-weight:700;

    transition:.3s;

    font-family:'Nunito',sans-serif;

}

.cart-btn:hover{

    background:#1D4ED8;

}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:1400px){

    .products-container{

        width:calc(100% - 120px);

    }

}

@media(max-width:1200px){

    .products-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:992px){

    .components-products{

        padding:80px 0;

    }

    .products-container{

        width:calc(100% - 40px);

    }

    .products-grid{

        grid-template-columns:repeat(2,1fr);

        gap:25px;

    }

    .product-card img{

        height:220px;

    }

    .product-content h3{

        font-size:20px;

    }

}

@media(max-width:768px){

    .products-grid{

        grid-template-columns:1fr;

    }

    .product-buttons{

        flex-direction:column;

    }

    .details-btn,
    .cart-btn{

        width:100%;

    }

    .product-card img{

        height:210px;

        padding:25px;

    }

}

@media(max-width:480px){

    .components-products{

        padding:60px 0;

    }

    .product-content{

        padding:20px;

    }

    .product-content h3{

        font-size:18px;

    }

    .product-content p{

        font-size:15px;

    }

    .product-price{

        font-size:26px;

    }

    .product-price span{

        font-size:16px;

    }

}

/*==================================
    WHY CHOOSE OUR COMPONENTS
==================================*/

.components-features{

    width:100%;
    padding:100px 0;
    background:#ffffff;

}

.components-features-container{

    width:calc(100% - 240px);
    max-width:1400px;
    margin:auto;

}

.components-features-heading{

    text-align:center;
    margin-bottom:70px;

}

.components-features-heading span{

    display:block;

    color:#2563EB;

    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:15px;

    font-family:'Nunito',sans-serif;

}

.components-features-heading h2{

    font-size:48px;
    font-weight:800;

    color:#111827;

    line-height:1.2;

    margin-bottom:20px;

    font-family:'Nunito',sans-serif;

}

.components-features-heading h2 span{

    display:inline;
    color:#2563EB;

}

.components-features-heading p{

    max-width:760px;
    margin:auto;

    color:#64748B;

    font-size:18px;
    line-height:1.8;

    font-family:'Nunito',sans-serif;

}

.components-features-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.components-feature-card{

    background:#F8FBFF;

    border:1px solid #E5E7EB;

    border-radius:18px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.components-feature-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(37,99,235,.12);

}

.components-feature-card img{

    width:90px;
    height:90px;

    object-fit:contain;

    margin-bottom:25px;

}

.components-feature-card h3{

    font-size:24px;
    font-weight:800;

    color:#111827;

    margin-bottom:15px;

    font-family:'Nunito',sans-serif;

}

.components-feature-card p{

    font-size:16px;

    color:#64748B;

    line-height:1.8;

    font-family:'Nunito',sans-serif;

}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:1200px){

    .components-features-container{

        width:calc(100% - 80px);

    }

}

@media(max-width:992px){

    .components-features{

        padding:80px 0;

    }

    .components-features-container{

        width:calc(100% - 40px);

    }

    .components-features-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .components-features-heading h2{

        font-size:40px;

    }

}

@media(max-width:768px){

    .components-features{

        padding:70px 0;

    }

    .components-features-grid{

        grid-template-columns:1fr;

    }

    .components-features-heading h2{

        font-size:32px;

    }

    .components-features-heading p{

        font-size:16px;

    }

    .components-feature-card{

        padding:30px 25px;

    }

}

/*==================================
            FAQ
==================================*/

.faq{

    padding:100px 0;
    background:#F8FBFF;

}

.faq-container{

    width:calc(100% - 240px);
    max-width:1100px;
    margin:auto;

}

.faq-heading{

    text-align:center;
    margin-bottom:60px;

}

.faq-heading span{

    display:block;

    color:#2563EB;

    font-size:15px;
    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

    font-family:'Nunito',sans-serif;

}

.faq-heading h2{

    font-size:48px;

    font-weight:800;

    color:#111827;

    margin-bottom:20px;

    line-height:1.2;

    font-family:'Nunito',sans-serif;

}

.faq-heading h2 span{

    display:inline;

    color:#2563EB;

}

.faq-heading p{

    max-width:700px;

    margin:auto;

    color:#64748B;

    font-size:18px;

    line-height:1.8;

    font-family:'Nunito',sans-serif;

}

.faq-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.faq-item{

    background:#ffffff;

    border:1px solid #E5E7EB;

    border-radius:16px;

    overflow:hidden;

    transition:.3s;

}

.faq-item.active{

    border-color:#2563EB;

}

.faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 30px;

    cursor:pointer;

}

.faq-question h3{

    font-size:20px;

    font-weight:700;

    color:#111827;

    font-family:'Nunito',sans-serif;

}

.faq-question i{

    color:#2563EB;

    transition:.3s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 30px 25px;

    color:#64748B;

    line-height:1.8;

    font-size:16px;

    font-family:'Nunito',sans-serif;

}

.faq-item.active .faq-answer{

    max-height:220px;

}

.faq-item.active i{

    transform:rotate(180deg);

}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:1200px){

    .faq-container{

        width:calc(100% - 80px);

    }

}

@media(max-width:992px){

    .faq{

        padding:80px 0;

    }

    .faq-container{

        width:calc(100% - 40px);

    }

    .faq-heading h2{

        font-size:40px;

    }

}

@media(max-width:768px){

    .faq{

        padding:70px 0;

    }

    .faq-heading{

        margin-bottom:45px;

    }

    .faq-heading h2{

        font-size:32px;

    }

    .faq-heading p{

        font-size:16px;

    }

    .faq-question{

        padding:20px;

    }

    .faq-question h3{

        font-size:17px;

    }

    .faq-answer p{

        padding:0 20px 20px;

        font-size:15px;

    }

}

/*==================================
        CATEGORY CTA
==================================*/

.category-cta{

    padding:100px 0;
    background:linear-gradient(135deg,#2563EB,#1D4ED8);

}

.category-cta-container{

    width:calc(100% - 240px);
    max-width:900px;
    margin:auto;
    text-align:center;

}

.category-cta-container span{

    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,.15);
    border-radius:30px;

    color:#fff;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

    font-family:'Nunito',sans-serif;

}

.category-cta-container h2{

    margin:28px 0 20px;

    font-size:52px;
    font-weight:800;

    line-height:1.2;

    color:#ffffff;

    font-family:'Nunito',sans-serif;

}

.category-cta-container h2 span{

    color:#BFDBFE;

}

.category-cta-container p{

    max-width:700px;
    margin:0 auto 45px;

    color:#DBEAFE;

    font-size:20px;
    line-height:1.8;

    font-family:'Nunito',sans-serif;

}

.category-cta-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

.cta-primary-btn{

    padding:18px 40px;

    background:#ffffff;

    color:#2563EB;

    text-decoration:none;

    border-radius:12px;

    font-weight:700;

    transition:.3s;

    font-family:'Nunito',sans-serif;

}

.cta-primary-btn:hover{

    transform:translateY(-4px);

}

.cta-secondary-btn{

    padding:18px 40px;

    border:2px solid #ffffff;

    color:#ffffff;

    text-decoration:none;

    border-radius:12px;

    font-weight:700;

    transition:.3s;

    font-family:'Nunito',sans-serif;

}

.cta-secondary-btn:hover{

    background:#ffffff;

    color:#2563EB;

}

@media(max-width:992px){

    .category-cta-container{

        width:calc(100% - 40px);

    }

    .category-cta-container h2{

        font-size:40px;

    }

}

@media(max-width:768px){

    .category-cta{

        padding:70px 0;

    }

    .category-cta-container h2{

        font-size:32px;

    }

    .category-cta-container p{

        font-size:16px;

    }

    .category-cta-buttons{

        flex-direction:column;

    }

    .cta-primary-btn,
    .cta-secondary-btn{

        width:100%;
        text-align:center;

    }

}