/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
 */

/* ==========================================================================
   Base Styles
   ========================================================================== */

body {
    background-color: #FFFFFF;
}

#header-desktop{
    display: block;
}

.navigation-container .sub-menu {
    display: none;
}

.navigation-container .menu-item-has-children:hover .sub-menu {
    display: grid;
    position: absolute;
    background-color: #fff;
    width: auto;
    min-width: 1165px;
    z-index: 9999;
    left: 50%;
    transform: translateX(-50%);
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    grid-template-columns: repeat(auto-fit, minmax(176px, 0.3fr));
    grid-auto-flow: column;
    gap: 20px 0;
    grid-template-rows: repeat(6, auto);
    justify-content: start;
}

/* Style individual submenu items */
.navigation-container .sub-menu li {
    margin: 0;
    list-style: none;
    break-inside: avoid;
}

.navigation-container .sub-menu li:last-child {
    border-bottom: none;
}

.navigation-container .sub-menu li a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    opacity: 0.4;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.navigation-container .sub-menu li a:hover {
    opacity: 1;
}

/* For very long submenus, we can also use CSS columns as fallback */
@supports not (grid-template-rows: repeat(6, auto)) {
    .navigation-container .menu-item-has-children:hover .sub-menu {
        display: block;
        column-count: auto;
        column-width: 200px;
        column-gap: 40px;
        column-rule: 1px solid #f0f0f0;
    }
    
    .navigation-container .sub-menu li {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

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

#header-mobile {
    display: none;
    background-color: #f4f4f4;
}
.header-flex-rows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;

}
.wp-block-post-excerpt__more-link {
    border: 1px solid red;
    padding: 5px 10px;
    border-radius: 50px;
    text-decoration: none !important;
}

.wp-block-post-excerpt__more-link:hover {
    color: white !important;
    background-color: #E82E45;
    transition: all 0.5s ease;
}
.mobile-header-container {
    max-width: 76.25rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Row 1: Logo and Search */
.mobile-header-row-1 {
    padding: 1rem 0;
}

.mobile-header-row-1 .mobile-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-logo img {
    width: 8rem;
    height: auto;
}

.mobile-search {
    position: relative;
    flex: 1;
}

.mobile-search input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    font-size: 0.875rem;
}

.mobile-search input:focus {
    outline: none;
    border-color: #E82E45;
}

.mobile-search-toggle {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #666;
    font-size: 1rem;
}

.mobile-search-toggle:hover {
    color: #E82E45;
}

/* Row 2: Hamburger Menu and Icons */
.mobile-header-row-2 {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.mobile-header-row-2 .mobile-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 1.5rem;
    height: 0.125rem;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

.mobile-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-notepad,
.mobile-account,
.mobile-basket {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.25rem;
    transition: opacity 0.3s ease;
    text-align: center;
}

.mobile-notepad:hover,
.mobile-account:hover,
.mobile-basket:hover {
    opacity: 0.7;
}

.mobile-notepad img,
.mobile-account img,
.mobile-basket img {
    width: 1.25rem;
    height: 1.25rem;
    margin-bottom: 0.25rem;
}

.mobile-notepad p,
.mobile-account p,
.mobile-basket p {
    font-size: 0.875rem;
    line-height: 1;
    color: #333;
    margin: 0;
    font-weight: 500;
    text-transform: capitalize;
}

/* Full Width Search Overlay */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.mobile-search-overlay.active {
    display: flex;
}

.mobile-search-overlay-content {
    width: 90%;
    max-width: 500px;
    position: relative;
}

.mobile-search-overlay-content input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: none;
    border-radius: 5px;
    background: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-search-overlay-content input:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-search-close {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #666;
    font-size: 1.25rem;
}

.mobile-search-close:hover {
    color: #E82E45;
}

/* ==========================================================================
   Mobile Navigation Menu
   ========================================================================== */

.mobile-navigation-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #fff;
    z-index: 10000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-navigation-menu.active {
    left: 0;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Mobile menu header with close button */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    background-color: #fafafa;
}

.mobile-menu-logo img {
    width: 120px;
    height: auto;
}

.mobile-search .search-button-mobile {
    padding: 5px !important;
    background-color: transparent;
    color: #222;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    color: #666;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-close:hover {
    color: #E82E45;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-close:active {
    transform: rotate(90deg) scale(0.95);
}

.mobile-nav {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.mobile-primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-primary-menu li {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.mobile-primary-menu li:last-child {
    border-bottom: none;
}

.mobile-primary-menu li a {
    display: block;
    padding: 1rem 0;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.mobile-primary-menu li a:hover {
    color: #E82E45;
}

/* Mobile submenu toggle button */
.mobile-submenu-toggle {
    background-color: transparent !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-submenu-toggle:hover {
    color: #E82E45;
}

.mobile-submenu-toggle i {
    font-size: 0.875rem;
}

/* Submenu styles */
.mobile-sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f8f8;
}

.submenu-open .mobile-sub-menu {
    max-height: 500px;
    padding: 0.5rem 0;
}

.submenu-open .mobile-submenu-toggle {
    position: relative;
    transform: translateY(-50%) rotate(180deg);
    color: #E82E45;
    background-color: transparent;
    left: 86%;
    bottom: 26px;
}

.submenu-open .mobile-submenu-toggle:focus {
    outline: none;
    border: none;
}

.mobile-sub-menu li {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-sub-menu li:last-child {
    border-bottom: none;
}

.mobile-sub-menu li a {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: capitalize;
    color: #555;
    letter-spacing: normal;
}

.mobile-sub-menu li a:hover {
    color: #E82E45;
    background-color: #fff;
}

/* Body classes for menu states */
body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

body.search-overlay-open {
    overflow: hidden;
}

.entry-content .alignwide {
    margin-left: auto;
    width: 100%;
}

/* ==========================================================================
   Content Area Styles
   ========================================================================== */

/* Main content container */
.site-content {
    max-width: 76.25rem;
    margin: 0 auto;
    padding: 2rem 1.25rem;
}

/* Main content wrapper */
.content-area {
    width: 100%;
}

/* Individual posts/pages */
.hentry {
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Entry header */
.entry-header {
    padding: 2rem 0rem 1rem;
}

.wp-block-post-title {
    margin: 10px 0;
}

.content-area .wp-block-post-date {
    margin-bottom: 10px;
}

.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;

}

.entry-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #E82E45;
}

/* Entry meta */
.entry-meta {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.entry-meta a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-meta a:hover {
    color: #E82E45;
}

.posted-on,
.byline,
.cat-links,
.tags-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Entry content */
.entry-content {
margin-top: 0 !important;
    line-height: 1.7;
    font-size: 1rem;
    color: #444;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #333;
    font-weight: 600;
    /* margin: 2rem 0 1rem; */
    line-height: 1.3;
    text-decoration: none !important;
}

.entry-content .wp-block-post-title a{
    text-decoration: none !important;
    font-weight: bold;
    color: #000;
}

.entry-content h1 { font-size: 2.25rem; }
.entry-content h2 { font-size: 2rem; }
.entry-content h3 { font-size: 1.75rem; }
.entry-content h4 { font-size: 1.5rem; }
.entry-content h5 { font-size: 1.25rem; }
.entry-content h6 { font-size: 1.125rem; }

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content a {
    color: #E82E45;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: #d01e35;
}

/* Lists */
.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0;
}

.entry-content li {
    margin-bottom: 0.5rem;
    padding: 20px;
}

/* Blockquotes */
.entry-content blockquote {
    border-left: 4px solid #E82E45;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: #f9f9f9;
    font-style: italic;
    font-size: 1.125rem;
    color: #555;
}

.entry-content blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #666;
    font-style: normal;
}

/* Images */
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.entry-content .wp-caption {
    max-width: 100%;
    margin: 1.5rem 0;
}

.entry-content .wp-caption-text {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    padding: 0.5rem 0;
    font-style: italic;
}

/* Tables */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

.entry-content th,
.entry-content td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.entry-content th {
    background: #f8f8f8;
    font-weight: 600;
    color: #333;
}

/* Code blocks */
.entry-content pre,
.entry-content code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    background: #f4f4f4;
    border-radius: 4px;
}

.entry-content code {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.entry-content pre {
    padding: 1rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid #e0e0e0;
}

.entry-content pre code {
    background: none;
    padding: 0;
}

/* Entry footer */
.entry-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid #f0f0f0;
    margin-top: 1rem;
}

.entry-footer .tags-links,
.entry-footer .cat-links {
    margin-bottom: 0.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0;
    padding: 0;
    list-style: none;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #E82E45;
    color: #fff;
    border-color: #E82E45;
}

/* Comments area */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.comments-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #333;
}

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

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #E82E45;
}

/* Buttons and forms */
.entry-content input[type="text"],
.entry-content input[type="email"],
.entry-content input[type="password"],
.entry-content input[type="search"],
.entry-content input[type="url"],
.entry-content textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.entry-content input:focus,
.entry-content textarea:focus {
    outline: none;
    border-color: #E82E45;
    box-shadow: 0 0 0 2px rgba(232, 46, 69, 0.1);
}

.entry-content button,
.entry-content input[type="submit"],
.entry-content .wp-block-button__link {
    background: #E82E45;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.entry-content button:hover,
.entry-content input[type="submit"]:hover,
.entry-content .wp-block-button__link:hover {
    background: #d01e35;
}

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

.banner-header-container-inner {
    max-width: 62.5rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.banner-header-container-inner p {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    width: 33% !important;
}

.banner-header-container-inner p span {
    color: #37b03a !important;
}

.header-container .welcome-header-container {
    background-color: #E82E45;
    color: #fff;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 11px 0;
}

.header-container .banner-header-container {
    background-color: #F2F2F2;
    color: #000;
    padding: 10px;
    text-align: center;
}

/* ==========================================================================
   Navigation Styles
   ========================================================================== */

   .navigation-container-inner {
    padding: 0 10px;
   }
.before-navigation-container-inner {
    padding: 1.5625rem 1.875rem;
    height: 5.625rem;
    max-width: 76.25rem;
    margin: 11px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.before-navigation-container-inner-search {
    position: relative;
    display: inline-block;
    width: 150px;
}

.before-navigation-container-inner-search input {
    border-radius: 5px !important;
    border-color: #f8f8f8;
    background: #f8f8f8;
    width: 100%;
    min-width: 130px;
    box-sizing: border-box;
    padding: 5px 40px 5px 10px !important;
}

.before-navigation-container-inner-search input:focus {
    color: #000;
    border-color: transparent;
    outline: none;
}

.before-navigation-container-inner-search button {
    position: absolute;
    right: -4px;
    top: -2px;
    border: none;
    cursor: pointer;
    background-color: transparent;
}

.before-navigation-container-inner-search button i {
    color: #000;
    opacity: 0.4;
    font-size: 18px;
    transition: opacity 0.5s ease;
}

.before-navigation-container-inner-search button i:hover {
    opacity: 1;
}

.before-navigation-container-inner-logo img {
    width: 12.5rem;
    margin: 0 auto;
}

.before-navigation-container-inner-right {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.before-navigation-container-inner-right .notepad,
.before-navigation-container-inner-right .compare,
.before-navigation-container-inner-right .basket {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0.35;
    transition: opacity 0.5s ease;
}

.before-navigation-container-inner-right .notepad:hover,
.before-navigation-container-inner-right .compare:hover,
.before-navigation-container-inner-right .basket:hover {
    opacity: 1;
}

.before-navigation-container-inner-right img {
    width: 1.875rem;
    height: 1.875rem;
    margin: 0 auto;
}

.before-navigation-container-inner-right p {
    font-size: 0.6875rem;
    line-height: 1.25rem;
    color: #000;
}

.navigation-container {
    /* max-width: 60rem; */
    margin: 0 auto;
}

.navigation-container nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation-container nav ul li {
    text-transform: uppercase;
}

.navigation-container nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.35;
    transition: opacity 0.5s ease;
}

.navigation-container nav ul li a:hover {
    opacity: 1;
}

.language-switcher {
    padding: 4px 8px !important;
    border-radius: 3px !important;
    border: 1px solid #a6a6a6;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-container {
    max-width: 76.25rem;
    margin: 0 auto;
}

.site-footer {
    border-top: 1px solid #e0e0e0;
}

.footer-content .group-input {
    display: flex;
}

.footer-content .group-input input {
    border: 1px solid #000;
}

.footer-content-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5625rem 0;
}

.footer-content-1 > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-content-1 > div > span {
    display: inline-block;
    padding-left: 0.625rem;
    font-size: 0.8125rem;
}

.footer-content-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    background-color: #F2F2F2;
    padding: 1.25rem 1.875rem;
}

.footer-content-2-content {
    align-items: center;
    gap: 5em;
}

.footer-content-2 > div {
    display: flex;
}

.footer-content-2 > div:nth-child(2) {
    flex-direction: column;
}

.footer-content-2 h2 {
    font-size: 1.125rem;
    margin-bottom: 0;
    font-weight: bold;
}

.footer-content-2 p {
    font-size: 12px;
    line-height: 1.25rem;
    color: #333;
    width: 34.375rem;
    margin-bottom: 0;
}

/* Footer Widgets */
.footer-content-3 {
    border-top: 1px solid #e0e0e0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-widget-area {
    min-height: 200px;
}

.footer-widget-area .widget {
    margin-bottom: 1rem;
}

.footer-widget-area .widget-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    text-transform: uppercase;
}

.footer-widget-area .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget-area .widget ul li {
    margin-bottom: 0.5rem;
}

.footer-widget-area .widget ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-widget-area .widget ul li a:hover {
    color: #E82E45;
}

.payment-shipping-widget {
    border-left: 1px solid #e0e0e0;
    padding-left: 2rem;
    margin: 20px 0;
}

.payment-shipping-widget img {
    margin: 2% 3% 1% 0;
    width: 29%;
    height: auto;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 100px;
}

.footer-content-4 {
    background-color: #F2F2F2;
    padding: 0.625rem 1.25rem;
}

.footer-content-4 > div {
    background-color: #F2F2F2;
    padding: 1.33333333rem 0;
}

.footer-content-1 > div,
.footer-content-4 > div {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.footer-4-content p {
    margin-bottom: 2px;
    color: #b2b2b2;
    text-align: left;
    line-height: 0.875rem;
    font-size: 0.625rem;
}

.footer-4-content-2 {
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
}

.footer-4-content-2 p {
    margin-bottom: 0;
    padding: 10px 0;
}

/* ==========================================================================
   Accordion Styles
   ========================================================================== */

/* Desktop - Hide accordion elements */
.accordion-header,
.accordion-toggle {
    display: none;
}

.accordion-content {
    max-height: none;
    overflow: visible;
    padding: 0;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 768px) {

    #header-desktop{
        display: none;
    }
    
    #header-mobile {
        display: block;
    }
    
    /* Mobile submenu adjustments */
    .navigation-container .menu-item-has-children:hover .sub-menu {
        display: block;
        position: static;
        width: 100%;
        min-width: auto;
        transform: none;
        left: auto;
        right: auto;
        padding: 15px;
        margin-top: 10px;
        border-radius: 4px;
        column-count: 1;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }
    
    .navigation-container .sub-menu li {
        padding: 6px 0;
    }
    
    .navigation-container .sub-menu li a {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    /* Content area adjustments for mobile */
    .site-content {
        padding: 1rem 1rem;
    }
    
    .entry-header {
        padding: 1.5rem 1.5rem 0.75rem;
    }
    
    .entry-title {
        font-size: 1.75rem;
    }
    
    .entry-content {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .entry-content h1 { font-size: 1.75rem; }
    .entry-content h2 { font-size: 1.5rem; }
    .entry-content h3 { font-size: 1.25rem; }
    .entry-content h4 { font-size: 1.125rem; }
    .entry-content h5 { font-size: 1rem; }
    .entry-content h6 { font-size: 0.9rem; }
    
    .entry-content blockquote {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .entry-footer {
        padding: 0.75rem 1.5rem 1.5rem;
    }
    
    .pagination .page-numbers {
        min-width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }
    
    .comments-title {
        font-size: 1.5rem;
    }
    
    .comment {
        padding: 1rem;
    }
    
    /* Hide elements on mobile */
    .footer-content-2 {
        display: none;
    }
    
    /* Footer background */
    .footer-content {
        background-color: #f4f4f4;
    }
    
    /* Footer widgets grid */
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .footer-widget-area {
        min-height: auto;
    }
    
    .payment-shipping-widget {
        padding-left: 0;
        grid-column: span 2;
    }
    
    /* Accordion styles */
    .footer-widget-area.accordion-item {
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 0;
        background-color: #f4f4f4;
    }
    
    .accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.625rem 1.25rem;
        cursor: pointer;
        user-select: none;
    }
    
    .accordion-header .widget-title {
        margin-bottom: 0;
        font-size: 15px;
        font-weight: 600;
        color: #333;
        text-transform: capitalize;
    }
    
    .accordion-toggle {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }
    
    .accordion-toggle:focus,
    .accordion-toggle:hover {
        background-color: transparent;
        outline: none;
        outline-offset: 0;
    }
    
    .accordion-icon {
        font-size: 1.25rem;
        font-weight: bold;
        color: #666;
        transition: transform 0.3s ease;
    }
    
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }
    
    .accordion-content.active {
        max-height: 1000px;
        padding: 0.625rem 1.25rem;
    }
    
    .accordion-item.active .accordion-icon {
        transform: rotate(45deg);
    }
    
    .accordion-item.active .accordion-toggle {
        transform: rotate(0deg);
    }
}

@media (max-width: 480px) {
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .payment-shipping-widget {
        grid-column: span 1;
    }
    
    /* Mobile header adjustments for very small screens */
    .mobile-logo img {
        width: 9rem;
    }
    
    /* .mobile-search {
        max-width: 100%;
    }
	 */
	.separate-containers .inside-article.inside-article {
    	padding: 0;
	}

    
    .mobile-icons {
        gap: 0.5rem;
    }
    
    .mobile-notepad p,
    .mobile-account p,
    .mobile-basket p {
        font-size: 0.625rem;
    }
    
    .mobile-notepad img,
    .mobile-account img,
    .mobile-basket img {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    /* Content area adjustments for very small screens */
    .site-content {
        padding: 0.75rem 0.75rem;
    }
    
    .entry-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .entry-title {
        font-size: 1.5rem;
    }
    
    .entry-content {
        padding: 0 1rem 1rem;
        font-size: 0.875rem;
    }
    
    .entry-content h1 { font-size: 1.5rem; }
    .entry-content h2 { font-size: 1.25rem; }
    .entry-content h3 { font-size: 1.125rem; }
    .entry-content h4 { font-size: 1rem; }
    .entry-content h5 { font-size: 0.9rem; }
    .entry-content h6 { font-size: 0.875rem; }
    
    .entry-content blockquote {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .entry-footer {
        padding: 0.5rem 1rem 1rem;
    }
    
    .entry-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.site-content .content-area {
    width: 100%;
}

.separate-containers .inside-article>.featured-image {
    display: flex;
    justify-content: center;
}

.wp-block-post-excerpt__excerpt {
    margin-top: 20px !important;
}




/* Modal */
.search-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
}

.search-modal.is-active {
    display: flex;
    opacity: 1;
}

.search-modal-container {
    width: 100%;
    max-width: 40rem;
    position: relative;
}

.search-modal-close {
    position: absolute;
    top: -3.5rem;
    right: 0;
    padding: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.search-modal-close-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.search-form-group {
    position: relative;
    border: none;
    border-radius: 0.5rem;
}
.search-form-input {
    width: 100%;
    padding-right: 65px !important;
    background: rgba(255, 255, 255, 0.1);
    border: none !important;
    border-radius: 20px !important;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}
.search-form-submit {
    position: absolute;
    right: 0rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.6rem 1.25rem;
    color: #fff;
    background-color: #777;
    font-weight: 700;
    border: none;
    border-radius: 0px 20px 20px 0px ;
    cursor: pointer;
    transition: all 0.3s ease;
}
