/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.2.1.1735727514
Updated: 2025-01-01 12:31:54

*/

html {
    min-height: 100%;
    display: grid;
    grid-template-rows: 1fr;

}

body {
    display: flex;
    flex-direction: column;
}
header, footer {
    flex: 0 0 auto;
}

main {
    flex: 1 0 auto;
}

@media (min-width: 1281px) {
    .page-header .entry-title,.site-footer .footer-inner,.site-footer:not(.dynamic-footer),.site-header .header-inner,.site-header:not(.dynamic-header),body:not([class*=elementor-page-]) .site-main {
        max-width:1300px
    }
}

.page-header {
    padding: 60px 0 30px;
}

.archive-container {
    padding: 20px;
    max-width: 1040px;
    margin: 0 auto;
}

.archive-header h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.archive-content ul {
    list-style: none;
    padding: 0;
}

.archive-content li {
    margin-bottom: 15px;
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.archive-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.archive-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.archive-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.archive-details {
    margin-top: 10px;
}

.archive-title {
    font-size: 1.5em;
    margin: 0 0 10px;
}

.archive-excerpt {
    font-size: 1em;
    color: #555;
    margin: 0 0 15px;
}

.read-more {
    display: inline-block;
    padding: 10px 15px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
}

.read-more:hover {
    background-color: #005a87;
}




.page-content .posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
}

.page-content .posts .post {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-content .posts .post .post-thumbnail {
    flex: 0 0 70%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    overflow: hidden;
}

.page-content .posts .post img {
    width: 100%;
    height: auto;
    border-end-end-radius: 0;
    transform: scale(1) rotate(0deg);
    transition: all .8s;
}

.page-content .posts .post .entry-title {
    flex: 0 0 30%;
    font-size: 2em;
    margin: 0 0 10px;
    padding: .5rem 1rem 0;
}

.page-content .posts .post:hover img {
    transform: scale(1.15) rotate(5deg);
}

/** poducts page */

.page-content.product article {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    padding: 2.5rem 0 1.5rem;
}

.page-content.product article .image-wrape {
    flex: 1 0 40%;
}

.page-content.product article .image-wrape img {
    max-width: 500px;
}

 .page-content.product article .entry-content {
    flex: 1 0 48%;
}

.page-content.product article .entry-footer {
    flex: 1 0 100%;
}


.page-content.product article .entry-content .entry-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.page-content.product article .entry-content .content {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.accordion {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    max-width: 600px;
}

.accordion-toggle {
    width: 100%;
    color: #fff;
    padding: 15px !important;
    border: none !important;
    font-size: 1.2rem !important;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
}

.accordion-toggle > * {
    color: #fff !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: -2px !important;
    font-size: 2rem !important;
    margin: 0 !important;

}

.accordion-toggle:hover {
    background-color: #005bb5;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    background-color: #f9f9f9;
    padding: 0 15px;
}

.accordion-content p {
    margin: 15px 0;
}

