@charset "UTF-8";
/*** RESET ***/
@import 'bootstrap/bootstrap-grid.min.css';
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 10px 0;
  white-space: nowrap;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

/** END RESET **/
:root {
  --dark: #000;
  --private: #5D5C5C;
  --privacid:#5C62F4;
  --browns: #825B3E;
  --pinks: #f3eeea;
  --sales: red;
  --light: #fff;
  --light-1: #FDFCF2;
  --gray-900: #1F1F1F;
  --gray-700: #707070;
  --gray-500: #7D848A;
  --gray-400: #EFEFEF;
  --gray-100: #F7F7F6;
  --olives: #757361;
  --whites: #ECEAE9;
  --font-family-sans-serif: DM Sans, sans-serif;
  --font-family-heading: Libre Baskerville, Times New Roman, Times, serif;
  --font-family-serif: Libre Baskerville, Times New Roman, Times, serif;
  --font-family-yese: Yeseva One, serif;
  --line-height-base: 1.5;
  --font-size: 1rem;
  --font-size-small:0.875rem;
  --font-size-xsmall:0.75rem;
  --body-background: #F7F7F6;
  --text-color: #000;
  --link-color: #1F1F1F;
  --link-hover-color: #000;
}

html {
  font-size: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-sans-serif), sans-serif;
  font-size: var(--font-size);
  background: var(--gray-100);
  color: var(--text-color);
  line-height: var(--line-height);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.2;
  font-family: var(--font-family-heading), serif;
  font-weight: normal;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  color: var(--link-color);
  border: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, .h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover {
  color: var(--link-hover-color);
}

h1, .h1 {
  font-size: 2.4rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.8rem;
}

h4, .h4 {
  font-size: 1.6rem;
}

h5, .h5 {
  font-size: 1.4rem;
}

h6, .h6 {
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.75rem;
  }
  h3, .h3 {
    font-size: 1.5rem;
  }
  h4, .h4 {
    font-size: 1.4rem;
  }
  h5, .h5 {
    font-size: 1.3rem;
  }
  h6, .h6 {
    font-size: 1.125rem;
  }
}
@media (max-width: 766px) {
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.15rem;
  }
  h3, .h3 {
    font-size: 1.5rem;
  }
  h4, .h4 {
    font-size: 1.4rem;
  }
  h5, .h5 {
    font-size: 1.3rem;
  }
  h6, .h6 {
    font-size: 1.125rem;
  }
}
img {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

pre {
  margin: 1em 0;
}

p {
  margin-bottom: 1em;
}

ul, ol {
  margin: 0 20px 1em;
}

a {
  text-decoration: none;
  color: var(--link-color);
}
a:hover {
  text-decoration: underline;
}

a.button {
  display: inline-flex;
  background-color: var(--accent-color);
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-family-sans-serif);
  height: 42px;
  width: 160px;
  text-decoration: none;
  border: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 100px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea {
  width: 100%;
  border: 1px solid var(--text-color);
  padding: 5px;
  font-size: 1rem;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus,
textarea:focus {
  outline: none;
  box-shadow: 0px 1px 0px var(--text-color);
}

input[type=button],
input[type=submit],
button[type=button],
button[type=button]:not(.parota-favorite-btn),
button[type=submit] {
  border: 1px solid var(--light);
  color: #fff;
  padding: 7px 30px;
  font-size: 1rem;
  margin-right: -70px;
}
input[type=button]:focus,
input[type=submit]:focus,
button[type=button]:focus,
button[type=button]:not(.parota-favorite-btn):focus,
button[type=submit]:focus {
  outline: none;
  box-shadow: 0px 1px 0px #000;
}

#page {
  max-width: 100%;
}

.font-serif {
  font-family: var(--font-family-serif) !important;
}

.font-sans-serif {
  font-family: var(--font-family-sans-serif) !important;
}

#site-header {
  color: var(--light);
  transition: all 300ms;
  position: relative;
  height: auto;
  top: 0;
}
#site-header .top-bar {
  background: var(--dark);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
}
#site-header .top-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#site-header .top-bar p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  font-family: var(--font-family-sans-serif);
  font-weight: 400;
}
#site-header .inner-top {
  background: var(--light);
  color: var(--dark);
  transition: all 200ms;
  position: relative;
  width: 100%;
  padding: 20px 0;
}
#site-header .inner-top .brand {
  display: flex;
  justify-content: center;
  align-items: center;
}
#site-header .inner-top .brand img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
}
#site-header .inner-top .header-account {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#site-header .inner-top .header-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
#site-header .inner-top .header-cart {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  position: relative;
}
#site-header .inner-top .header-cart .cart-icon img {
  width: 70px;
  height: 41px;
  display: block;
}
#site-header .inner-top .header-cart .cart-count {
  position: absolute;
  right: -4px;
  top: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50px;
  background: var(--light);
  border: 1px solid var(--dark);
  color: var(--dark);
  line-height: 18px;
  text-align: center;
  font-size: 11px;
}
#site-header .inner-top .header-favorite {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
#site-header .inner-top .header-favorite img {
  width: 60px;
  height: 31px;
  display: block;
}
#site-header .inner-top .header-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light);
  background: var(--light);
}
#site-header .inner-top .header-search img {
  width: 30px;
  height: 18px;
  display: block;
}

.hearder-line {
  width: 100%;
  height: 1px;
  background: var(--dark);
  margin-bottom: 10px;
}

.inner-menu {
  background: var(--light);
  color: var(--dark);
  min-height: 50px;
}
.inner-menu .menu-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.inner-menu .menu-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-top: 0;
}
.inner-menu .menu-social {
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 1px solid var(--dark);
  justify-content: center;
  min-height: 50px;
  margin-top: 0;
  padding-left: 24px;
  justify-self: end;
}
.inner-menu .menu-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.inner-menu .menu-social img {
  width: 20px;
  height: 20px;
  display: block;
}
.inner-menu a {
  color: var(--dark);
  font-family: var(--font-family-sans-serif);
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .inner-menu #nav-header ul.menu {
    display: flex !important;
    padding: 0;
    margin: 0;
    justify-content: center;
    list-style: none;
  }
  .inner-menu #nav-header ul.menu ul.sub-menu {
    display: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--gray-500);
    list-style: none;
    min-width: 220px;
  }
  .inner-menu #nav-header ul.menu li {
    line-height: 20px;
    text-transform: uppercase;
    position: relative;
  }
  .inner-menu #nav-header ul.menu li:hover > ul.sub-menu {
    display: block;
    z-index: 99;
  }
  .inner-menu #nav-header ul.menu li:hover > ul.sub-menu a {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .inner-menu #nav-header ul.menu li .wrap-nav-link {
    display: block;
  }
  .inner-menu #nav-header ul.menu li a {
    padding: 10px 15px;
    display: block;
  }
}

@media (max-width: 1023px) {
  #site-header .inner-top {
    padding: 16px 0;
  }
  #site-header .inner-top .brand {
    justify-content: center;
    margin-bottom: 12px;
  }
  #site-header .inner-top .brand img {
    max-width: 150px;
  }
  #site-header .inner-top .header-icons {
    justify-content: center;
    gap: 14px;
  }
  #site-header .inner-top .header-cart .cart-icon img {
    width: 56px;
    height: auto;
  }
  #site-header .inner-top .header-favorite img {
    width: 48px;
    height: auto;
  }
  #site-header .inner-top .header-search img {
    width: 24px;
    height: auto;
  }
  .inner-menu {
    padding: 10px 0;
  }
  .inner-menu .menu-bar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .inner-menu .menu-nav {
    width: 100%;
    margin-top: 0;
  }
  .inner-menu .menu-social {
    border-left: 0;
    border-top: 1px solid var(--dark);
    padding-left: 0;
    padding-top: 12px;
    min-height: auto;
    margin-top: 0;
    width: 100%;
  }
  .inner-menu #nav-header {
    width: 100%;
  }
  .inner-menu #nav-header ul.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .inner-menu #nav-header ul.menu li {
    width: 100%;
    text-align: center;
    position: relative;
    text-transform: uppercase;
  }
  .inner-menu #nav-header ul.menu li a {
    display: block;
    padding: 8px 12px;
  }
  .inner-menu #nav-header ul.menu li ul.sub-menu {
    display: block;
    position: static;
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .inner-menu #nav-header ul.menu li ul.sub-menu li a {
    padding: 6px 12px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #site-header .top-bar {
    padding: 8px 14px;
  }
  #site-header .top-bar p {
    font-size: 11px;
  }
  #site-header .inner-top {
    padding: 14px 0;
  }
  #site-header .inner-top .brand {
    margin-bottom: 10px;
  }
  #site-header .inner-top .brand img {
    max-width: 120px;
  }
  #site-header .inner-top .header-icons {
    justify-content: center;
    gap: 10px;
  }
  #site-header .inner-top .header-cart .cart-icon img {
    width: 44px;
  }
  #site-header .inner-top .header-cart .cart-count {
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 10px;
  }
  #site-header .inner-top .header-favorite img {
    width: 38px;
  }
  #site-header .inner-top .header-search img {
    width: 20px;
  }
  .hearder-line {
    margin-bottom: 6px;
  }
  .inner-menu {
    min-height: auto;
    padding: 8px 0 14px;
  }
  .inner-menu .menu-bar {
    flex-direction: column;
    gap: 10px;
  }
  .inner-menu .menu-nav {
    width: 100%;
  }
  .inner-menu .menu-social {
    width: 100%;
    border-left: 0;
    border-top: 1px solid var(--dark);
    padding-left: 0;
    padding-top: 10px;
    gap: 16px;
  }
  .inner-menu .menu-social img {
    width: 18px;
    height: 18px;
  }
  .inner-menu a {
    font-size: 14px;
  }
  .inner-menu #nav-header {
    width: 100%;
  }
  .inner-menu #nav-header ul.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .inner-menu #nav-header ul.menu li {
    width: 100%;
    text-align: center;
  }
  .inner-menu #nav-header ul.menu li a {
    padding: 8px 10px;
  }
  .inner-menu #nav-header ul.menu li ul.sub-menu {
    display: block;
    position: static;
    background: transparent;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .inner-menu #nav-header ul.menu li ul.sub-menu li a {
    padding: 5px 10px;
    font-size: 13px;
  }
}
.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}
.whatsapp-button a {
  width: 208px;
  height: 52px;
  background: rgba(255, 255, 255, 0.5490196078);
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.11);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  text-decoration: none;
}
.whatsapp-button img {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.whatsapp-button .message {
  font-size: 11px;
  line-height: 1.2;
  color: var(--dark);
  max-width: 135px;
}

@media (max-width: 767px) {
  .whatsapp-button {
    right: 14px;
    bottom: 14px;
    position: center;
  }
  .whatsapp-button a {
    width: 208px;
    height: 52px;
  }
}
/**
	WORDPRESS GENERIC
 */
/* =WordPress Core
-------------------------------------------------------------- */
.commentlist {
  margin: 0 0 50px;
  list-style: none;
  border-bottom: 1px solid var(--text-color);
}
.commentlist ul, .commentlist ol {
  list-style: none;
}
.commentlist .comment {
  border-radius: 5px;
  border-top: 1px solid var(--text-color);
  padding: 20px 0;
}
.commentlist .comment .comment-author a {
  font-size: 14px;
}
.commentlist .comment .comment-author img {
  vertical-align: bottom;
}
.commentlist .comment .comment-text {
  padding: 20px 15px;
}
.commentlist .comment .comment-text .reply {
  text-align: right;
  font-size: 14px;
}
.commentlist .comment .comment-text .reply a {
  display: inline-block;
  margin-left: 20px;
}

.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-quote {
  padding: 1.5em !important;
  margin: 1em 0;
  border-left: 5px solid;
}
.wp-block-quote cite {
  font-size: 95%;
}

.wp-block-image {
  margin-top: 40px;
  max-width: 100%; /* Image does not overflow the content area */
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
  font-size: 14px;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

[class*=wp-block-embed] {
  margin: 1em 0;
}

.wp-block-embed-youtube {
  position: relative;
  width: 100%;
}
.wp-block-embed-youtube iframe {
  width: 100%;
  height: 56.25vw;
  max-height: 450px;
}

iframe[src*=youtube],
iframe[src*=youtu],
iframe[src*=vimeo],
iframe[src*=flv],
iframe[src*=".mpeg"] {
  width: 100%;
  height: 56.25vw;
  max-height: 450px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* calendar widget */
#wp-calendar {
  width: 100%;
}

#wp-calendar caption {
  text-align: right;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#wp-calendar thead {
  font-size: 12px;
}

#wp-calendar thead th {
  padding: 5px 0;
  border: 1px solid;
}

#wp-calendar tbody {
  color: #aaa;
}

#wp-calendar tbody td {
  background: transparent;
  border: 1px solid;
  text-align: center;
  padding: 8px;
}

#wp-calendar tbody td:not(.pad):hover {
  background: rgba(255, 255, 255, 0.25);
}

#wp-calendar tbody .pad {
  background: none;
}

#wp-calendar tfoot #next {
  font-size: 12px;
  text-transform: uppercase;
  text-align: right;
}

#wp-calendar tfoot #prev {
  font-size: 12px;
  text-transform: uppercase;
  padding-top: 10px;
}

#sidebar {
  background-color: var(--light);
  width: 342px;
  height: 941px;
  align-content: center;
}
#sidebar .widget {
  width: 342px;
  width: -moz-fit-content;
  width: fit-content;
}
#sidebar .widget .widgettitle {
  margin: 0 0 5px;
  border-bottom: 3px solid;
  background-color: aqua;
}
#sidebar ul, #sidebar ol {
  margin: 1em 0;
}
#sidebar ul li, #sidebar ol li {
  margin-bottom: 0.25em;
}

.widget #searchform label {
  display: none;
}

#site-footer {
  background: var(--olives);
  color: var(--light);
  padding: 40px 0;
}
#site-footer a {
  color: var(--light);
  text-decoration: none;
}
#site-footer nav ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
#site-footer nav ul li {
  margin: 0;
  padding: 0;
}
#site-footer nav ul li span {
  display: block;
}
#site-footer nav ul li a {
  display: block;
  padding: 5px 10px;
}
#site-footer nav ul li ul {
  display: block;
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
}
#site-footer nav ul li ul li a {
  padding: 5px 10px;
}
#site-footer .legals {
  margin-top: 30px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
#site-footer .logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 320px;
}
#site-footer .logo img {
  max-width: 160px;
  width: 100%;
  height: auto;
  display: block;
}
#site-footer .logo h2 {
  margin: 0;
  color: var(--gray-500);
}
#site-footer .logo-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
#site-footer .logo-right img {
  width: 77px;
  height: auto;
  display: block;
}
#site-footer .links {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  color: var(--whites);
  font-size: 24px;
  line-height: 1.4;
}
#site-footer .social {
  margin: 40px auto 0;
  text-align: center;
}
#site-footer .social .social-link {
  display: inline-block;
  padding: 5px 10px;
}
#site-footer .social .social-link img {
  height: 40px;
  width: auto;
  display: block;
}
#site-footer .address {
  max-width: 500px;
  margin: 30px auto 0;
  text-align: center;
}
#site-footer .address img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#copyright {
  margin-top: 40px;
}
#copyright .copyright-line {
  width: 100%;
  height: 2px;
  background: var(--whites);
  margin-bottom: 20px;
}
#copyright .copyright-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
#copyright .copyright-left,
#copyright .copyright-right a {
  font-size: 15px;
  color: var(--whites);
  font-weight: 400;
  font-family: var(--font-family-sans-serif);
}
#copyright .copyright-right a {
  text-decoration: underline;
}

@media (max-width: 991px) {
  #site-footer .legals {
    justify-content: center;
    text-align: center;
  }
  #site-footer .logo {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  #site-footer .logo img {
    max-width: 140px;
  }
  #site-footer .logo-right {
    flex: 0 0 100%;
  }
  #site-footer .logo-right img {
    width: 70px;
  }
  #site-footer .links {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
    font-size: 20px;
  }
  #copyright .copyright-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 767px) {
  #site-footer {
    padding: 30px 0;
  }
  #site-footer nav ul {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  #site-footer nav ul li {
    width: 100%;
    text-align: center;
  }
  #site-footer nav ul li a {
    padding: 6px 0;
  }
  #site-footer nav ul li ul {
    margin-top: 2px;
  }
  #site-footer nav ul li ul li a {
    padding: 4px 0;
  }
  #site-footer .legals {
    margin-top: 24px;
    padding: 16px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
  }
  #site-footer .logo {
    flex: 1 1 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  #site-footer .logo img {
    max-width: 120px;
  }
  #site-footer .logo h2 {
    font-size: 20px;
  }
  #site-footer .logo-right {
    flex: 0 0 auto;
  }
  #site-footer .logo-right img {
    width: 56px;
  }
  #site-footer .links {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
  }
  #site-footer .social {
    margin: 24px auto 0;
  }
  #site-footer .social .social-link {
    padding: 5px 8px;
  }
  #site-footer .social .social-link img {
    height: 32px;
  }
  #site-footer .address {
    max-width: 100%;
    padding: 0 16px;
    margin-top: 24px;
  }
  #copyright {
    margin-top: 30px;
  }
  #copyright .copyright-line {
    margin-bottom: 14px;
  }
  #copyright .copyright-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  #copyright .copyright-left,
  #copyright .copyright-right a {
    font-size: 13px;
  }
}
.product-single-page {
  padding: 40px 0 80px;
  background: #fff;
}
.product-single-page .onsale {
  display: none !important;
}

.ps-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.ps-layout {
  display: grid;
  grid-template-columns: 55% 42%;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .ps-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.custom-thumb-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 72px;
  flex-shrink: 0;
  margin-right: 40px;
}
.custom-thumb-nav .custom-thumb {
  width: 72px;
  height: 93px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.custom-thumb-nav .custom-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.custom-thumb-nav .custom-thumb.active, .custom-thumb-nav .custom-thumb:hover {
  border-color: #000;
}

.ps-gallery .woocommerce-product-gallery {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
}
.ps-gallery .woocommerce-product-gallery__wrapper {
  flex: 1;
  background: #F7F7F6;
}
.ps-gallery .woocommerce-product-gallery__image {
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F7F6;
}
.ps-gallery .woocommerce-product-gallery__image img {
  width: auto !important;
  height: 100% !important;
  max-width: 100% !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  display: block;
}
.ps-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #7D848A;
}
.ps-gallery .woocommerce-product-gallery__trigger:hover {
  color: #000;
}

.ps-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ps-summary .woocommerce-breadcrumb {
  font-family: var(--font-family-sans-serif);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #7D848A;
  text-transform: uppercase;
  margin: 0;
}
.ps-summary .woocommerce-breadcrumb a {
  color: #7D848A;
  text-decoration: none;
}
.ps-summary .woocommerce-breadcrumb a:hover {
  color: #000;
}

.ps-title {
  font-family: var(--font-family-sans-serif);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ps-price .price {
  font-family: var(--font-family-sans-serif);
  font-size: clamp(28px, 4vw, 38px);
  color: #000 !important;
  font-weight: 400;
}
.ps-price .price del {
  color: #EFEFEF !important;
  margin-right: 6px;
  font-size: 1.1rem;
  opacity: 0.8;
}
.ps-price .price del span {
  color: #EFEFEF !important;
}
.ps-price .price ins {
  text-decoration: none;
  font-weight: 500;
  color: #000 !important;
}
.ps-price .price ins span {
  color: #000 !important;
}

.ps-short-desc {
  font-family: var(--font-family-sans-serif);
  font-size: 15px;
  color: #707070;
  line-height: 1.7;
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid #F7F7F6;
}

.ps-form table.variations {
  display: block !important;
}
.ps-form table.variations tbody {
  display: block !important;
}
.ps-form table.variations tr {
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 14px !important;
}
.ps-form table.variations th.label {
  display: block !important;
  text-align: left !important;
  padding: 0 0 6px 0 !important;
  border: none !important;
  width: 100% !important;
}
.ps-form table.variations th.label label {
  font-family: var(--font-family-sans-serif) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #000 !important;
  text-align: left !important;
}
.ps-form table.variations td.value {
  display: block !important;
  padding: 0 !important;
  border: none !important;
  width: 100% !important;
  position: relative;
}
.ps-form table.variations td.value::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--private);
  border-bottom: 2px solid var(--private);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.ps-form table.variations td.value select,
.ps-form .variations select {
  width: 100% !important;
  padding: 11px 28px 11px 14px !important;
  border: none !important;
  border-bottom: 1px solid #EFEFEF !important;
  border-radius: 0 !important;
  font-family: var(--font-family-sans-serif) !important;
  font-size: 18px !important;
  color: #707070 !important;
  background-color: #fff !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  background-repeat: no-repeat !important;
  background-position: right 4px center !important;
  cursor: pointer !important;
  transition: border-color 0.2s !important;
}
.ps-form table.variations td.value select:focus,
.ps-form .variations select:focus {
  outline: none !important;
  border-bottom-color: #EFEFEF !important;
}
.ps-form .woocommerce-variation-add-to-cart,
.ps-form form.cart {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  margin-top: 8px;
}
.ps-form .quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #707070;
  height: 50px;
  width: 160px;
  justify-content: space-between;
  padding: 0;
  overflow: hidden;
}
.ps-form .quantity input.qty {
  width: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  flex-shrink: 0 !important;
}
.ps-form .quantity .qty-minus,
.ps-form .quantity .qty-plus {
  background: var(--light) !important;
  border: none !important;
  box-shadow: none !important;
  width: 40px;
  height: 100%;
  margin-right: 10px;
  font-size: 18px;
  cursor: pointer;
  color: #000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0 !important;
}
.ps-form .quantity .qty-minus:hover,
.ps-form .quantity .qty-plus:hover {
  background: #F7F7F6 !important;
}
.ps-form .quantity .qty-minus:focus, .ps-form .quantity .qty-minus:active,
.ps-form .quantity .qty-plus:focus,
.ps-form .quantity .qty-plus:active {
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
.ps-form .quantity .qty {
  width: 40px;
  height: 100%;
  border: none;
  text-align: center;
  font-family: var(--font-family-sans-serif);
  font-size: 15px;
  color: #000;
  background: var(--light);
}
.ps-form .quantity .qty::-webkit-outer-spin-button, .ps-form .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.ps-form .quantity .qty:focus {
  outline: none;
}
.ps-form .single_add_to_cart_button {
  width: 100% !important;
  height: 86px;
  background-color: #555555 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: var(--font-family-sans-serif) !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.25s !important;
  white-space: nowrap !important;
  padding: 15px 20px !important;
}
.ps-form .single_add_to_cart_button:hover {
  background-color: #1F1F1F !important;
}
.ps-form .single_add_to_cart_button:focus, .ps-form .single_add_to_cart_button:active {
  background-color: #555555 !important;
  outline: none !important;
  box-shadow: none !important;
}
.ps-form .woocommerce-variation-price {
  margin-bottom: 10px;
}
.ps-form .woocommerce-variation-price .price {
  font-size: 1.3rem;
  color: #000 !important;
}

.ps-favorite-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.ps-favorite-row .parota-favorite-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border-right: none !important;
  padding: 10px 14px !important;
  cursor: pointer !important;
}
.ps-favorite-row .parota-favorite-btn img {
  width: 31px !important;
  height: 31px !important;
  display: block !important;
}
.ps-favorite-row .ps-favorite-label {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: var(--dark);
  border-left: none !important;
  height: 44px !important;
  line-height: 44px !important;
  display: block !important;
}

.ps-meta {
  font-family: var(--font-family-sans-serif);
  font-size: 16px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ps-meta .product_meta > span,
.ps-meta > span {
  display: block !important;
}
.ps-meta .sku_wrapper,
.ps-meta .posted_in,
.ps-meta .tagged_as {
  display: block !important;
  margin-bottom: 4px;
}
.ps-meta a {
  color: #4D46FF;
  text-decoration: none;
}
.ps-meta a:hover {
  color: #4D46FF;
}

.ps-related {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #F7F7F6;
}
.ps-related__title {
  font-family: var(--font-family-sans-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

.product-card {
  background: var(--pinks);
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, 0.274);
}
.product-card .product-image {
  position: relative;
  width: 100%;
  height: 330px;
  overflow: hidden;
  background: var(--pinks);
  flex-shrink: 0;
}
.product-card .product-image > a > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}
.product-card .product-image:hover > a > img {
  transform: scale(1.08);
}
.product-card .product-image .product-icons {
  position: absolute;
  top: 12px;
  right: 80px;
  display: flex;
  flex-direction: row;
  gap: 6px;
  z-index: 1;
  align-items: center;
  margin-top: 5px;
}
.product-card .product-image .product-icons a, .product-card .product-image .product-icons .parota-favorite-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  background: transparent !important;
  border: none !important;
  padding: 0;
  width: 32px;
  height: 32px !important;
}
.product-card .product-image .product-icons a img, .product-card .product-image .product-icons .parota-favorite-btn img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  position: static;
  mix-blend-mode: normal;
  transition: none;
  transform: none;
  margin-bottom: 15px;
}
.product-card .product-image .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  padding: 4px 8px;
  color: var(--light);
  border-radius: 3px;
  z-index: 1;
}
.product-card .product-image .product-badge.sale {
  background: var(--sales);
}
.product-card .product-image .product-badge.new {
  background: var(--olives);
}
.product-card .product-info {
  background: var(--light);
  width: 100% !important;
  height: 140px !important;
  min-height: 140px !important;
  max-height: 140px !important;
  padding: 10px 12px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 2px 6px;
  margin-top: auto;
  overflow: hidden !important;
}
.product-card .product-info .product-title {
  font-size: 15px;
  margin: 0;
  font-weight: 500;
  grid-row: 1/3;
  grid-column: 1;
  margin-top: 10px;
  align-self: center;
  line-height: 1.3;
}
.product-card .product-info .product-title a {
  color: inherit;
  text-decoration: none;
}
.product-card .product-info .product-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-top: 10px;
  grid-row: 1;
  grid-column: 2;
  align-self: end;
}
.product-card .product-info .custom-text {
  font-size: 12px;
  color: var(--olives);
  grid-row: 3;
  grid-column: 1;
  align-self: center;
}
.product-card .product-info .add-to-cart {
  font-size: 13px;
  color: var(--browns);
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
  margin-top: 5px;
  grid-row: 3;
  grid-column: 2;
  align-self: center;
  transition: color 0.2s;
}
.product-card .product-info .add-to-cart:hover {
  color: var(--sales) !important;
}

@media (max-width: 767px) {
  ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    padding: 0 16px !important;
  }
  .product-card .product-image {
    height: 180px !important;
  }
  .product-card .product-image .product-icons {
    top: 10px !important;
    right: 8px !important;
    gap: 4px !important;
    z-index: 5 !important;
  }
  .product-card .product-image .product-icons a,
  .product-card .product-image .product-icons .parota-favorite-btn {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    margin-top: -10px;
    margin-right: 0px;
    padding: 0 !important;
    background: transparent !important;
  }
  .product-card .product-image .product-icons a img,
  .product-card .product-image .product-icons .parota-favorite-btn img {
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .product-card .product-image .product-badge {
    font-size: 9px;
    padding: 3px 6px;
  }
  .product-card .product-info {
    height: 120px !important;
    min-height: 120px !important;
    max-height: 120px !important;
    padding: 8px;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto auto;
    gap: 4px;
  }
  .product-card .product-info .product-title {
    grid-column: 1;
    grid-row: 1;
    font-size: 12px;
    line-height: 1.2;
    margin-top: 0;
  }
  .product-card .product-info .product-price {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
    font-size: 12px;
    margin-top: 0;
  }
  .product-card .product-info .custom-text {
    grid-column: 1;
    grid-row: 3;
    font-size: 10px;
  }
  .product-card .product-info .add-to-cart {
    grid-column: 1;
    grid-row: 4;
    text-align: left;
    font-size: 11px;
    margin-top: 0;
  }
  .woocommerce ul.products,
  ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    align-items: stretch !important;
    padding: 0 12px !important;
    margin: 0 !important;
  }
  .woocommerce ul.products::before,
  .woocommerce ul.products::after,
  ul.products::before,
  ul.products::after {
    display: none !important;
  }
  .woocommerce ul.products li.product,
  ul.products li.product {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
    display: block !important;
  }
  .product-card {
    height: 100% !important;
  }
}
.mini-cart-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0 12px;
}

.mini-cart-title {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.mini-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

/* ---------- Dividers ---------- */
.mini-cart-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 16px;
}

/* ---------- Product list ---------- */
.woocommerce-mini-cart.cart_list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  overflow-y: auto;
}

/* ---------- Each product item ---------- */
.woocommerce-mini-cart-item.mini_cart_item {
  position: relative;
  padding: 10px 28px 10px 0; /* right space for × button */
  border-bottom: none;
}

/* Remove (×) button */
.woocommerce-mini-cart-item .remove_from_cart_button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
  color: #999;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.woocommerce-mini-cart-item .remove_from_cart_button:hover {
  color: #1a1a1a;
}

/* Product row: thumbnail + info side by side */
.mini-cart-product-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Thumbnail */
.mini-cart-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 4px;
  background: #f5f5f5;
}

.mini-cart-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.mini-cart-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Product info */
.mini-cart-product-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.mini-cart-product-name {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-cart-product-name:hover {
  text-decoration: underline;
}

/* Variation data (e.g. Camel, Parota) */
.mini-cart-product-info .variation {
  font-size: 12px;
  color: #777;
  margin: 0;
}

.mini-cart-product-info .variation dt,
.mini-cart-product-info .variation dd {
  display: inline;
  margin: 0;
  font-size: 12px;
  color: #777;
}

/* Quantity × Price */
.mini-cart-qty-price {
  font-size: 13px;
  color: #1a1a1a;
  margin-top: 2px;
}

/* ---------- Subtotal row ---------- */
.mini-cart-subtotal {
  border-top: 1px solid #e0e0e0;
  padding: 14px 0 10px;
}

.mini-cart-subtotal .woocommerce-Price-amount {
  font-size: 14px;
  font-weight: 500;
}

/* WooCommerce outputs a <strong> label + amount */
.woocommerce-mini-cart__total.total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #1a1a1a;
  border-top: 1px solid #e0e0e0;
  padding: 14px 0 10px;
}

/* ---------- Buttons ---------- */
.mini-cart-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 16px;
}

/* "Pagar" / Checkout button — black, full width */
.mini-cart-buttons .checkout.wc-forward,
.mini-cart-buttons a.checkout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  box-sizing: border-box;
}

.mini-cart-buttons .checkout.wc-forward:hover,
.mini-cart-buttons a.checkout:hover {
  background: #333;
}

/* "Ver carrito" link — text link with arrow */
.mini-cart-buttons .button.wc-forward:not(.checkout) {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #1a1a1a;
  font-size: 13px;
  text-decoration: none;
  padding: 0;
  cursor: pointer;
  transition: gap 0.2s;
}

.mini-cart-buttons .button.wc-forward:not(.checkout)::after {
  content: "›";
  font-size: 16px;
  line-height: 1;
}

.mini-cart-buttons .button.wc-forward:not(.checkout):hover {
  gap: 8px;
}

/* ---------- Empty cart ---------- */
.woocommerce-mini-cart__empty-message {
  font-size: 14px;
  color: #777;
  padding: 20px 0;
}

.cart-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgb(227.8, 227.8, 224.4);
  margin-bottom: 48px;
  height: 129px;
  width: 100%;
}
.cart-steps .cart-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 16px;
  border-right: 1px solid rgb(227.8, 227.8, 224.4);
  font-size: 19px;
  color: #7D848A;
  font-weight: 500 !important;
}
.cart-steps .cart-step:last-child {
  border-right: none;
}
.cart-steps .cart-step.active, .cart-steps .cart-step.done {
  color: #000;
}
.cart-steps .cart-step.active .step-number, .cart-steps .cart-step.done .step-number {
  background: #000 !important;
  color: #fff !important;
}
.cart-steps .cart-step .step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgb(227.8, 227.8, 224.4);
  color: #7D848A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.cart-steps .cart-step .step-label {
  font-size: 19px;
  letter-spacing: 0.02em;
}

a.cart-btn-continue {
  display: block !important;
  width: 523px !important;
  height: 86px !important;
  padding: 0 16px !important;
  line-height: 86px !important;
  text-align: center !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #000 !important;
  border: 1px dashed #3d3d3d !important;
  margin-bottom: 10px !important;
}
a.cart-btn-continue:hover {
  background: #F7F7F6 !important;
  color: #000 !important;
}

.parota-cart-table {
  width: 100%;
  max-width: 1073px;
  border-collapse: collapse;
  margin-bottom: 0;
}
.parota-cart-table thead tr {
  border-bottom: 1px solid rgb(227.8, 227.8, 224.4);
}
.parota-cart-table th {
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  color: var(--dark) !important;
  padding: 0 16px !important;
  height: 86px !important;
  text-align: left !important;
  background: var(--gray-400) !important;
  vertical-align: middle !important;
}
.parota-cart-table th.col-price, .parota-cart-table th.col-quantity, .parota-cart-table th.col-total {
  text-align: center !important;
}
.parota-cart-table th.col-remove {
  width: 48px;
}
.parota-cart-table tbody tr {
  border-bottom: 1px solid rgb(227.8, 227.8, 224.4);
}
.parota-cart-table tbody tr:last-child {
  border-bottom: none;
}
.parota-cart-table td {
  padding: 24px 16px !important;
  vertical-align: middle !important;
  font-size: 15px !important;
  color: #000 !important;
  background: transparent !important;
}
.parota-cart-table td.col-price, .parota-cart-table td.col-total {
  text-align: center !important;
}
.parota-cart-table td.col-quantity {
  text-align: center !important;
}
.parota-cart-table td.col-remove {
  text-align: center !important;
}

.cart-product {
  display: flex !important;
  align-items: center !important;
  gap: 20px;
}
.cart-product .cart-product-thumb {
  width: 133px;
  height: 173px;
  flex-shrink: 0;
  background: rgb(237.4, 237.4, 235.2);
  overflow: hidden;
}
.cart-product .cart-product-thumb img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  display: block !important;
}
.cart-product .cart-product-info {
  font-size: 15px;
}
.cart-product .cart-product-info a {
  color: #000 !important;
  text-decoration: none !important;
}
.cart-product .cart-product-info a:hover {
  text-decoration: underline !important;
}
.cart-product .cart-product-info .variation,
.cart-product .cart-product-info dl.variation {
  margin: 6px 0 0;
  font-size: 12px;
  color: #7D848A;
}
.cart-product .cart-product-info .variation dt,
.cart-product .cart-product-info dl.variation dt {
  display: inline;
  font-weight: 400;
  margin: 0;
}
.cart-product .cart-product-info .variation dt::after,
.cart-product .cart-product-info dl.variation dt::after {
  content: " ";
}
.cart-product .cart-product-info .variation dd,
.cart-product .cart-product-info dl.variation dd {
  display: inline;
  margin: 0;
}
.cart-product .cart-product-info .variation dd::after,
.cart-product .cart-product-info dl.variation dd::after {
  content: "\a";
  white-space: pre;
}
.cart-product .cart-product-info .variation dd p,
.cart-product .cart-product-info dl.variation dd p {
  display: inline;
  margin: 0;
}

.cart-remove {
  font-size: 20px !important;
  color: #EFEFEF !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: color 0.2s;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}
.cart-remove:hover {
  color: #000 !important;
}

.parota-cart {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  font-family: "DM Sans", sans-serif;
}
.parota-cart .cart-qty {
  display: inline-flex !important;
  align-items: center !important;
  border: 1px solid #dfdfdb !important;
  height: 44px;
  width: 157px;
  background: var(--light) !important;
}
.parota-cart .cart-qty .cart-qty-minus,
.parota-cart .cart-qty .cart-qty-plus {
  background: var(--light) !important;
  border: none !important;
  box-shadow: none !important;
  width: 36px !important;
  height: 100% !important;
  font-size: 18px !important;
  cursor: pointer !important;
  color: #000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0;
}
.parota-cart .cart-qty .cart-qty-minus:hover,
.parota-cart .cart-qty .cart-qty-plus:hover {
  background: #F7F7F6 !important;
}
.parota-cart .cart-qty .cart-qty-minus:focus, .parota-cart .cart-qty .cart-qty-minus:active,
.parota-cart .cart-qty .cart-qty-plus:focus,
.parota-cart .cart-qty .cart-qty-plus:active {
  outline: none !important;
  box-shadow: none !important;
}
.parota-cart .cart-qty .quantity {
  flex: 1;
  height: 100%;
  background: var(--light) !important;
  border: none !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.parota-cart .cart-qty .quantity::before, .parota-cart .cart-qty .quantity::after {
  content: none !important;
  display: none !important;
}
.parota-cart .cart-qty .quantity input.qty {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  text-align: center !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 17px !important;
  color: #000 !important;
  background: var(--light) !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.parota-cart .cart-qty .quantity input.qty::-webkit-outer-spin-button, .parota-cart .cart-qty .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.parota-cart .cart-qty .quantity input.qty:focus {
  outline: none !important;
  box-shadow: none !important;
}
.parota-cart .cart-bottom {
  margin-top: 48px;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 24px;
  width: 1073px;
}
.parota-cart .cart-coupon {
  flex: 1;
  max-width: 420px;
}
.parota-cart .cart-coupon input[type=text] {
  display: block !important;
  margin-top: 56px;
  width: 523px !important;
  height: 86px !important;
  border: 1px dashed #3d3d3d !important;
  padding: 0 20px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 16px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #000 !important;
  background: #fff !important;
  outline: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  border-radius: 0 !important;
}
.parota-cart .cart-coupon input[type=text]::-moz-placeholder {
  color: #7D848A;
}
.parota-cart .cart-coupon input[type=text]::placeholder {
  color: #7D848A;
}
.parota-cart .cart-coupon input[type=text]:focus {
  border-color: #707070 !important;
  border-style: dashed !important;
}
.parota-cart .cart-right {
  width: 523px;
  display: flex;
  flex-direction: column;
}
.parota-cart .cart-collaterals {
  width: 100%;
}
.parota-cart .cart-collaterals .cart_totals {
  width: 100% !important;
  margin-right: 2px;
  margin-bottom: 40px;
}
.parota-cart .cart-collaterals .cart_totals h2 {
  font-family: "DM Sans", sans-serif !important;
  font-size: 25px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  margin-bottom: 20px !important;
  color: #000 !important;
}
.parota-cart .cart-collaterals .cart_totals table {
  width: 523px !important;
  table-layout: fixed !important;
  border-collapse: collapse !important;
  background: transparent !important;
  border: none !important;
}
.parota-cart .cart-collaterals .cart_totals table tr {
  border-bottom: 0 !important;
}
.parota-cart .cart-collaterals .cart_totals table tr:last-child {
  border-bottom: none;
}
.parota-cart .cart-collaterals .cart_totals table th, .parota-cart .cart-collaterals .cart_totals table td {
  padding: 0 20px !important;
  height: 86px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 20px !important;
  color: #000 !important;
  background: transparent !important;
  vertical-align: middle !important;
  border: none !important;
}
.parota-cart .cart-collaterals .cart_totals table th {
  font-weight: 400 !important;
  color: #000 !important;
  text-align: left !important;
  width: 50%;
  background: rgb(242.2, 242.2, 240.6) !important;
}
.parota-cart .cart-collaterals .cart_totals table td {
  text-align: right !important;
  color: #000 !important;
  background: #fff !important;
}
.parota-cart .cart-collaterals .cart_totals table tr.order-total th,
.parota-cart .cart-collaterals .cart_totals table tr.order-total td {
  font-weight: 600 !important;
}
.parota-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  display: none !important;
}
.parota-cart .cart-nav-buttons {
  width: 523px;
  display: flex !important;
  flex-direction: column !important;
}
.parota-cart .cart-nav-buttons .cart-btn-update {
  display: block !important;
  width: 100% !important;
  height: 86px !important;
  padding: 0 16px !important;
  line-height: 86px !important;
  text-align: center !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  box-sizing: border-box !important;
  border-radius: 0 !important;
  background: #707070 !important;
  color: #fff !important;
  border: none !important;
  cursor: pointer !important;
  margin-bottom: 10px !important;
}
.parota-cart .cart-nav-buttons a.cart-btn-checkout {
  display: block !important;
  width: 100% !important;
  height: 86px !important;
  padding: 0 16px !important;
  line-height: 86px !important;
  text-align: center !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  letter-spacing: 0.14em !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  border-radius: 0 !important;
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  margin-bottom: 10px !important;
}
@media (max-width: 768px) {
  .parota-cart .parota-cart-table {
    width: 100%;
    max-width: 100%;
  }
  .parota-cart .parota-cart-table thead {
    display: none;
  }
  .parota-cart .parota-cart-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "product product" "price   quantity" "remove  total";
    padding: 20px 0;
  }
  .parota-cart .parota-cart-table td.col-product {
    grid-area: product;
  }
  .parota-cart .parota-cart-table td.col-price {
    grid-area: price;
    text-align: left !important;
  }
  .parota-cart .parota-cart-table td.col-quantity {
    grid-area: quantity;
  }
  .parota-cart .parota-cart-table td.col-remove {
    grid-area: remove;
  }
  .parota-cart .parota-cart-table td.col-total {
    grid-area: total;
    text-align: right !important;
  }
  .parota-cart .cart-bottom {
    flex-direction: column !important;
    width: 100%;
  }
  .parota-cart .cart-coupon {
    max-width: 70%;
  }
  .parota-cart .cart-coupon input[type=text] {
    width: 250px !important;
    margin-top: 0;
  }
  .parota-cart .cart-right,
  .parota-cart .cart-nav-buttons {
    width: 100%;
  }
}

.parota-favorites-list {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  font-family: "DM Sans", sans-serif;
}
.parota-favorites-list .col-add {
  text-align: right !important;
}
.parota-favorites-list .col-add a.cart-btn-checkout {
  display: inline-block !important;
  width: auto !important;
  height: 56px !important;
  padding: 0 32px !important;
  line-height: 56px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-decoration: none !important;
  background: #707070 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  transition: background 0.2s;
}
.parota-favorites-list .col-add a.cart-btn-checkout:hover {
  background: rgb(91.6, 91.6, 91.6) !important;
}
.parota-favorites-list .cart-nav-buttons {
  margin-top: 32px;
  width: 1073px;
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important;
}
@media (max-width: 768px) {
  .parota-favorites-list .parota-cart-table {
    width: 400px;
    max-width: 400px;
  }
  .parota-favorites-list .parota-cart-table thead {
    display: none;
  }
  .parota-favorites-list .parota-cart-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "product product" "price   remove" "add     add";
    padding: 20px 0;
  }
  .parota-favorites-list .parota-cart-table td.col-product {
    grid-area: product;
  }
  .parota-favorites-list .parota-cart-table td.col-price {
    grid-area: price;
    text-align: left !important;
  }
  .parota-favorites-list .parota-cart-table td.col-remove {
    grid-area: remove;
    text-align: right !important;
  }
  .parota-favorites-list .parota-cart-table td.col-add {
    grid-area: add;
    text-align: center !important;
  }
  .parota-favorites-list .parota-cart-table td.col-add a.cart-btn-checkout {
    width: 100% !important;
    display: block !important;
  }
  .parota-favorites-list .cart-nav-buttons {
    width: 100%;
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  .cart-steps {
    grid-template-columns: 1fr;
    width: 98%;
    height: auto;
  }
  .cart-steps .cart-step {
    border-right: none;
    border-bottom: 1px solid rgb(227.8, 227.8, 224.4);
    justify-content: flex-start;
    padding: 16px 20px;
  }
  .cart-steps .cart-step:last-child {
    border-bottom: none;
  }
  a.cart-btn-continue {
    width: 200px !important;
  }
}
.ps-related-cart {
  width: 70%;
  max-width: 1073px !important;
  margin: 80px auto 0 !important;
  padding: 0 !important;
}
.ps-related-cart .ps-related__title {
  margin-bottom: 32px;
}
.ps-related-cart .products.columns-4 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.ps-related-cart .products.columns-4::before, .ps-related-cart .products.columns-4::after {
  display: none !important;
}
.ps-related-cart .products.columns-4 li.product {
  width: 70% !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
}
@media (max-width: 992px) {
  .ps-related-cart .products.columns-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 576px) {
  .ps-related-cart .products.columns-4 {
    grid-template-columns: 1fr !important;
  }
}

.parota-thankyou {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.parota-thankyou .parota-thankyou-content {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.parota-thankyou .parota-thankyou-box {
  background: var(--gray-400);
  padding: 60px 48px;
  text-align: center;
  width: 989px !important;
  height: 453px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.parota-thankyou .parota-thankyou-box a.cart-btn-continue {
  margin: 0 auto !important;
  background: #fff !important;
}
.parota-thankyou .parota-thankyou-title {
  font-family: "DM Sans", sans-serif !important;
  font-size: 25px !important;
  font-weight: 800 !important;
  color: var(--dark) !important;
  margin-bottom: 50px !important;
}
.parota-thankyou .parota-thankyou-subtitle {
  font-family: "DM Sans", sans-serif !important;
  font-size: 16px !important;
  color: var(--dark) !important;
  font-weight: 500 !important;
  margin-bottom: 50px !important;
}

.parota-login {
  display: flex;
  justify-content: center;
  padding: 30px 2px 0px;
}
.parota-login .woocommerce-form-login,
.parota-login form.login,
.parota-login form.register {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  width: 100% !important;
  background: transparent !important;
}
.parota-login .parota-login-box {
  width: 100%;
  max-width: 523px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.parota-login .parota-login-title {
  font-family: "DM Sans", sans-serif !important;
  font-size: 25px !important;
  font-weight: 700 !important;
  color: #000 !important;
  margin-bottom: 20px !important;
}
.parota-login .parota-login-subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #7D848A;
  margin-bottom: 24px;
}
.parota-login .parota-login-register-btn {
  display: block !important;
  width: 523px !important;
  height: 86px;
  line-height: 50px !important;
  padding: 16px !important;
  text-align: center !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
  background: var(--olives) !important;
  color: var(--light) !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  margin-bottom: 20px !important;
  transition: background 0.2s;
}
.parota-login .parota-login-register-btn:hover {
  background: rgb(94.6934579439, 93.0747663551, 78.5065420561) !important;
  color: #fff !important;
}
.parota-login .parota-login-separator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  width: 523px;
}
.parota-login .parota-login-separator::before, .parota-login .parota-login-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #dfdfdb;
}
.parota-login .parota-login-separator span {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: #7D848A;
}
.parota-login .parota-login-field {
  margin-bottom: 12px;
}
.parota-login .parota-login-field input {
  width: 523px !important;
  height: 86px;
  line-height: 86px !important;
  border: 1px solid #dfdfdb !important;
  border-radius: 0 !important;
  padding: 0 16px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  color: #000 !important;
  background: #fff !important;
  outline: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}
.parota-login .parota-login-field input::-moz-placeholder {
  color: #7D848A;
}
.parota-login .parota-login-field input::placeholder {
  color: #7D848A;
}
.parota-login .parota-login-field input:focus {
  border-color: #7D848A !important;
}
.parota-login .parota-login-submit {
  display: block !important;
  width: 523px !important;
  height: 86px;
  text-align: center !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  background: var(--browns) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  margin-top: 4px !important;
  transition: background 0.2s;
  margin-bottom: 20px;
}
.parota-login .parota-login-submit:hover {
  background: rgb(102.375, 71.6625, 48.825) !important;
}
.parota-login .parota-login-footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.parota-login .parota-login-remember {
  width: 523px !important;
  justify-content: center !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 16px !important;
  color: #000 !important;
  cursor: pointer !important;
  margin-bottom: 15px;
}
.parota-login .parota-login-remember input[type=checkbox] {
  width: 21px !important;
  height: 21px !important;
  flex-shrink: 0;
}
.parota-login .parota-login-terms,
.parota-login .parota-login-lost {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: var(--private);
  text-align: center;
  margin: 0;
  margin-bottom: 110px;
}
.parota-login .parota-login-terms a,
.parota-login .parota-login-lost a {
  color: var(--privacid);
  text-decoration: underline;
}
.parota-login .parota-login-terms a:hover,
.parota-login .parota-login-lost a:hover {
  color: #000;
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: 100% !important;
  padding: 0 !important;
  float: none !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 100% !important;
  float: none !important;
  margin-bottom: 32px !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid rgb(227.8, 227.8, 224.4) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block !important;
  padding: 12px 20px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  color: #7D848A !important;
  text-decoration: none !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  color: #000 !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #000 !important;
  font-weight: 600 !important;
}

.parota-favorites-list {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  width: 100%;
  box-sizing: border-box;
}
.parota-favorites-list .parota-cart-table {
  width: 1073px;
  max-width: 1073px;
}
.parota-favorites-list .parota-cart-table th.col-add, .parota-favorites-list .parota-cart-table td.col-add {
  width: 500px !important;
  text-align: center !important;
}
.parota-favorites-list .parota-cart-table .cart-product-thumb {
  width: 100px;
  height: 100px;
}
.parota-favorites-list .col-add {
  text-align: center !important;
}
.parota-favorites-list .col-add a.cart-btn-checkout {
  display: block !important;
  width: 429px !important;
  margin: 0 auto !important;
  height: 86px !important;
  padding: 0 32px !important;
  line-height: 86px !important;
  text-align: center !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-decoration: none !important;
  background: #707070 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  transition: background 0.2s;
}
.parota-favorites-list .col-add a.cart-btn-checkout:hover {
  background: rgb(91.6, 91.6, 91.6) !important;
}
.parota-favorites-list .cart-nav-buttons {
  margin: 80px auto 0 !important;
  width: 523px !important;
  display: flex !important;
  flex-direction: column !important;
}
.parota-favorites-list .cart-nav-buttons a.cart-btn-checkout {
  display: block !important;
  width: 100% !important;
  height: 86px !important;
  line-height: 86px !important;
  text-align: center !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-decoration: none !important;
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  margin-bottom: 10px !important;
}
@media (max-width: 768px) {
  .parota-favorites-list .parota-cart-table {
    width: 100%;
    max-width: 100%;
  }
  .parota-favorites-list .parota-cart-table thead {
    display: none;
  }
  .parota-favorites-list .parota-cart-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "product product" "price   remove" "add     add";
    padding: 20px 0;
  }
  .parota-favorites-list .parota-cart-table td.col-product {
    grid-area: product;
  }
  .parota-favorites-list .parota-cart-table td.col-price {
    grid-area: price;
    text-align: left !important;
  }
  .parota-favorites-list .parota-cart-table td.col-remove {
    grid-area: remove;
    text-align: right !important;
  }
  .parota-favorites-list .parota-cart-table td.col-add {
    grid-area: add;
    text-align: center !important;
  }
  .parota-favorites-list .parota-cart-table td.col-add a.cart-btn-checkout {
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
  }
  .parota-favorites-list .cart-nav-buttons {
    width: 100% !important;
    justify-content: center !important;
  }
  .parota-favorites-list .cart-nav-buttons a.cart-btn-continue {
    width: 100% !important;
  }
}/*# sourceMappingURL=main.css.map */