/*
Theme Name: GutoListing Preview Theme
Theme URI: https://gutowp.com/
Author: GutoWP
Author URI: https://gutowp.com/
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: test
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Test is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

body {
	font-family: 'Google Sans', sans-serif;
	font-size: 16px;
	color: #374151;
	margin: 0;
	padding: 0;
}

/* Normalize
--------------------------------------------- */
/* ===== Navbar Wrapper ===== */
.main-navigation {
  background: #0f172a;
  border-bottom: 1px solid #1f2937;
  padding: 18px;
  position: relative;
  font-family: Arial, sans-serif;
}

/* ===== Navigation Layout ===== */
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.nav-brand .custom-logo {
  height: auto;
  max-height: 44px;
  width: auto;
}

.nav-brand .site-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}

.nav-brand .site-title a {
  color: #f9fafb;
  text-decoration: none;
  font-weight: 600;
}

/* ===== Menu Toggle Button (Mobile) ===== */
.menu-toggle {
  display: none;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 16px 10px 40px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.menu-toggle:hover {
  background: #1d4ed8;
}

.menu-toggle::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transform: translateY(-50%);
  box-shadow: 0 -5px 0 #fff, 0 5px 0 #fff;
}

/* ===== Menu Container ===== */
#primary-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}

/* ===== Menu List ===== */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

/* ===== Links ===== */
.nav-menu li a {
  text-decoration: none;
  color: #e5e7eb;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

/* Hover Effect */
.nav-menu li a:hover {
  color: #ffffff;
  border-bottom-color: #2563eb;
}

/* ===== Current Page Highlight ===== */
.nav-menu li.current_page_item a {
  color: #ffffff;
  border-bottom-color: #2563eb;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 14px;
  padding: 18px;
  text-align: center;
}

/* ===== Responsive (Mobile) ===== */
@media (max-width: 768px) {
  .nav-inner {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  #primary-menu {
    display: flex;
    flex-basis: 100%;
    flex-direction: column;
    margin-top: 12px;
    margin-left: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.25s ease;
    background: #0b1220;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.45);
  }

  /* When activated */
  .main-navigation.toggled #primary-menu {
    max-height: 70vh;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 12px 10px 14px;
    border-bottom: 0;
    border-left: 2px solid transparent;
    border-radius: 8px;
  }

  .nav-menu li a:hover {
    border-left-color: #2563eb;
  }

  .nav-menu li.current_page_item a {
    border-left-color: #2563eb;
  }
}

@media (max-width: 768px) {
    .nav-inner {
        padding: 0;
    }
}
.home main, .home .site-footer {
    padding-top: 0 !important;
    padding: 0 !important;
}
.woocommerce-page .entry-content{
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* === WooCommerce My Account layout === */
.woocommerce .woocommerce-MyAccount-navigation,
.woocommerce .woocommerce-MyAccount-content {
  box-sizing: border-box;
}

.woocommerce .woocommerce-MyAccount-navigation ul,
.woocommerce .woocommerce-MyAccount-navigation li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 2-column layout */
.woocommerce {
  --wc-gap: 24px;
  --wc-radius: 14px;
  --wc-border: #e8e8ee;
  --wc-bg: #ffffff;
  --wc-soft: #f7f7fb;
  --wc-text: #111827;
  --wc-muted: #6b7280;
  --wc-accent: #2563eb;
  --wc-accent-soft: rgba(37, 99, 235, 0.10);
}

.woocommerce .woocommerce-MyAccount-navigation {
  float: left;
  width: 28%;
  padding: 16px;
  background: var(--wc-bg);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius);
}

.woocommerce .woocommerce-MyAccount-content {
  float: right;
  width: calc(72% - var(--wc-gap));
  margin-left: var(--wc-gap);
  padding: 20px;
  background: var(--wc-bg);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius);
}

/* Navigation links */
.woocommerce .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--wc-text);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.woocommerce .woocommerce-MyAccount-navigation li + li {
  margin-top: 6px;
}

.woocommerce .woocommerce-MyAccount-navigation a:hover {
  background: var(--wc-soft);
  transform: translateX(2px);
}

/* Active item */
.woocommerce .woocommerce-MyAccount-navigation .is-active > a,
.woocommerce .woocommerce-MyAccount-navigation
  .woocommerce-MyAccount-navigation-link.is-active > a,
.woocommerce .woocommerce-MyAccount-navigation
  .woocommerce-MyAccount-navigation-link--dashboard.is-active > a {
  background: var(--wc-accent-soft);
  color: var(--wc-accent);
  border: 1px solid rgba(37, 99, 235, 0.25);
}

/* Optional: little right chevron on items */
.woocommerce .woocommerce-MyAccount-navigation a::after {
  content: "›";
  font-size: 18px;
  color: var(--wc-muted);
  opacity: 0.6;
}
.woocommerce .woocommerce-MyAccount-navigation .is-active > a::after {
  color: var(--wc-accent);
  opacity: 1;
}

/* Content typography */
.woocommerce .woocommerce-MyAccount-content p {
  margin: 0 0 12px;
  color: var(--wc-text);
}
.woocommerce .woocommerce-MyAccount-content a {
  color: var(--wc-accent);
  text-decoration: none;
  font-weight: 600;
}
.woocommerce .woocommerce-MyAccount-content a:hover {
  text-decoration: underline;
}

/* Woo messages (notice wrapper) */
.woocommerce .woocommerce-notices-wrapper {
  margin-bottom: 14px;
}
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid var(--wc-border);
  background: var(--wc-soft);
}

/* Make sure floats clear */
.woocommerce::after {
  content: "";
  display: block;
  clear: both;
}

/* Mobile: stack */
@media (max-width: 900px) {
  .woocommerce .woocommerce-MyAccount-navigation,
  .woocommerce .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
    margin: 0;
  }

  .woocommerce .woocommerce-MyAccount-navigation {
    margin-bottom: 14px;
  }
}

.admin-bar main#primary header.navbar {
    top: 31px;
}