/*
Theme Name: Pejic Theme
Description: Custom WordPress theme for Pejic website
Author: Your Name
Version: 1.0
Text Domain: pejic
*/

@media (max-width: 680px) {
    h1 {
        font-size: 50px;
    }
    
    h2 {
        font-size: 40px;
    }
    
    p {
        font-size: 16px;
    }
}

/* ==========================================================================
   Additional Styles
   ========================================================================== */

/* Page Title Area */
.page-title-area,
.post-title-area,
.archive-title-area,
.search-title-area {
    padding: 200px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

.page-title-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.page-title-content,
.post-title-content {
    position: relative;
    z-index: 2;
}

.page-title,
.post-title,
.archive-title,
.search-title {
    color: #ffffff;
    font-size: 64px;
    margin-bottom: 20px;
}

.breadcrumbs {
    color: #ffffff;
    margin-top: 20px;
}

.breadcrumbs a {
    color: #ffffff;
    opacity: 0.8;
}

.breadcrumbs a:hover {
    opacity: 1;
    color: #d3a863;
}

/* Post Meta */
.post-meta,
.post-meta-top {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 14px;
    color: #999;
}

.quick-view-btn {
        display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #6f392a;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s 
ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    justify-content: center;
}

.quick-view-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.quick-view-btn:hover {
    background: #0056b3; /* tamnija plava na hover */
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

.quick-view-btn:hover i {
    transform: scale(1.2) rotate(10deg); /* animacija ikone */
}

.quick-view-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.quick-view-modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.5); 
}

.quick-view-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}



.post-meta-top {
    color: #ffffff;
    justify-content: center;
    margin-bottom: 20px;
}

.post-meta span,
.post-meta-top span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Blog Post Card */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-post-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-post-card .post-thumbnail {
    overflow: hidden;
}

.blog-post-card .post-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.blog-post-card .post-content {
    padding: 30px;
}

.blog-post-card .post-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-post-card .post-title a {
    color: #131313;
    transition: color 0.3s ease;
}

.blog-post-card .post-title a:hover {
    color: #d3a863;
}

.blog-post-card .post-excerpt {
    color: #666;
    line-height: 28px;
    margin-bottom: 20px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d3a863;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.read-more-link:hover {
    color: #cb9744;
}

/* Single Post */
.post-content-section,
.page-content-section {
    padding: 80px 0;
}

.post-content-wrapper,
.page-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.post-featured-image,
.post-thumbnail {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.entry-content {
    line-height: 1.8;
    color: #383838;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.entry-content p {
    margin-bottom: 25px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.entry-content blockquote {
    border-left: 4px solid #d3a863;
    padding: 20px 30px;
    margin: 30px 0;
    background: #f7f3f0;
    font-style: italic;
    font-size: 18px;
}

/* Post Tags */
.post-tags {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.post-tags a {
    display: inline-block;
    padding: 5px 15px;
    background: #f7f3f0;
    color: #666;
    font-size: 14px;
    border-radius: 20px;
    margin: 5px;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: #d3a863;
    color: #ffffff;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
    padding: 30px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.post-navigation a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #131313;
    font-weight: 600;
    transition: color 0.3s ease;
}

.post-navigation a:hover {
    color: #d3a863;
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: #f7f3f0;
    border-radius: 8px;
    margin: 60px 0;
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.author-name {
    font-size: 24px;
    margin-bottom: 10px;
}

.author-description {
    color: #666;
    line-height: 1.8;
}

/* Comments */
.comments-area {
    margin-top: 60px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 30px;
    background: #f7f3f0;
    border-radius: 8px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-body {
    line-height: 1.8;
}

.comment-reply-link {
    color: #d3a863;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.comment-reply-link:hover {
    color: #cb9744;
}

/* Search Results */
.search-results-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.search-result-item {
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-result-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.result-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.result-title a {
    color: #131313;
}

.result-title a:hover {
    color: #d3a863;
}

.result-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #999;
}

.result-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.result-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d3a863;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.result-link:hover {
    color: #cb9744;
}

/* No Results Found */
.no-posts-found,
.no-results-found,
.error-404-content {
    text-align: center;
    padding: 80px 20px;
}

.no-posts-found h2,
.no-results-found h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.no-posts-found p,
.no-results-found p {
    color: #666;
    margin-bottom: 30px;
}

/* 404 Page */
.error-404-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-title {
    font-size: 120px;
    color: #d3a863;
    margin-bottom: 20px;
}

.error-404-subtitle {
    font-size: 42px;
    margin-bottom: 20px;
}

.error-404-text {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.error-404-image {
    margin-bottom: 40px;
}

.bee-404 {
    width: 200px;
    height: auto;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

.error-404-search {
    max-width: 500px;
    margin: 0 auto 40px;
}

.error-404-button {
    margin-top: 30px;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    font-size: 16px;
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: #d3a863;
}

.search-form button[type="submit"],
.search-form input[type="submit"] {
    padding: 15px 40px;
    background: #d3a863;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button[type="submit"]:hover,
.search-form input[type="submit"]:hover {
    background: #cb9744;
}

/* Pagination */
.pagination-wrapper {
    margin: 60px 0;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 10px;
    list-style: none;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #ffffff;
    color: #131313;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: #d3a863;
    color: #ffffff;
    border-color: #d3a863;
}

.pagination .current {
    background: #d3a863;
    color: #ffffff;
    border-color: #d3a863;
}

/* Mobile Header Styles */
.header-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .header-desktop {
        display: none;
    }
    
    .header-mobile {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 15px 0;
    }
    
    #page-mobile-header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    .mobile-header-logo-link img {
        height: 34px;
        width: auto;
    }
    
    .mobile-header-opener {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #131313;
    }
    
    .mobile-header-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: #ffffff;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .mobile-header-navigation.active {
        left: 0;
    }
    
    .mobile-menu {
        padding: 20px;
    }
    
    .mobile-menu li {
        border-bottom: 1px solid #e5e5e5;
    }
    
    .mobile-menu a {
        display: block;
        padding: 15px 0;
        color: #131313;
        font-weight: 600;
    }
    
    .mobile-menu .sub-menu,
    .mobile-menu .qodef-drop-down-second {
        display: none;
        padding-left: 20px;
    }
    
    .mobile-menu .menu-item-has-children.active > .sub-menu,
    .mobile-menu .menu-item-has-children.active > .qodef-drop-down-second {
        display: block;
    }
    
    body.mobile-menu-open {
        overflow: hidden;
    }
    
    body.mobile-menu-open::before {
        content: '';
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
}

/* WooCommerce Styles */
.woocommerce-content-section {
    padding: 80px 0;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0;
    padding: 0 20px;
}

.woocommerce ul.products li.product .price {
    font-size: 22px;
    font-weight: 700;
    color: #d3a863;
    padding: 0 20px;
    margin-bottom: 15px;
}

.woocommerce ul.products li.product .button {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 15px 30px;
    background: #d3a863;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
    background: #cb9744;
}

/* Single Product */
.woocommerce div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.woocommerce div.product .woocommerce-product-gallery {
    position: relative;
}

.woocommerce div.product .woocommerce-product-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.woocommerce div.product .summary {
    padding: 20px 0;
}

.woocommerce div.product .product_title {
    font-size: 42px;
    margin-bottom: 20px;
}

.woocommerce div.product .price {
    font-size: 32px;
    font-weight: 700;
    color: #d3a863;
    margin-bottom: 30px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.woocommerce div.product form.cart {
    margin-bottom: 30px;
}

.woocommerce div.product form.cart .quantity {
    display: inline-block;
    margin-right: 15px;
}

.woocommerce div.product form.cart input.qty {
    width: 60px;
    padding: 10px;
    text-align: center;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    padding: 15px 40px;
    background: #d3a863;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: #cb9744;
}

/* Cart & Checkout */
.woocommerce-cart,
.woocommerce-checkout {
    padding: 80px 0;
}

.woocommerce table.shop_table {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.woocommerce table.shop_table th {
    background: #f7f3f0;
    font-weight: 700;
}

.woocommerce-cart-form .button,
.woocommerce .cart-collaterals .button,
.woocommerce-checkout .button {
    padding: 15px 40px;
    background: #d3a863;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-cart-form .button:hover,
.woocommerce .cart-collaterals .button:hover,
.woocommerce-checkout .button:hover {
    background: #cb9744;
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #d3a863;
}

input.error,
textarea.error,
select.error {
    border-color: #e74c3c;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #131313;
}

.form-message {
    padding: 15px 20px;
    border-radius: 4px;
    margin-top: 20px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f7f3f0;
    border-top-color: #d3a863;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Accessibility */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f7f3f0;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #131313;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Print Styles */
@media print {
    #page-header,
    #page-footer,
    #back-to-top,
    .header-mobile {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        text-decoration: underline;
    }
    
    img {
        max-width: 100% !important;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pt-60 { padding-top: 60px; }
.pt-80 { padding-top: 80px; }

.pb-20 { padding-bottom: 20px; }
.pb-40 { padding-bottom: 40px; }
.pb-60 { padding-bottom: 60px; }
.pb-80 { padding-bottom: 80px; }/*
Theme Name: Mellifera Custom
Theme URI: https://mellifera.com
Author: Your Name
Author URI: https://yoursite.com
Description: Custom Mellifera Beekeeping Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mellifera-custom
*/

/* ==========================================================================
   CSS Reset & Base Styles
   ========================================================================== */

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #383838;
    background-color: #f7f3f0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #131313;
    margin-bottom: 20px;
}

h1 {
    font-size: 136px;
    line-height: 113px;
}

h2 {
    font-size: 48px;
    line-height: 1.3;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 30px;
}

/* ==========================================================================
   Layout Structure
   ========================================================================== */

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.content-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

#page-wrapper {
    position: relative;
    overflow: hidden;
}

#page-outer {
    margin-top: -117px;
}

#page-inner {
    padding: 0;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

#page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 117px;
    background-color: rgba(255, 255, 255, 0);
    z-index: 1000;
    transition: all 0.3s ease;
}

#page-header.sticky {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#page-header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.header-logo-link {
    display: inline-block;
    height: 48px;
}

.header-logo-image {
    height: 85px!important;
    width: auto;
}

/* Navigation */
.header-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-navigation ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-navigation li {
    position: relative;
}

.header-navigation a {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #131313;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
}

.header-navigation a:hover {
    color: #d3a863;
}

/* Dropdown Menu */
.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    padding: 0;
}

.sub-menu a {
    padding: 8px 30px;
    font-size: 16px;
    font-weight: 400;
}

.sub-menu a:hover {
    background-color: #f7f3f0;
}

/* Widget Holder (Cart & Button) */
.widget-holder {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Cart Widget */
/* Cart Widget Container */
.woo-dropdown-cart {
    position: relative;
}

/* Cart Opener (Icon + Count) */
.woo-dropdown-cart-opener {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.woo-dropdown-cart-opener:hover .woo-dropdown-cart-opener-icon {
    color: #d3a863;
}

.woo-dropdown-cart-opener-icon {
    font-size: 24px;
    color: #131313;
    transition: color 0.3s ease;
}

.woo-dropdown-cart-opener-count {
    background: #d3a863;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    position: absolute;
    top: 5px;
    right: 5px;
}

/* Cart Dropdown - Initially Hidden */
.woo-dropdown-cart-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #ffffff;
    min-width: 350px;
    max-width: 400px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

/* Show Dropdown on Active Class */
.woo-dropdown-cart.active .woo-dropdown-cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mini Cart List */
.woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    max-height: 300px;
    overflow-y: auto;
}

/* Cart Item */
.woocommerce-mini-cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.woocommerce-mini-cart-item:first-child {
    padding-top: 0;
}

.woocommerce-mini-cart-item:last-child {
    border-bottom: none;
}

/* Remove Button */
.woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 10px;
    right: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-mini-cart-item .remove:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* Product Image */
.woocommerce-mini-cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Product Link */
.woocommerce-mini-cart-item > a:not(.remove) {
    display: flex;
    gap: 15px;
    flex: 1;
    color: #131313;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-mini-cart-item > a:not(.remove):hover {
    color: #d3a863;
}

/* Quantity & Price */
.woocommerce-mini-cart-item .quantity {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #666;
}

.woocommerce-mini-cart-item .quantity .woocommerce-Price-amount {
    color: #d3a863;
    font-weight: 700;
}

/* Cart Total */
.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin: 0;
    border-top: 2px solid #e5e5e5;
    font-size: 16px;
}

.woocommerce-mini-cart__total strong {
    color: #131313;
    font-weight: 700;
}

.woocommerce-mini-cart__total .woocommerce-Price-amount {
    color: #d3a863;
    font-size: 18px;
    font-weight: 700;
}

/* Cart Buttons */
.woocommerce-mini-cart__buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0 0 0;
}

.woocommerce-mini-cart__buttons .button {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.woocommerce-mini-cart__buttons .button.wc-forward {
    background: #f7f3f0;
    color: #131313;
    border: 2px solid #e5e5e5;
}

.woocommerce-mini-cart__buttons .button.wc-forward:hover {
    background: #e5e5e5;
    border-color: #d3a863;
}

.woocommerce-mini-cart__buttons .button.checkout {
    background: #d3a863;
    color: #ffffff;
    border: 2px solid #d3a863;
}

.woocommerce-mini-cart__buttons .button.checkout:hover {
    background: #cb9744;
    border-color: #cb9744;
}

/* Empty Cart Message */
.woocommerce-mini-cart__empty-message {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
}

/* Scrollbar Styling for Cart Items */
.woocommerce-mini-cart::-webkit-scrollbar {
    width: 6px;
}

.woocommerce-mini-cart::-webkit-scrollbar-track {
    background: #f7f3f0;
    border-radius: 3px;
}

.woocommerce-mini-cart::-webkit-scrollbar-thumb {
    background: #d3a863;
    border-radius: 3px;
}

.woocommerce-mini-cart::-webkit-scrollbar-thumb:hover {
    background: #cb9744;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .woo-dropdown-cart-dropdown {
        min-width: 300px;
        right: -15px;
    }
}

@media (max-width: 480px) {
    .woo-dropdown-cart-dropdown {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        border-radius: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }
}

/* Buttons */
.btn,
.qodef-button {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary,
.qodef-button.qodef-layout--filled {
    background-color: #d3a863;
    color: #ffffff;
}

.btn-primary:hover,
.qodef-button.qodef-layout--filled:hover {
    background-color: #cb9744;
}

.btn-secondary,
.qodef-button.qodef-layout--textual {
    background: transparent;
    color: #131313;
    position: relative;
}

.btn-secondary:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d3a863;
    transition: width 0.3s ease;
}

.btn-secondary:hover:after {
    width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 900px;
    background: #f7f3f0;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 117px 0 100px;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
	transform: translate(-50%, -20%);
}

.hero-grid {
	display: flex;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #131313;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 136px;
    line-height: 113px;
    font-weight: 700;
    color: #131313;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 18px;
    line-height: 30px;
    color: #383838;
    margin-bottom: 40px;
}

.hero-image-wrapper {
	position: absolute;
    transform: translate(50%, -30%);
    left: 0;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
}

/* Decorative Bees */
.bee-decoration {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-10px) translateX(5px);
    }
}

/* ==========================================================================
   Mission Section
   ========================================================================== */

.mission-section {
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-video-wrapper {
    position: relative;
}

.mission-video-image {
    width: 100%;
    border-radius: 8px;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #d3a863;
    color: #ffffff;
}

.video-play-button svg,
.video-play-button i {
    font-size: 24px;
}

.mission-content {
    padding-left: 20px;
}

.section-title {
    font-size: 48px;
    color: #131313;
    margin-bottom: 30px;
}

.mission-text {
    font-size: 18px;
    line-height: 30px;
    color: #383838;
    margin-bottom: 20px;
}

.mission-signature {
    margin-top: 40px;
    max-width: 150px;
}

/* ==========================================================================
   News Section
   ========================================================================== */

.news-section {
    padding: 80px 0;
    background: #ffffff;
}

.news-header {
    margin-bottom: 50px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-title {
    font-size: 24px;
    font-weight: 700;
    color: #131313;
    transition: color 0.3s ease;
}

.news-title:hover {
    color: #d3a863;
}

.news-excerpt {
    font-size: 16px;
    line-height: 28px;
    color: #666;
}

.news-more {
    margin-top: 40px;
    text-align: left;
}

/* ==========================================================================
   Products Section
   ========================================================================== */

.products-section {
    padding: 100px 0;
    background: #f7f3f0;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-header .section-title {
    font-size: 52px;
    margin-bottom: 20px;
}

.products-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

/* Product Card */
.product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d3a863;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 20px;
    z-index: 10;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 30px;
    text-align: center;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: #131313;
    margin-bottom: 15px;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: #d3a863;
    margin-bottom: 15px;
}

.product-description {
    font-size: 16px;
    line-height: 26px;
    color: #666;
    margin-bottom: 25px;
}

.add-to-cart-button {
    width: 100%;
    padding: 15px 30px;
    background: #d3a863;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-button:hover {
    background: #cb9744;
}

.products-grid > .product-card > .product-image-wrapper {
		padding-top: 200px!important;
	}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-image-wrapper {
    position: relative;
}

.swiper {
	overflow: visible!important;
}

.testimonial-image {
    width: 100%;
    border-radius: 8px;
}

.testimonial-quote-mark {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: #d3a863;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
}

.testimonial-content {
    padding: 20px 0;
}

.testimonial-text {
    font-size: 20px;
    line-height: 34px;
    font-style: italic;
    color: #383838;
    margin-bottom: 30px;
}

.testimonial-author-name {
    font-size: 22px;
    font-weight: 700;
    color: #131313;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author-job {
    font-size: 16px;
    color: #999;
    text-transform: lowercase;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */

.gallery-section {
    padding: 100px 0;
    background: #f7f3f0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    padding-top: 64%;
    cursor: pointer;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(211, 168, 99, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */

.newsletter-section {
    padding: 100px 0;
    background: #ffffff;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.newsletter-image-wrapper img {
    width: 100%;
    max-width: 595px;
}

.newsletter-content {
    padding-right: 40px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #d3a863;
}

.newsletter-submit {
    padding: 15px 40px;
    background: #d3a863;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background: #cb9744;
}

/* ==========================================================================
   Honey Types Section
   ========================================================================== */

.honey-types-section {
    padding: 100px 0;
    background: #f7f3f0;
}

.honey-types-header {
    text-align: center;
    margin-bottom: 60px;
}

.honey-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.honey-type-card {
    display: grid;
    grid-template-columns: 156px 1fr;
    gap: 30px;
    align-items: start;
}

.honey-type-icon {
    width: 162px;
    height: 162px;
    object-fit: cover;
}

.honey-type-content h4 {
    font-size: 28px;
    margin-bottom: 15px;
}

.honey-type-content p {
    font-size: 16px;
    line-height: 28px;
    color: #666;
    margin-bottom: 20px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

#page-footer:before {
	content: '';
    background: url(https://lesnikpejic.com/wp-content/uploads/2025/10/h1-rev-img-1.png) center bottom no-repeat;
    background-size: contain;
    background-color: rgba(0, 0, 0, 0);
    padding-top: 100px;
    width: 100px;
    height: 100px;
    position: absolute;
}

#page-footer:after {
	content: '';
    background: url(https://lesnikpejic.com/wp-content/uploads/2025/10/h1-rev-img-7.png) center bottom no-repeat;
    background-size: contain;
    background-color: rgba(0, 0, 0, 0);
    padding-top: 100px;
    width: 100px;
    height: 100px;
    position: absolute;
}

#page-footer-bottom-area {
    background-color: transparent;
    border-top: 1px solid transparent;
    padding: 40px 0;
    text-align: center;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #c74817;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #b73604;
}

.footer-logo {
    width: 85px;
    height: 85px;
    margin: 30px auto 10px;
}

.footer-copyright {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.footer-copyright a {
    color: #131313;
    font-weight: 600;
}

.footer-copyright a:hover {
    color: #d3a863;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: #d3a863;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: #cb9744;
    transform: translateY(-5px);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1600px) {
	.hero-content {
		transform: translate(-60%, -20%);
	}
	
	.hero-image-wrapper {
		transform: translate(30%, -30%);
	}
}

@media (max-width: 1500px) {
	.hero-image-wrapper img {
		width: 80%;
	}
}

@media (max-width: 1400px) {
	.hero-content {
		transform: translate(-50%, -20%);
	}
}

@media (max-width: 1200px) {
	.hero-content {
		transform: translate(-45%, -20%);
	}
	
	.hero-image-wrapper img {
        width: 70%;
    }
	
	.hero-image-wrapper {
        transform: translate(40%, -30%);
    }
}

@media (max-width: 1100px) {
	    .hero-content {
        transform: translate(-35%, -20%);
    }
}

@media (max-width: 1024px) {
    #page-outer {
        margin-top: -70px;
    }
	
	.hero-section {
		padding-bottom: 0;
		min-height: auto;
	}
	
	.hero-image-wrapper {
		transform: none;
        display: block;
        position: relative;
	}
	
	.hero-grid {
		flex-direction: row;
		flex-wrap: wrap;
	}
	
	.hero-image-wrapper img {
		width: 100%;
	}
	
	.container > img {
		max-width: 50px;
	}
	
	h1, .hero-title {
        font-size: 90px;
        line-height: 80px;
    }
    
    #page-header {
        height: 70px;
    }
    
    h2 {
        font-size: 40px;
    }
    
    .mission-grid,
    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
	
	.hero-content {
        transform: translate(-30%, -20%);
    }
    
    .products-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	
    
    .testimonial-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 900px) {
	.hero-content {
        transform: none;
    }
}

@media (max-width: 768px) {
    h1, .hero-title {
        font-size: 70px;
        line-height: 80px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .products-grid,
    .honey-types-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image-wrapper {
        position: relative;
        width: 100%;
        margin-top: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .header-navigation {
        display: none;
    }
}

@media (max-width: 680px) {
    h1 {
        font-size: 50px;
    }
    
    h2 {
        font-size: 40px;
    }
    
    p {
        font-size: 16px;
    }
}