@charset "UTF-8";
/* _reset.scss */
/* Normalize */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: sans-serif;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

a:hover, a:focus, a:active {
  text-decoration: none;
  color: inherit;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  outline: none !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Jost", sans-serif;
}

.hover-reveal {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease-out;
  z-index: 0;
  padding: 2px 5px;
}
.hover-reveal::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease-out;
  z-index: -1;
}
.hover-reveal:hover {
  color: #fff;
}
.hover-reveal:hover::after {
  transform: scaleY(1);
}

.wspgraziano-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .wspgraziano-container {
    padding: 0 15px;
  }
}
.wspgraziano-container-full {
  max-width: 100%;
  padding: 0;
}
.wspgraziano-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
@media (max-width: 768px) {
  .wspgraziano-row {
    margin: 0 -10px;
  }
}
.wspgraziano-col {
  padding: 0 15px;
  width: 100%;
}
@media (max-width: 768px) {
  .wspgraziano-col {
    padding: 0 10px;
  }
}
.wspgraziano-col-1 {
  width: 8.333333%;
}
.wspgraziano-col-2 {
  width: 16.666667%;
}
.wspgraziano-col-3 {
  width: 25%;
}
.wspgraziano-col-4 {
  width: 33.333333%;
}
.wspgraziano-col-5 {
  width: 41.666667%;
}
.wspgraziano-col-6 {
  width: 50%;
}
.wspgraziano-col-7 {
  width: 58.333333%;
}
.wspgraziano-col-8 {
  width: 66.666667%;
}
.wspgraziano-col-9 {
  width: 75%;
}
.wspgraziano-col-10 {
  width: 83.333333%;
}
.wspgraziano-col-11 {
  width: 91.666667%;
}
.wspgraziano-col-12 {
  width: 100%;
}
@media (max-width: 1024px) {
  .wspgraziano-col-tablet-1 {
    width: 8.333333%;
  }
  .wspgraziano-col-tablet-2 {
    width: 16.666667%;
  }
  .wspgraziano-col-tablet-3 {
    width: 25%;
  }
  .wspgraziano-col-tablet-4 {
    width: 33.333333%;
  }
  .wspgraziano-col-tablet-5 {
    width: 41.666667%;
  }
  .wspgraziano-col-tablet-6 {
    width: 50%;
  }
  .wspgraziano-col-tablet-7 {
    width: 58.333333%;
  }
  .wspgraziano-col-tablet-8 {
    width: 66.666667%;
  }
  .wspgraziano-col-tablet-9 {
    width: 75%;
  }
  .wspgraziano-col-tablet-10 {
    width: 83.333333%;
  }
  .wspgraziano-col-tablet-11 {
    width: 91.666667%;
  }
  .wspgraziano-col-tablet-12 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .wspgraziano-col-mobile-1 {
    width: 8.333333%;
  }
  .wspgraziano-col-mobile-2 {
    width: 16.666667%;
  }
  .wspgraziano-col-mobile-3 {
    width: 25%;
  }
  .wspgraziano-col-mobile-4 {
    width: 33.333333%;
  }
  .wspgraziano-col-mobile-5 {
    width: 41.666667%;
  }
  .wspgraziano-col-mobile-6 {
    width: 50%;
  }
  .wspgraziano-col-mobile-7 {
    width: 58.333333%;
  }
  .wspgraziano-col-mobile-8 {
    width: 66.666667%;
  }
  .wspgraziano-col-mobile-9 {
    width: 75%;
  }
  .wspgraziano-col-mobile-10 {
    width: 83.333333%;
  }
  .wspgraziano-col-mobile-11 {
    width: 91.666667%;
  }
  .wspgraziano-col-mobile-12 {
    width: 100%;
  }
}
.wspgraziano-grid, .wspgraziano-desktop-footer .wspgraziano-footer-widgets {
  display: grid;
  gap: 30px;
}
@media (max-width: 768px) {
  .wspgraziano-grid, .wspgraziano-desktop-footer .wspgraziano-footer-widgets {
    gap: 20px;
  }
}
.wspgraziano-grid-auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.wspgraziano-grid-auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.wspgraziano-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .wspgraziano-grid-2 {
    grid-template-columns: 1fr;
  }
}
.wspgraziano-grid-3, .wspgraziano-desktop-footer .wspgraziano-footer-widgets {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .wspgraziano-grid-3, .wspgraziano-desktop-footer .wspgraziano-footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .wspgraziano-grid-3, .wspgraziano-desktop-footer .wspgraziano-footer-widgets {
    grid-template-columns: 1fr;
  }
}
.wspgraziano-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .wspgraziano-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .wspgraziano-grid-4 {
    grid-template-columns: 1fr;
  }
}
.wspgraziano-section, .wspgraziano-desktop-footer {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .wspgraziano-section, .wspgraziano-desktop-footer {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .wspgraziano-section, .wspgraziano-desktop-footer {
    padding: 40px 0;
  }
}
.wspgraziano-section-small, .wspgraziano-mobile-footer {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .wspgraziano-section-small, .wspgraziano-mobile-footer {
    padding: 30px 0;
  }
}
.wspgraziano-section-large {
  padding: 120px 0;
}
@media (max-width: 1024px) {
  .wspgraziano-section-large {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .wspgraziano-section-large {
    padding: 60px 0;
  }
}
.wspgraziano-spacing-mb-0 {
  margin-bottom: 0;
}
.wspgraziano-spacing-mb-1 {
  margin-bottom: 0.25rem;
}
.wspgraziano-spacing-mb-2, .wspgraziano-mobile-footer .wspgraziano-footer-navigation .wspgraziano-footer-menu li, .wspgraziano-mobile-footer .wspgraziano-footer-column .wspgraziano-widget-title, .wspgraziano-desktop-footer .wspgraziano-footer-column .wspgraziano-widget ul li {
  margin-bottom: 0.5rem;
}
.wspgraziano-spacing-mb-3, .wspgraziano-mobile-footer .wspgraziano-copyright, .wspgraziano-mobile-footer .wspgraziano-footer-column .wspgraziano-widget, .wspgraziano-desktop-footer .wspgraziano-footer-column .wspgraziano-widget-title {
  margin-bottom: 1rem;
}
.wspgraziano-spacing-mb-4, .wspgraziano-mobile-footer .wspgraziano-footer-column, .wspgraziano-mobile-footer .wspgraziano-footer-widgets, .wspgraziano-desktop-footer .wspgraziano-footer-column .wspgraziano-widget {
  margin-bottom: 1.5rem;
}
.wspgraziano-spacing-mb-5 {
  margin-bottom: 3rem;
}
.wspgraziano-spacing-mt-0 {
  margin-top: 0;
}
.wspgraziano-spacing-mt-1 {
  margin-top: 0.25rem;
}
.wspgraziano-spacing-mt-2 {
  margin-top: 0.5rem;
}
.wspgraziano-spacing-mt-3 {
  margin-top: 1rem;
}
.wspgraziano-spacing-mt-4 {
  margin-top: 1.5rem;
}
.wspgraziano-spacing-mt-5 {
  margin-top: 3rem;
}
.wspgraziano-spacing-pb-0 {
  padding-bottom: 0;
}
.wspgraziano-spacing-pb-1 {
  padding-bottom: 0.25rem;
}
.wspgraziano-spacing-pb-2 {
  padding-bottom: 0.5rem;
}
.wspgraziano-spacing-pb-3 {
  padding-bottom: 1rem;
}
.wspgraziano-spacing-pb-4 {
  padding-bottom: 1.5rem;
}
.wspgraziano-spacing-pb-5 {
  padding-bottom: 3rem;
}
.wspgraziano-spacing-pt-0 {
  padding-top: 0;
}
.wspgraziano-spacing-pt-1 {
  padding-top: 0.25rem;
}
.wspgraziano-spacing-pt-2 {
  padding-top: 0.5rem;
}
.wspgraziano-spacing-pt-3 {
  padding-top: 1rem;
}
.wspgraziano-spacing-pt-4 {
  padding-top: 1.5rem;
}
.wspgraziano-spacing-pt-5 {
  padding-top: 3rem;
}
.wspgraziano-text-left {
  text-align: left;
}
.wspgraziano-text-center {
  text-align: center;
}
.wspgraziano-text-right {
  text-align: right;
}
@media (max-width: 768px) {
  .wspgraziano-text-mobile-left {
    text-align: left;
  }
  .wspgraziano-text-mobile-center {
    text-align: center;
  }
  .wspgraziano-text-mobile-right {
    text-align: right;
  }
}
.wspgraziano-flex, .wspgraziano-mobile-footer .wspgraziano-footer-bottom, .wspgraziano-desktop-footer .wspgraziano-footer-navigation .wspgraziano-footer-menu, .wspgraziano-desktop-footer .wspgraziano-footer-bottom, .wspgraziano-mobile-header .wspgraziano-menu-toggle, .wspgraziano-mobile-header .wspgraziano-header-inner {
  display: flex;
}
.wspgraziano-flex-wrap {
  flex-wrap: wrap;
}
.wspgraziano-flex-nowrap {
  flex-wrap: nowrap;
}
.wspgraziano-flex-row {
  flex-direction: row;
}
.wspgraziano-flex-column, .wspgraziano-mobile-footer .wspgraziano-footer-bottom {
  flex-direction: column;
}
.wspgraziano-flex-center, .wspgraziano-mobile-header .wspgraziano-menu-toggle {
  justify-content: center;
}
.wspgraziano-flex-start {
  justify-content: flex-start;
}
.wspgraziano-flex-end {
  justify-content: flex-end;
}
.wspgraziano-flex-between, .wspgraziano-desktop-footer .wspgraziano-footer-bottom, .wspgraziano-mobile-header .wspgraziano-header-inner {
  justify-content: space-between;
}
.wspgraziano-flex-around {
  justify-content: space-around;
}
.wspgraziano-flex-items-center, .wspgraziano-mobile-footer .wspgraziano-footer-bottom, .wspgraziano-desktop-footer .wspgraziano-footer-navigation .wspgraziano-footer-menu, .wspgraziano-desktop-footer .wspgraziano-footer-bottom, .wspgraziano-mobile-header .wspgraziano-header-inner {
  align-items: center;
}
.wspgraziano-flex-items-start {
  align-items: flex-start;
}
.wspgraziano-flex-items-end {
  align-items: flex-end;
}
.wspgraziano-flex-items-stretch {
  align-items: stretch;
}
.wspgraziano-flex-grow {
  flex-grow: 1;
}
@media (max-width: 768px) {
  .wspgraziano-flex-mobile-column {
    flex-direction: column;
  }
  .wspgraziano-flex-mobile-center {
    justify-content: center;
  }
  .wspgraziano-flex-mobile-start {
    justify-content: flex-start;
  }
  .wspgraziano-flex-mobile-between {
    justify-content: space-between;
  }
}
.wspgraziano-full-width {
  width: 100%;
}
.wspgraziano-full-width .entry-content > * {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.wspgraziano-full-width .entry-content > .alignfull {
  max-width: 100%;
  padding: 0;
}

.wpt-search-full-wrapper .search_box_wrapper {
  margin-bottom: 50px;
}
.wpt-search-full-wrapper .search_box_wrapper label {
  display: none !important;
}

.wspgraziano-mobile-header {
  display: none;
}
@media (max-width: 768px) {
  .wspgraziano-mobile-header {
    display: block !important;
  }
}
.wspgraziano-mobile-header .wspgraziano-container {
  height: 60px;
}
.wspgraziano-mobile-header .wspgraziano-header-inner {
  height: 100%;
}
.wspgraziano-mobile-header .wspgraziano-header-logo img {
  max-height: 40px;
  width: auto;
}
.wspgraziano-mobile-header .wspgraziano-header-logo h1 {
  margin: 0;
  font-size: 16px;
}
.wspgraziano-mobile-header .wspgraziano-menu-toggle {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.wspgraziano-mobile-header .wspgraziano-menu-toggle .wspgraziano-hamburger {
  width: 24px;
  height: 2px;
  background: #333;
  position: relative;
  transition: all 0.3s ease;
}
.wspgraziano-mobile-header .wspgraziano-menu-toggle .wspgraziano-hamburger::before, .wspgraziano-mobile-header .wspgraziano-menu-toggle .wspgraziano-hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #333;
  left: 0;
  transition: all 0.3s ease;
}
.wspgraziano-mobile-header .wspgraziano-menu-toggle .wspgraziano-hamburger::before {
  top: -6px;
}
.wspgraziano-mobile-header .wspgraziano-menu-toggle .wspgraziano-hamburger::after {
  bottom: -6px;
}
.wspgraziano-mobile-header .wspgraziano-menu-toggle.active .wspgraziano-hamburger {
  background: transparent;
}
.wspgraziano-mobile-header .wspgraziano-menu-toggle.active .wspgraziano-hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.wspgraziano-mobile-header .wspgraziano-menu-toggle.active .wspgraziano-hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.wspgraziano-mobile-header .wspgraziano-mobile-menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.wspgraziano-mobile-header .wspgraziano-mobile-menu.active {
  display: block;
}
.wspgraziano-mobile-header .wspgraziano-mobile-menu .wspgraziano-mobile-menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wspgraziano-mobile-header .wspgraziano-mobile-menu .wspgraziano-mobile-menu-items li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}
.wspgraziano-mobile-header .wspgraziano-mobile-menu .wspgraziano-mobile-menu-items li a:hover {
  background: #F3F3F3;
  color: #1D1D1B;
}

.cart-icon {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.cart-icon a {
  color: #333; /* Цвет иконки */
  font-size: 24px;
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff0000;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.cart-svg-icon {
  width: 24px;
  height: 24px;
}

/* Для Font Awesome */
.fa-shopping-cart {
  font-size: 1.5em;
}

.menu-toggle {
  display: none;
}

.wspgraziano-header {
  position: relative;
  padding: 0;
  z-index: 10;
}
.wspgraziano-header .wspgraziano-container {
  height: 3.125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.wspgraziano-header .wspgraziano-container .wspgraziano-products-row {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.wspgraziano-header__inner {
  background-color: #fff;
  position: relative;
  z-index: 10;
}
.wspgraziano-header.wspgraziano-desktop-header {
  border-bottom: 1px solid #D8DCE1;
}
.wspgraziano-header__logo {
  flex-shrink: 0;
  width: 7rem;
}
.wspgraziano-header__nav {
  flex: 1 1 auto;
}
.wspgraziano-header__nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}
.wspgraziano-header__nav ul li {
  position: relative;
  text-transform: uppercase;
  padding: 2px 5px;
}
.wspgraziano-header__nav ul li a {
  position: relative;
  z-index: 1;
  color: inherit;
  transition: color 0.3s ease-out;
}
.wspgraziano-header__nav ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease-out;
  z-index: 0;
}
.wspgraziano-header__nav ul li:hover {
  background: none;
}
.wspgraziano-header__nav ul li:hover::after {
  transform: scaleY(1);
}
.wspgraziano-header__nav ul li:hover a {
  color: #fff;
}
.wspgraziano-header__auth {
  flex-shrink: 0;
}
.wspgraziano-header__auth .wspgraziano-header__icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.wspgraziano-header__auth .wspgraziano-header__login {
  text-decoration: none;
  text-transform: uppercase;
  color: inherit;
}
.wspgraziano-header .wspgraziano-search-popup {
  display: flex;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 51px;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9;
  justify-content: center;
  align-items: flex-start;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}
.wspgraziano-header .wspgraziano-search-popup__content {
  background: #F3F3F3;
  visibility: hidden;
  opacity: 0;
  max-width: 100%;
  width: 100%;
  height: 80px;
  padding: 0;
  position: relative;
  margin: 0 auto;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.wspgraziano-header .wspgraziano-search-popup.active {
  visibility: visible;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
.wspgraziano-header .wspgraziano-search-popup.active .wspgraziano-search-popup__content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.wspgraziano-header .wspgraziano-search-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #333;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
}

.search-form {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.search-field {
  width: 100%;
  max-width: 1160px;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
}

.search-submit {
  display: none;
}

.wspgraziano-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 60vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  z-index: 100;
  display: none;
  max-width: 1180px;
  margin: auto;
}
.wspgraziano-search-results.has-results {
  display: block;
}
.wspgraziano-search-results .search-result-item {
  padding: 12px 15px;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s;
}
.wspgraziano-search-results .search-result-item:last-child {
  border-bottom: none;
}
.wspgraziano-search-results .search-result-item:hover {
  background: #f9f9f9;
}
.wspgraziano-search-results .search-result-item .search-result-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}
.wspgraziano-search-results .search-result-item .search-result-image {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
  border-radius: 3px;
  border: 1px solid #eee;
}
.wspgraziano-search-results .search-result-item .search-result-content {
  flex: 1;
}
.wspgraziano-search-results .search-result-item .search-result-title {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: #222;
}
.wspgraziano-search-results .search-result-item .search-result-price {
  color: #1D1D1B;
  font-weight: 600;
  font-size: 14px;
}
.wspgraziano-search-results .search-result-item .search-result-price ins {
  text-decoration: none;
}
.wspgraziano-search-results .search-result-item .search-result-type {
  color: #777;
  font-size: 13px;
  font-style: italic;
}
.wspgraziano-search-results .search-result-item.type-product .search-result-title {
  color: #000000;
}
.wspgraziano-search-results .search-result-item.type-post {
  border-left: 3px solid #6a9e52;
}
.wspgraziano-search-results .search-result-item.type-page {
  border-left: 3px solid #5d7fa3;
}
.wspgraziano-search-results .search-loading,
.wspgraziano-search-results .search-no-results,
.wspgraziano-search-results .search-error {
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 14px;
}
@media (max-width: 768px) {
  .wspgraziano-search-results {
    max-height: 50vh;
  }
  .wspgraziano-search-results .search-result-item {
    padding: 10px 12px;
  }
  .wspgraziano-search-results .search-result-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

.wspgraziano-footer {
  background: #000000;
  color: #fff;
}
.wspgraziano-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
.wspgraziano-desktop-footer {
  display: block;
}
@media (max-width: 768px) {
  .wspgraziano-desktop-footer {
    display: none !important;
  }
}
.wspgraziano-desktop-footer .wspgraziano-footer-widgets {
  margin-bottom: 40px;
}
.wspgraziano-desktop-footer .wspgraziano-footer-column .wspgraziano-widget-title {
  color: #fff;
  font-size: 20px;
}
.wspgraziano-desktop-footer .wspgraziano-footer-column .wspgraziano-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wspgraziano-desktop-footer .wspgraziano-footer-column .wspgraziano-widget ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}
.wspgraziano-desktop-footer .wspgraziano-footer-column .wspgraziano-widget ul li a:hover {
  color: #1D1D1B;
}
.wspgraziano-desktop-footer .wspgraziano-footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.wspgraziano-desktop-footer .wspgraziano-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.wspgraziano-desktop-footer .wspgraziano-footer-navigation .wspgraziano-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}
.wspgraziano-desktop-footer .wspgraziano-footer-navigation .wspgraziano-footer-menu li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.wspgraziano-desktop-footer .wspgraziano-footer-navigation .wspgraziano-footer-menu li a:hover {
  color: #1D1D1B;
}
.wspgraziano-mobile-footer {
  display: none;
}
@media (max-width: 768px) {
  .wspgraziano-mobile-footer {
    display: block !important;
  }
}
.wspgraziano-mobile-footer .wspgraziano-footer-column .wspgraziano-widget-title {
  color: #fff;
  font-size: 20px;
}
.wspgraziano-mobile-footer .wspgraziano-footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.wspgraziano-mobile-footer .wspgraziano-copyright {
  font-size: 14px;
}
.wspgraziano-mobile-footer .wspgraziano-footer-navigation {
  width: 100%;
}
.wspgraziano-mobile-footer .wspgraziano-footer-navigation .wspgraziano-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.wspgraziano-mobile-footer .wspgraziano-footer-navigation .wspgraziano-footer-menu li a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  transition: all 0.3s ease;
}
.wspgraziano-mobile-footer .wspgraziano-footer-navigation .wspgraziano-footer-menu li a:hover {
  color: #1D1D1B;
}

.wspgraziano-footer.wspgraziano-section, .wspgraziano-footer.wspgraziano-desktop-footer {
  background-color: #1D1D1B;
  padding-top: 1rem;
  padding-bottom: 1rem;
  align-items: center;
}
.wspgraziano-footer .wspgraziano-grid, .wspgraziano-footer .wspgraziano-desktop-footer .wspgraziano-footer-widgets, .wspgraziano-desktop-footer .wspgraziano-footer .wspgraziano-footer-widgets {
  align-items: center;
}
.wspgraziano-footer .wspgraziano-grid div, .wspgraziano-footer .wspgraziano-desktop-footer .wspgraziano-footer-widgets div, .wspgraziano-desktop-footer .wspgraziano-footer .wspgraziano-footer-widgets div {
  font-size: 1.25rem;
}
.wspgraziano-footer .wspgraziano-grid div.footer-center, .wspgraziano-footer .wspgraziano-desktop-footer .wspgraziano-footer-widgets div.footer-center, .wspgraziano-desktop-footer .wspgraziano-footer .wspgraziano-footer-widgets div.footer-center {
  font-size: 1rem;
  text-align: center;
  color: white;
}
.wspgraziano-footer .footer-logo {
  display: flex;
  justify-content: center;
}

.footer-menu-left ul.footer-menu,
.footer-menu-right ul.footer-menu {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  gap: 0;
}
.footer-menu-left ul.footer-menu li,
.footer-menu-right ul.footer-menu li {
  list-style: none;
  margin: 0;
}
.footer-menu-left ul.footer-menu a,
.footer-menu-right ul.footer-menu a {
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
}
.footer-menu-left ul.footer-menu a:hover,
.footer-menu-right ul.footer-menu a:hover {
  text-decoration: underline;
}

.footer-center {
  font-size: 1rem;
  text-align: center;
  color: white;
}

.wspgraziano-sidebar {
  width: 100%;
}
.wspgraziano-sidebar-content {
  margin-bottom: 30px;
}
.wspgraziano-sidebar .wspgraziano-widget {
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.wspgraziano-sidebar .wspgraziano-widget:last-child {
  margin-bottom: 0;
}
.wspgraziano-sidebar .wspgraziano-widget-title {
  font-size: 20px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F3F3F3;
}
.wspgraziano-sidebar .wspgraziano-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wspgraziano-sidebar .wspgraziano-widget ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F3F3F3;
}
.wspgraziano-sidebar .wspgraziano-widget ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.wspgraziano-sidebar .wspgraziano-widget ul li a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wspgraziano-sidebar .wspgraziano-widget ul li a:hover {
  color: #1D1D1B;
}
.wspgraziano-sidebar .wspgraziano-widget.widget_search .search-form {
  display: flex;
  gap: 10px;
}
.wspgraziano-sidebar .wspgraziano-widget.widget_search .search-form label {
  flex: 1;
}
.wspgraziano-sidebar .wspgraziano-widget.widget_search .search-form .search-field {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #F3F3F3;
  border-radius: 4px;
}
.wspgraziano-sidebar .wspgraziano-widget.widget_search .search-form .search-submit {
  padding: 8px 15px;
  background: #1D1D1B;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wspgraziano-sidebar .wspgraziano-widget.widget_search .search-form .search-submit:hover {
  background: #030302;
}
.wspgraziano-page {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .wspgraziano-page {
    padding: 30px 0;
  }
}
.wspgraziano-page-header {
  margin-bottom: 40px;
  padding: 40px 0;
  background-color: #F3F3F3;
}
@media (max-width: 768px) {
  .wspgraziano-page-header {
    margin-bottom: 30px;
    padding: 30px 0;
  }
}
.wspgraziano-breadcrumbs {
  margin-bottom: 15px;
  font-size: 14px;
}
.wspgraziano-breadcrumbs a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wspgraziano-breadcrumbs a:hover {
  color: #1D1D1B;
}
.wspgraziano-page-title {
  margin: 0;
  font-size: 32px;
  color: #333;
}
@media (max-width: 768px) {
  .wspgraziano-page-title {
    font-size: 28px;
  }
}
.wspgraziano-entry-content h1, .wspgraziano-entry-content h2, .wspgraziano-entry-content h3, .wspgraziano-entry-content h4, .wspgraziano-entry-content h5, .wspgraziano-entry-content h6 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
}
.wspgraziano-entry-content p {
  margin-top: 0;
  margin-bottom: 1.5em;
  line-height: 1.6;
}
.wspgraziano-entry-content img {
  max-width: 100%;
  height: auto;
}
.wspgraziano-entry-content ul, .wspgraziano-entry-content ol {
  margin-bottom: 1.5em;
  padding-left: 20px;
}
.wspgraziano-entry-content ul li, .wspgraziano-entry-content ol li {
  margin-bottom: 0.5em;
}
.wspgraziano-entry-content a {
  color: #1D1D1B;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wspgraziano-entry-content a:hover {
  text-decoration: underline;
}
.wspgraziano-page-links {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #F3F3F3;
}

.wspgraziano-slider .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 2.5rem;
  height: 0.3125rem;
  border-radius: 0;
  background: #111;
}

.wspgraziano-slider.w50 {
  background: #F3F3F3;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.wspgraziano-slider.w50 .heading-block {
  background: #fff;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.wspgraziano-slider.w50 .heading-block h2 {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.wspgraziano-slider.w50 .heading-block .heading-ico {
  margin-top: -5px;
  font-size: 24px;
  transition: transform 0.2s ease-in-out 0.15s, color 0.15s ease-in-out 0.15s;
}
.wspgraziano-slider.w50 .heading-block:hover {
  background: #fafafa;
}
.wspgraziano-slider.w50 .heading-block:hover h2 {
  color: #fff;
}
.wspgraziano-slider.w50 .heading-block:hover .heading-ico {
  transform: translateX(15px);
  color: white;
}
.wspgraziano-slider.w50 .swiper {
  padding: 0 5.625rem 2.5rem;
  margin-top: 1.875rem;
}
.wspgraziano-slider.w50 .swiper .swiper-slide {
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
}
.wspgraziano-slider.w50 .swiper .swiper-slide-active {
  opacity: 1;
  pointer-events: auto;
}
.wspgraziano-slider.w50 .swiper .swiper-button-next:after, .wspgraziano-slider.w50 .swiper .swiper-button-prev:after {
  font-size: 20px;
  color: #111;
}

.product-detail__slider-50 {
  margin-bottom: 0.625rem;
}
.product-detail__slider-50 .main-img img {
  width: 100%;
  height: auto;
  display: block;
}

.wspgraziano-product {
  margin-bottom: 10px;
}
.wspgraziano-product .wspgraziano-product-wrapper {
  position: relative;
}
.wspgraziano-product .wspgraziano-product-wrapper:hover {
  text-decoration: none;
}
.wspgraziano-product .wspgraziano-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 42.5rem;
  height: 8.9375rem;
  background-color: rgba(255, 255, 255, 0.67);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}
.wspgraziano-product .wspgraziano-product-info .link-ico {
  position: absolute;
  right: -5.3125rem;
  width: 5.3125rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
}
.wspgraziano-product .wspgraziano-product-info:hover {
  text-decoration: none;
}
.wspgraziano-product .wspgraziano-product-info:hover .link-ico {
  right: 0;
  opacity: 1;
}

.wspgraziano-product.wspgraziano-fullscreen-product .wspgraziano-product-wrapper .wspgraziano-product-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  max-height: 50rem;
}
.wspgraziano-product.wspgraziano-fullscreen-product .wspgraziano-product-wrapper .wspgraziano-product-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.wspgraziano-product.wspgraziano-fullscreen-product .wspgraziano-product-wrapper .wspgraziano-product-media .wspgraziano-product-video iframe {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16/9;
  pointer-events: none !important;
}

.wspgraziano-product.wspgraziano-products-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.wspgraziano-product.wspgraziano-products-row .wspgraziano-product-wrapper {
  flex: 1 1 calc(50% - 10px);
  min-width: 300px;
}
.wspgraziano-product.wspgraziano-products-row .wspgraziano-product-info {
  position: relative;
  width: 100%;
  left: auto;
  bottom: auto;
  transform: none;
  background-color: #fff;
  padding: 0 5.3125rem;
}
.wspgraziano-product.wspgraziano-products-row .wspgraziano-product-info .link-ico {
  background-color: #111;
}

#wspgraziano-fullscreen-slider {
  margin-bottom: 10px;
}
#wspgraziano-fullscreen-slider .wspgraziano-row {
  margin: 0 -20px;
}
#wspgraziano-fullscreen-slider .wspgraziano-col-12 {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 800px;
}
#wspgraziano-fullscreen-slider .wspgraziano-fullscreen-slider {
  max-height: 50rem;
  width: 100%;
  height: 100%;
}
#wspgraziano-fullscreen-slider .wspgraziano-fullscreen-slider .swiper-slide {
  position: relative;
}
#wspgraziano-fullscreen-slider .wspgraziano-fullscreen-slider .swiper-button-prev,
#wspgraziano-fullscreen-slider .wspgraziano-fullscreen-slider .swiper-button-next {
  width: 85px;
  height: 143px;
  background: #fff;
  margin-top: -75px;
  transition: opacity 0.3s ease;
}
#wspgraziano-fullscreen-slider .wspgraziano-fullscreen-slider .swiper-button-prev:after,
#wspgraziano-fullscreen-slider .wspgraziano-fullscreen-slider .swiper-button-next:after {
  color: #111;
  font-size: 24px;
  transition: all 0.3s ease;
}
#wspgraziano-fullscreen-slider .wspgraziano-fullscreen-slider .swiper-button-prev:hover:after,
#wspgraziano-fullscreen-slider .wspgraziano-fullscreen-slider .swiper-button-next:hover:after {
  opacity: 0.7;
}
#wspgraziano-fullscreen-slider .wspgraziano-fullscreen-slider .swiper-button-prev {
  left: 0;
}
#wspgraziano-fullscreen-slider .wspgraziano-fullscreen-slider .swiper-button-prev:hover:after {
  margin-left: -10px;
}
#wspgraziano-fullscreen-slider .wspgraziano-fullscreen-slider .swiper-button-next {
  right: 0;
}
#wspgraziano-fullscreen-slider .wspgraziano-fullscreen-slider .swiper-button-next:hover:after {
  margin-right: -10px;
}

#post-248 > div > div.wspgraziano-section, #post-248 > div > div.wspgraziano-desktop-footer {
  margin-bottom: 10px;
}
#post-248 > div > div:nth-child(1) {
  margin-top: -30px;
}

@media (max-width: 1024px) {
  .wspgraziano-product .wspgraziano-product-info {
    width: 90%;
    height: auto;
    padding: 20px;
  }
  #wspgraziano-fullscreen-slider .wspgraziano-fullscreen-slider .swiper-button-prev,
  #wspgraziano-fullscreen-slider .wspgraziano-fullscreen-slider .swiper-button-next {
    width: 60px;
    height: 100px;
    margin-top: -50px;
  }
}
@media (max-width: 768px) {
  .wspgraziano-product.wspgraziano-products-row .wspgraziano-product-wrapper {
    flex: 1 1 100%;
  }
  #wspgraziano-fullscreen-slider .wspgraziano-col-12 {
    max-height: 600px;
  }
}
.wp-block-woocommerce-cart .wp-block-woocommerce-cart-totals-block .wc-block-cart__submit-button {
  background: #111;
  color: #fff;
  text-transform: uppercase;
}
.wp-block-woocommerce-cart .wc-block-cart-item__wrap {
  display: grid;
  grid-template-columns: 1fr min-content min-content;
  gap: 0 1rem;
  align-items: flex-start !important;
}
.wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-components-product-name,
.wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-components-product-metadata {
  grid-column: 1/2;
}
.wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-components-product-name {
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: 1rem;
}
.wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-components-product-metadata p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}
.wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__prices {
  grid-column: 2/3;
  grid-row: 1;
  align-items: flex-start;
}
.wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__prices .wc-block-components-product-price__value {
  font-size: 1rem;
  color: #333;
  white-space: nowrap;
}
.wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__quantity {
  grid-column: 3/4;
  grid-row: 1/3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-components-quantity-selector {
  margin-bottom: 0.5rem;
}
.wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  background: none;
  border: none;
  color: #d00;
  font-size: 0.85rem;
  cursor: pointer;
}
.wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .wp-block-woocommerce-cart .wc-block-cart-item__wrap {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-components-product-name,
  .wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-components-product-metadata,
  .wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__prices,
  .wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__quantity {
    grid-column: 1/-1;
  }
  .wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__prices {
    justify-self: start;
  }
  .wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__quantity {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
  }
  .wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-components-quantity-selector {
    margin-bottom: 0;
  }
  .wp-block-woocommerce-cart .wc-block-cart-item__wrap .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
    margin-left: 1rem;
  }
}
.wp-block-woocommerce-cart .wc-block-cart-item__product {
  padding-right: 20px;
}
.wp-block-woocommerce-cart td.wc-block-cart-item__total {
  padding: 24px 0 24px 50px !important;
}
.wp-block-woocommerce-cart td.wc-block-cart-item__total .wc-block-cart-item__total-price-and-sale-badge-wrapper {
  margin-top: -7px;
}
.wp-block-woocommerce-cart td.wc-block-cart-item__total .wc-block-cart-item__total-price-and-sale-badge-wrapper .wc-block-components-product-price {
  font-weight: 700;
  font-size: 18px;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):focus {
  box-shadow: none !important;
}

.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  background: #111;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-radius: 0;
}

#table_id_142 td.wpt_thumbnails {
  width: 100px;
}

.wp-theme-graziano .wpt-new-footer-cart-inside a.wpt-view-n {
  width: -moz-min-content;
  width: min-content;
}

.woocommerce-account .wspgraziano-page {
  padding-top: 0;
  padding-bottom: 0;
}
.woocommerce-account .wspgraziano-page .wspgraziano-page-content .wspgraziano-container:nth-child(1) {
  max-width: 100%;
  padding-right: 0;
}
.woocommerce-account .wspgraziano-page .wspgraziano-page-content .wspgraziano-row:nth-child(1) {
  margin: 0;
}
.woocommerce-account .wspgraziano-page .wspgraziano-page-content .wspgraziano-col.wspgraziano-col-12 {
  padding-right: 0;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount {
  box-sizing: border-box;
  padding: 0;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container {
  max-width: 100%;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row {
  flex-wrap: nowrap;
  justify-content: space-between;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-left {
  max-width: 450px;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-left h2 {
  font-size: 14px;
  text-transform: uppercase;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-left .account-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-left .account-info h2 {
  grid-column: 1/3;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-left .account-info .edit-data {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-left .account-info .edit-data a {
  text-decoration: none;
  text-transform: uppercase;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-left .company-info h2 {
  margin-bottom: 5px;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-left .company-info p {
  margin-bottom: 0;
  height: 50px;
  border-bottom: 1px solid #D8DCE1;
  display: flex;
  align-items: center;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-left .company-info p:last-of-type {
  border-bottom: none;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-left .company-info .wspgraziano-button {
  display: flex;
  justify-content: flex-end;
  text-transform: uppercase;
  text-decoration: none;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #D8DCE1;
  padding-top: 20px;
  padding-bottom: 20px;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center .woocommerce-MyAccount-navigation {
  width: 100%;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center .woocommerce-MyAccount-content {
  float: left;
  width: 100%;
  height: 100%;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center .woocommerce-MyAccount-content .wspgraziano-dashboard-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center .woocommerce-MyAccount-content .wspgraziano-dashboard-content .create-order-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 40px;
  background-color: #1D1D1B;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center .woocommerce-MyAccount-content .wspgraziano-dashboard-content .create-order-link .link-ico {
  position: absolute;
  right: 15px;
  top: 9px;
  transition: all 0.2s ease-in-out;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center .woocommerce-MyAccount-content .wspgraziano-dashboard-content .create-order-link:hover .link-ico {
  right: 10px;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center .woocommerce-MyAccount-content .woocommerce-MyAccount-orders td {
  height: 50px;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center .woocommerce-MyAccount-content .woocommerce-MyAccount-orders td .button {
  white-space: nowrap;
  background: none;
  font-weight: 400;
  padding: 0;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center .woocommerce-MyAccount-content .woocommerce-MyAccount-orders td.woocommerce-orders-table__cell-invoice {
  display: flex;
  align-items: center;
  gap: 10px;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center .woocommerce-MyAccount-content .woocommerce-EditAccountForm input {
  border: none;
  border-bottom: 1px solid #D8DCE1;
  border-radius: 0;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center ul {
  display: flex;
  padding-left: 0;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center ul li {
  list-style: none;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease-out;
  z-index: 0;
  padding: 2px 10px;
  margin-left: 5px;
  text-transform: uppercase;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease-out;
  z-index: -1;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center ul li:hover a {
  color: #fff;
  text-decoration: none;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center ul li:hover::after {
  transform: scaleY(1);
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center ul li.is-active {
  background: #000000;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center ul li.is-active a {
  color: #fff;
  text-decoration: none;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-center ul li:nth-child(1) {
  margin-left: 0;
}
.woocommerce-account .wspgraziano-page .wspgraziano-myaccount .wspgraziano-container .wspgraziano-row .wspgraziano-account-right {
  max-width: 650px;
  padding: 0;
}

#company-info-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#company-info-popup.active {
  display: block;
}
#company-info-popup .popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  border-radius: 6px;
}
#company-info-popup .popup-content h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
#company-info-popup .popup-content form {
  display: flex;
  flex-direction: column;
}
#company-info-popup .popup-content form input[type=text] {
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}
#company-info-popup .popup-content form button {
  padding: 0.7rem 1.2rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#company-info-popup .popup-content form button:first-of-type {
  background-color: #000000;
  color: #fff;
  border-radius: 0;
}
#company-info-popup .popup-content form button:first-of-type:hover {
  background-color: #000000;
  opacity: 0.8;
}
#company-info-popup .popup-content form button#close-popup {
  background-color: #ccc;
  border-radius: 0;
}
#company-info-popup .popup-content form button#close-popup:hover {
  background-color: #aaa;
}

.product .wspgraziano-section.summary-section:first-child, .product .summary-section.wspgraziano-desktop-footer:first-child {
  padding: 0;
  max-height: 100vh;
}
.product .wspgraziano-section.summary-section:first-child .wspgraziano-container, .product .summary-section.wspgraziano-desktop-footer:first-child .wspgraziano-container {
  max-width: 100%;
  padding: 0;
}
.product .wspgraziano-section.summary-section:first-child .wspgraziano-row, .product .summary-section.wspgraziano-desktop-footer:first-child .wspgraziano-row {
  margin: 0;
}
.product .wspgraziano-section.summary-section:first-child .wspgraziano-col-6:first-child, .product .summary-section.wspgraziano-desktop-footer:first-child .wspgraziano-col-6:first-child {
  padding: 0;
}
.product .wspgraziano-section.summary-section:first-child .wspgraziano-container-full, .product .summary-section.wspgraziano-desktop-footer:first-child .wspgraziano-container-full {
  height: 100%;
}
.product .wspgraziano-section.summary-section:first-child .wspgraziano-container-full .wspgraziano-col-6:last-child, .product .summary-section.wspgraziano-desktop-footer:first-child .wspgraziano-container-full .wspgraziano-col-6:last-child {
  max-width: calc(1200px / 2 - 20px);
  margin-right: auto;
  margin-left: 0;
  padding-left: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.product .wspgraziano-product__info {
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product .wspgraziano-product__info .product_title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.product .wspgraziano-product__info .price {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.875rem;
}
.product .wspgraziano-product__info .price ins {
  text-decoration: none;
  color: #000;
}
.product .wspgraziano-product__info .price del {
  color: #999;
  margin-right: 0.625rem;
}
.product .wspgraziano-product__info .woocommerce-product-details__short-description {
  margin-bottom: 1.875rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
}
.product .wspgraziano-product__info .cart {
  margin-bottom: 1.875rem;
}
.product .wspgraziano-product__info .cart .quantity {
  margin-right: 1.25rem;
}
.product .wspgraziano-product__info .cart .quantity .qty {
  width: 5rem;
  height: 3.125rem;
  border: 1px solid #ddd;
  padding: 0 0.625rem;
  font-size: 1rem;
}
.product .wspgraziano-product__info .cart .single_add_to_cart_button {
  background: #000;
  color: #fff;
  padding: 0.9375rem 1.875rem;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}
.product .wspgraziano-product__info .cart .single_add_to_cart_button:hover {
  background: #333;
}
.product .wspgraziano-product__info .product_meta {
  font-size: 0.875rem;
  color: #666;
}
.product .wspgraziano-product__info .product_meta span {
  display: block;
  margin-bottom: 0.625rem;
}
.product .wspgraziano-product__info .product_meta span a {
  color: #000;
  text-decoration: none;
}
.product .wspgraziano-product__info .product_meta span a:hover {
  text-decoration: underline;
}
.product .custom-single-product-gallery {
  position: relative;
  overflow: hidden;
}
.product .custom-single-product-gallery .swiper-wrapper {
  width: 100%;
  height: auto;
}
.product .custom-single-product-gallery .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product .custom-single-product-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product .custom-single-product-gallery .custom-gallery-button-prev,
.product .custom-single-product-gallery .custom-gallery-button-next {
  position: absolute;
  left: 0;
  width: 8.9375rem;
  height: 5.3125rem;
  background: #fff;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product .custom-single-product-gallery .custom-gallery-button-prev::after,
.product .custom-single-product-gallery .custom-gallery-button-next::after {
  display: none;
}
.product .custom-single-product-gallery .custom-gallery-button-prev::before,
.product .custom-single-product-gallery .custom-gallery-button-next::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../images/slider-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.product .custom-single-product-gallery .custom-gallery-button-prev {
  top: 50%;
  transform: translateY(-100%);
}
.product .custom-single-product-gallery .custom-gallery-button-prev::before {
  transform: rotate(180deg);
}
.product .custom-single-product-gallery .custom-gallery-button-next {
  top: 50%;
}
.product .custom-single-product-gallery .custom-gallery-pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  width: 8.75rem;
  height: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product .description-column p {
  font-size: 1.5rem;
}

#wspgraziano-product-summary .product-subtitle-summary {
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 17.8125rem;
  margin-bottom: 0.25rem;
}

.wspgraziano-related-swiper__heading {
  display: block;
}
.wspgraziano-related-swiper__container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.wspgraziano-related-swiper__container .swiper-slide {
  display: block;
  width: auto;
  position: relative;
  overflow: hidden;
}
.wspgraziano-related-swiper__container .swiper-slide .price,
.wspgraziano-related-swiper__container .swiper-slide .button {
  display: none !important;
}
.wspgraziano-related-swiper__container .swiper-slide .woocommerce-loop-product__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 0.5rem 0.625rem;
  font-size: 1.0625rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.wspgraziano-related-swiper__container .swiper-slide:hover .woocommerce-loop-product__title {
  opacity: 1;
  pointer-events: auto;
}
.wspgraziano-related-swiper__container .swiper-slide li.product {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}
.wspgraziano-related-swiper__container .swiper-button-prev,
.wspgraziano-related-swiper__container .swiper-button-next {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  position: absolute;
  width: 5.3125rem;
  height: 8.9375rem;
  background: #fff;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.wspgraziano-related-swiper__container .swiper-button-prev::after,
.wspgraziano-related-swiper__container .swiper-button-next::after {
  display: none;
}
.wspgraziano-related-swiper__container .swiper-button-prev::before,
.wspgraziano-related-swiper__container .swiper-button-next::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../images/slider-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.wspgraziano-related-swiper__container .swiper-button-prev::before {
  transform: rotate(90deg);
}
.wspgraziano-related-swiper__container .swiper-button-next::before {
  transform: rotate(-90deg);
}
.wspgraziano-related-swiper__container:hover .swiper-button-prev,
.wspgraziano-related-swiper__container:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}

.swiper-slide {
  position: relative;
}
.swiper-slide .wspgraziano-related-slide-link {
  display: block;
  position: relative;
  text-decoration: none;
}
.swiper-slide .wspgraziano-related-slide-link .woocommerce-loop-product__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.625rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.swiper-slide .wspgraziano-related-slide-link:hover .woocommerce-loop-product__title {
  opacity: 1;
  pointer-events: auto;
}

.detailed-images-swiper {
  position: relative;
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
  overflow: hidden;
}
.detailed-images-swiper .swiper-wrapper {
  display: flex;
}
.detailed-images-swiper .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.detailed-images-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.detailed-images-swiper .detailed-images-button-prev,
.detailed-images-swiper .detailed-images-button-next {
  position: absolute;
  top: 50%;
  width: 2.1875rem;
  height: 2.1875rem;
  margin-top: -1.09375rem;
  z-index: 10;
  cursor: pointer;
  color: #8d5454;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 1.25rem;
  transition: background-color 0.3s ease;
}
.detailed-images-swiper .detailed-images-button-prev::after,
.detailed-images-swiper .detailed-images-button-next::after {
  display: none;
}
.detailed-images-swiper .detailed-images-button-prev::before,
.detailed-images-swiper .detailed-images-button-next::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../images/slider-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.detailed-images-swiper .detailed-images-button-prev {
  left: 0.625rem;
}
.detailed-images-swiper .detailed-images-button-prev::before {
  transform: rotate(90deg);
}
.detailed-images-swiper .detailed-images-button-next {
  right: 0.625rem;
}
.detailed-images-swiper .detailed-images-button-next::before {
  transform: rotate(-90deg);
}
.detailed-images-swiper .detailed-images-button-prev.swiper-button-disabled {
  opacity: 0.2;
}
.detailed-images-swiper .detailed-images-button-next.swiper-button-disabled {
  opacity: 0.2;
}

.wspgraziano-product-attributes {
  margin: 1.5rem 0;
  font-size: 14px;
}
.wspgraziano-product-attributes ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.wspgraziano-product-attributes ul li {
  margin: 0;
  line-height: 1.4;
  display: flex;
  gap: 20px;
}
.wspgraziano-product-attributes ul li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #333;
}
@media (max-width: 600px) {
  .wspgraziano-product-attributes ul {
    grid-template-columns: 1fr;
  }
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce .woocommerce-page #content div.product div.images,
.woocommerce .woocommerce-page div.product div.images {
  float: none;
  width: 100%;
  margin-bottom: 0;
}

#graziano-feedback-form {
  margin-bottom: 0;
}
#graziano-feedback-form h2 {
  font-size: 96px;
  line-height: 96px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 0;
}
#graziano-feedback-form .graziano-feedback-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
}
#graziano-feedback-form .graziano-feedback-form-wrapper #graziano-feedback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
#graziano-feedback-form .graziano-feedback-form-wrapper #graziano-feedback-form .graziano-feedback-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  width: 100%;
}
#graziano-feedback-form .graziano-feedback-form-wrapper #graziano-feedback-form .graziano-feedback-form-group .visually-hidden {
  display: none;
  visibility: hidden;
}
#graziano-feedback-form .graziano-feedback-form-wrapper #graziano-feedback-form .graziano-feedback-form-group #graziano-feedback-email {
  width: 100%;
  height: 80px;
  max-width: 567px;
  border-radius: 0;
  border: 1px solid #000;
  padding: 0 20px;
}
#graziano-feedback-form .graziano-feedback-form-wrapper #graziano-feedback-form .graziano-feedback-form-group #graziano-feedback-email::-moz-placeholder {
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  margin-bottom: -10px;
}
#graziano-feedback-form .graziano-feedback-form-wrapper #graziano-feedback-form .graziano-feedback-form-group #graziano-feedback-email::placeholder {
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  margin-bottom: -10px;
}
#graziano-feedback-form .graziano-feedback-form-wrapper #graziano-feedback-form .graziano-feedback-form-group .graziano-feedback-button {
  width: 100%;
  height: 80px;
  max-width: 567px;
  border-radius: 0;
  border: 1px solid #000;
  background: #000;
  padding: 0 20px;
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
}

.graziano-feedback-message {
  padding: 12px;
  border-radius: 4px;
  margin-top: 20px;
  text-align: center;
}
.graziano-feedback-message.success {
  background-color: var(--color-success-light);
  color: var(--color-success);
  border: 1px solid var(--color-success);
}
.graziano-feedback-message.error {
  background-color: var(--color-error-light);
  color: var(--color-error);
  border: 1px solid var(--color-error);
}

[data-lastpass-icon-root] {
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 1;
}

body {
  background-color: rgb(255, 255, 255);
}/*# sourceMappingURL=main.css.map */