ul.products li.product,
.zd-grid-item { position: relative; }
.zd-qv-btn {
position: absolute;
top: 8px;
right: 60px; z-index: 5;
width: 44px;
height: 44px;
padding: 0;
margin: 0;
border: 1.5px solid #e0e0e0;
border-radius: 50%;
background: #ffffff;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.18s ease;
box-shadow: 0 2px 6px rgba(0,0,0,0.06);
-webkit-tap-highlight-color: transparent;
font-family: inherit;
}
.zd-qv-btn .zd-qv-icon {
width: 20px;
height: 20px;
color: #999;
transition: color 0.18s ease, transform 0.18s ease;
}
.zd-qv-btn:hover,
.zd-qv-btn:focus-visible {
border-color: #2E7D32;
transform: scale(1.08);
box-shadow: 0 4px 10px rgba(46,125,50,0.18);
outline: none;
}
.zd-qv-btn:hover .zd-qv-icon,
.zd-qv-btn:focus-visible .zd-qv-icon {
color: #2E7D32;
}
.zd-qv-btn:active .zd-qv-icon {
transform: scale(0.92);
} @media (max-width: 768px) {
.zd-qv-btn {
width: 40px;
height: 40px;
top: 6px;
right: 52px; }
.zd-qv-btn .zd-qv-icon {
width: 18px;
height: 18px;
}
} .zd-qv-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
z-index: 99999;
display: none;
opacity: 0;
transition: opacity 0.25s ease;
overflow-y: auto;
padding: 20px;
box-sizing: border-box;
}
.zd-qv-overlay.is-visible {
display: flex;
align-items: center;
justify-content: center;
}
.zd-qv-overlay.is-active {
opacity: 1;
}
body.zd-qv-open {
overflow: hidden;
} .zd-qv-modal {
position: relative;
background: #fff;
border-radius: 16px;
width: 100%;
max-width: 900px;
max-height: 90vh;
overflow: hidden;
transform: scale(0.95);
transition: transform 0.25s ease;
box-shadow: 0 20px 60px rgba(0,0,0,0.25);
font-family: "Inter", sans-serif;
display: flex;
flex-direction: column;
}
.zd-qv-overlay.is-active .zd-qv-modal {
transform: scale(1);
} .zd-qv-close {
position: absolute;
top: 12px;
right: 12px;
z-index: 10;
width: 40px;
height: 40px;
padding: 0;
background: #fff;
border: 1.5px solid #e0e0e0;
border-radius: 50%;
color: #555;
font-size: 22px;
line-height: 1;
cursor: pointer;
transition: all 0.18s;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
font-family: inherit;
}
.zd-qv-close:hover,
.zd-qv-close:focus-visible {
border-color: #d32f2f;
color: #d32f2f;
outline: none;
} .zd-qv-loading {
padding: 80px 20px;
text-align: center;
color: #888;
font-size: 14px;
}
.zd-qv-loading::before {
content: '';
display: inline-block;
width: 32px;
height: 32px;
border: 3px solid #e0e0e0;
border-top-color: #2E7D32;
border-radius: 50%;
animation: zd-qv-spin 0.8s linear infinite;
margin-right: 12px;
vertical-align: middle;
}
@keyframes zd-qv-spin {
to { transform: rotate(360deg); }
} .zd-qv-content {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
flex: 1;
}
.zd-qv-product {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
min-height: 400px;
} .zd-qv-gallery {
background: #fafafa;
padding: 30px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.zd-qv-gallery img {
max-width: 100%;
max-height: 360px;
width: auto;
height: auto;
object-fit: contain;
} .zd-qv-gallery-badge {
position: absolute;
top: 16px;
left: 16px;
padding: 6px 12px;
background: #d97706;
color: #fff;
font-size: 12px;
font-weight: 700;
border-radius: 6px;
letter-spacing: 0.5px;
text-transform: uppercase;
}
.zd-qv-gallery-badge--sale { background: #d97706; }
.zd-qv-gallery-badge--new { background: #2E7D32; }
.zd-qv-gallery-badge--oos { background: #999; } .zd-qv-info {
padding: 36px 30px 30px;
display: flex;
flex-direction: column;
gap: 12px;
}
.zd-qv-category {
display: inline-block;
padding: 4px 12px;
background: #f0faf0;
color: #2E7D32;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.5px;
text-transform: uppercase;
border-radius: 20px;
align-self: flex-start;
}
.zd-qv-title {
margin: 0;
font-size: 22px;
font-weight: 700;
color: #1a1a1a;
line-height: 1.3;
}
.zd-qv-title a {
color: #1a1a1a;
text-decoration: none;
}
.zd-qv-title a:hover { color: #2E7D32; }
.zd-qv-rating {
display: flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: #666;
}
.zd-qv-rating-stars {
color: #f59e0b;
font-size: 14px;
letter-spacing: 1px;
}
.zd-qv-rating-count {
color: #666;
}
.zd-qv-price {
font-size: 26px;
font-weight: 700;
color: #1a1a1a;
line-height: 1.2;
}
.zd-qv-price ins {
color: #d97706;
text-decoration: none;
}
.zd-qv-price del {
color: #999;
font-size: 17px;
font-weight: 400;
margin-right: 8px;
}
.zd-qv-shipping {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
background: #f0faf0;
color: #2E7D32;
font-size: 12px;
font-weight: 600;
border-radius: 6px;
align-self: flex-start;
}
.zd-qv-shipping svg {
width: 14px;
height: 14px;
}
.zd-qv-excerpt {
font-size: 14px;
line-height: 1.6;
color: #555;
max-height: 6.4em;
overflow: hidden;
margin: 0;
}
.zd-qv-out-of-stock {
padding: 12px 16px;
background: #f5f5f5;
color: #999;
font-size: 14px;
font-weight: 600;
border-radius: 8px;
text-align: center;
} .zd-qv-variations {
display: flex;
flex-direction: column;
gap: 10px;
}
.zd-qv-variation-row {
display: flex;
flex-direction: column;
gap: 4px;
}
.zd-qv-variation-row label {
font-size: 12px;
font-weight: 600;
color: #555;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.zd-qv-variation-row select {
padding: 10px 12px;
border: 1.5px solid #e0e0e0;
border-radius: 8px;
font-size: 14px;
color: #1a1a1a;
background: #fff;
cursor: pointer;
min-height: 44px;
font-family: inherit;
}
.zd-qv-variation-row select:focus {
border-color: #2E7D32;
outline: none;
} .zd-qv-actions {
display: flex;
align-items: stretch;
gap: 12px;
margin-top: 8px;
flex-wrap: wrap;
}
.zd-qv-qty {
display: flex;
align-items: stretch;
border: 1.5px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
flex-shrink: 0;
}
.zd-qv-qty-btn {
width: 44px;
height: 48px;
padding: 0;
background: #fff;
border: none;
color: #555;
font-size: 18px;
font-weight: 700;
cursor: pointer;
transition: all 0.15s;
font-family: inherit;
}
.zd-qv-qty-btn:hover { background: #f0faf0; color: #2E7D32; }
.zd-qv-qty-btn:disabled { color: #ccc; cursor: not-allowed; }
.zd-qv-qty-input {
width: 50px;
height: 48px;
border: none;
border-left: 1px solid #e0e0e0;
border-right: 1px solid #e0e0e0;
text-align: center;
font-size: 16px;
font-weight: 600;
color: #1a1a1a;
background: #fff;
-moz-appearance: textfield;
font-family: inherit;
}
.zd-qv-qty-input::-webkit-outer-spin-button,
.zd-qv-qty-input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.zd-qv-atc {
flex: 1;
min-height: 48px;
padding: 12px 24px;
background: #2E7D32;
border: none;
border-radius: 8px;
color: #fff;
font-size: 14px;
font-weight: 700;
cursor: pointer;
transition: background 0.18s;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
text-decoration: none;
font-family: inherit;
}
.zd-qv-atc:hover {
background: #1B5E20;
color: #fff;
}
.zd-qv-atc:disabled,
.zd-qv-atc.is-loading {
opacity: 0.7;
cursor: wait;
}
.zd-qv-atc svg {
width: 16px;
height: 16px;
} .zd-qv-secondary {
display: flex;
gap: 12px;
margin-top: 8px;
flex-wrap: wrap;
align-items: center;
}
.zd-qv-fulldetails {
color: #2E7D32;
text-decoration: none;
font-size: 13px;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 4px;
transition: color 0.18s;
}
.zd-qv-fulldetails:hover {
color: #1B5E20;
text-decoration: underline;
}
.zd-qv-fulldetails::after {
content: '→';
transition: transform 0.18s;
}
.zd-qv-fulldetails:hover::after {
transform: translateX(3px);
} .zd-qv-secondary .zd-wl-btn--single {
margin-top: 0;
} @media (max-width: 768px) {
.zd-qv-overlay {
padding: 0;
}
.zd-qv-modal {
max-width: 100%;
max-height: 100vh;
height: 100vh;
border-radius: 0;
}
.zd-qv-product {
grid-template-columns: 1fr;
min-height: auto;
}
.zd-qv-gallery {
padding: 20px;
min-height: 260px;
}
.zd-qv-gallery img {
max-height: 240px;
}
.zd-qv-info {
padding: 20px;
padding-bottom: 30px;
}
.zd-qv-title {
font-size: 18px;
}
.zd-qv-price {
font-size: 22px;
}
.zd-qv-close {
top: 10px;
right: 10px;
width: 36px;
height: 36px;
font-size: 20px;
}
.zd-qv-atc {
font-size: 13px;
padding: 12px 16px;
}
}ul.products li.product,
.zd-grid-item { position: relative; }
.zd-wl-btn--loop {
position: absolute;
top: 8px;
right: 8px;
z-index: 5;
width: 44px;
height: 44px;
padding: 0;
margin: 0;
border: 1.5px solid #e0e0e0;
border-radius: 50%;
background: #ffffff;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.18s ease;
box-shadow: 0 2px 6px rgba(0,0,0,0.06);
-webkit-tap-highlight-color: transparent;
font-family: inherit;
}
.zd-wl-btn--loop .zd-wl-icon {
width: 20px;
height: 20px;
color: #999;
transition: color 0.18s ease, transform 0.18s ease;
}
.zd-wl-btn--loop .zd-wl-btn-label {
display: none;
}
.zd-wl-btn--loop:hover,
.zd-wl-btn--loop:focus-visible {
border-color: #2E7D32;
transform: scale(1.08);
box-shadow: 0 4px 10px rgba(46,125,50,0.18);
outline: none;
}
.zd-wl-btn--loop:hover .zd-wl-icon,
.zd-wl-btn--loop:focus-visible .zd-wl-icon {
color: #2E7D32;
}
.zd-wl-btn:disabled,
.zd-wl-btn.is-loading {
opacity: 0.7;
cursor: wait;
} .zd-wl-btn.is-active {
border-color: #d32f2f;
background: #fff;
}
.zd-wl-btn.is-active .zd-wl-icon {
color: #d32f2f;
}
.zd-wl-btn.is-active .zd-wl-icon path {
fill: #d32f2f;
stroke: #d32f2f;
} .zd-wl-btn.is-animating .zd-wl-icon {
animation: zd-wl-pop 0.4s ease;
}
@keyframes zd-wl-pop {
0%   { transform: scale(1); }
40%  { transform: scale(1.35); }
70%  { transform: scale(0.95); }
100% { transform: scale(1); }
} .zd-wl-btn--single {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 16px;
margin-top: 12px;
background: #fff;
border: 1.5px solid #e0e0e0;
border-radius: 8px;
color: #555;
font-family: "Inter", sans-serif;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.18s ease;
min-height: 44px;
}
.zd-wl-btn--single .zd-wl-icon {
width: 18px;
height: 18px;
color: #555;
transition: color 0.18s;
}
.zd-wl-btn--single:hover,
.zd-wl-btn--single:focus-visible {
border-color: #2E7D32;
color: #2E7D32;
outline: none;
}
.zd-wl-btn--single:hover .zd-wl-icon,
.zd-wl-btn--single:focus-visible .zd-wl-icon {
color: #2E7D32;
}
.zd-wl-btn--single.is-active {
border-color: #d32f2f;
color: #d32f2f;
}
.zd-wl-btn--single.is-active .zd-wl-icon {
color: #d32f2f;
}
.zd-wl-btn--single.is-active .zd-wl-btn-label[data-label-default] {
display: none;
}
.zd-wl-btn--single .zd-wl-btn-label[data-label-active] {
display: none;
}
.zd-wl-btn--single.is-active .zd-wl-btn-label[data-label-active] {
display: inline;
} .zd-wl-header {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
color: #1a1a1a;
text-decoration: none;
transition: color 0.18s;
}
.zd-wl-header:hover,
.zd-wl-header:focus-visible {
color: #2E7D32;
outline: none;
}
.zd-wl-header-icon {
width: 22px;
height: 22px;
}
.zd-wl-header-count {
position: absolute;
top: 4px;
right: 4px;
min-width: 18px;
height: 18px;
padding: 0 4px;
background: #d32f2f;
color: #fff;
font-family: "Inter", sans-serif;
font-size: 11px;
font-weight: 700;
line-height: 18px;
border-radius: 9px;
text-align: center;
} .zd-wl-toast {
position: fixed;
bottom: 24px;
left: 50%;
transform: translateX(-50%) translateY(20px);
z-index: 99999;
display: flex;
align-items: center;
gap: 10px;
padding: 12px 20px;
background: #2E7D32;
color: #fff;
font-family: "Inter", sans-serif;
font-size: 14px;
font-weight: 600;
border-radius: 50px;
box-shadow: 0 4px 20px rgba(0,0,0,0.18);
opacity: 0;
transition: opacity 0.25s ease, transform 0.25s ease;
pointer-events: none;
max-width: 90vw;
}
.zd-wl-toast--show {
opacity: 1;
transform: translateX(-50%) translateY(0);
}
.zd-wl-toast--remove { background: #555; }
.zd-wl-toast--info { background: #1565C0; }
.zd-wl-toast--error { background: #c62828; }
.zd-wl-toast svg {
width: 18px;
height: 18px;
flex-shrink: 0;
} .zd-wl-page {
max-width: 1100px;
margin: 30px auto;
padding: 0 16px;
font-family: "Inter", sans-serif;
} .zd-wl-toolbar {
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
justify-content: space-between;
padding: 16px;
margin-bottom: 20px;
background: #f8f8f8;
border-radius: 12px;
}
.zd-wl-toolbar-actions {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.zd-wl-action-btn {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 10px 16px;
background: #fff;
border: 1.5px solid #e0e0e0;
border-radius: 8px;
color: #1a1a1a;
font-size: 13px;
font-weight: 600;
text-decoration: none;
cursor: pointer;
transition: all 0.18s;
min-height: 44px;
font-family: inherit;
}
.zd-wl-action-btn:hover,
.zd-wl-action-btn:focus-visible {
border-color: #2E7D32;
color: #2E7D32;
outline: none;
}
.zd-wl-action-btn--primary {
background: #2E7D32;
border-color: #2E7D32;
color: #fff;
}
.zd-wl-action-btn--primary:hover,
.zd-wl-action-btn--primary:focus-visible {
background: #1B5E20;
border-color: #1B5E20;
color: #fff;
}
.zd-wl-action-btn svg {
width: 14px;
height: 14px;
flex-shrink: 0;
} .zd-wl-optin {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
color: #555;
}
.zd-wl-optin input[type="checkbox"] {
width: 18px;
height: 18px;
accent-color: #2E7D32;
cursor: pointer;
}
.zd-wl-optin label {
cursor: pointer;
user-select: none;
} .zd-wl-page-empty {
text-align: center;
padding: 50px 20px;
background: #fafafa;
border-radius: 12px;
color: #666;
}
.zd-wl-page-empty-icon {
width: 64px;
height: 64px;
color: #c0c0c0;
margin-bottom: 16px;
}
.zd-wl-page-empty-title {
font-size: 20px;
font-weight: 700;
color: #1a1a1a;
margin: 0 0 8px;
}
.zd-wl-page-empty-text {
font-size: 15px;
margin: 0 auto 24px;
max-width: 480px;
line-height: 1.5;
}
.zd-wl-page-empty-cta {
display: inline-block;
padding: 12px 28px;
background: #2E7D32;
color: #fff;
font-size: 14px;
font-weight: 700;
border-radius: 8px;
text-decoration: none;
transition: background 0.18s;
min-height: 44px;
line-height: 20px;
}
.zd-wl-page-empty-cta:hover { background: #1B5E20; color: #fff; } .zd-wl-suggestions {
margin-top: 32px;
}
.zd-wl-suggestions-title {
font-size: 18px;
font-weight: 700;
color: #1a1a1a;
text-align: center;
margin: 0 0 16px;
}
.zd-wl-suggestions-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.zd-wl-suggestion {
display: flex;
flex-direction: column;
padding: 14px;
background: #fff;
border: 1px solid #f0f0f0;
border-radius: 12px;
text-decoration: none;
color: #1a1a1a;
transition: box-shadow 0.18s, transform 0.18s;
}
.zd-wl-suggestion:hover {
box-shadow: 0 4px 14px rgba(0,0,0,0.06);
transform: translateY(-2px);
}
.zd-wl-suggestion-img {
aspect-ratio: 1;
background: #fafafa;
border-radius: 8px;
margin-bottom: 10px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.zd-wl-suggestion-img img {
max-width: 85%;
max-height: 85%;
object-fit: contain;
}
.zd-wl-suggestion-title {
font-size: 13px;
font-weight: 600;
color: #1a1a1a;
margin: 0 0 4px;
line-height: 1.3;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.zd-wl-suggestion-price {
font-size: 14px;
font-weight: 700;
color: #1a1a1a;
margin-top: auto;
}
.zd-wl-suggestion-price ins {
color: #d97706;
text-decoration: none;
}
.zd-wl-suggestion-price del {
color: #999;
font-size: 12px;
margin-right: 4px;
font-weight: 400;
} .zd-wl-loading {
text-align: center;
padding: 40px;
color: #888;
font-size: 14px;
}
.zd-wl-loading::before {
content: '';
display: inline-block;
width: 24px;
height: 24px;
border: 3px solid #e0e0e0;
border-top-color: #2E7D32;
border-radius: 50%;
animation: zd-wl-spin 0.8s linear infinite;
margin-right: 10px;
vertical-align: middle;
}
@keyframes zd-wl-spin {
to { transform: rotate(360deg); }
} .zd-wl-grid {
list-style: none;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: 1fr;
gap: 12px;
}
.zd-wl-item {
display: flex;
gap: 16px;
padding: 14px;
background: #fff;
border: 1px solid #f0f0f0;
border-radius: 12px;
transition: box-shadow 0.18s;
position: relative;
}
.zd-wl-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.zd-wl-item-img {
flex-shrink: 0;
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
background: #fafafa;
border-radius: 8px;
overflow: hidden;
}
.zd-wl-item-img img {
max-width: 90%;
max-height: 90%;
object-fit: contain;
}
.zd-wl-item-body {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
gap: 6px;
}
.zd-wl-item-title {
font-size: 15px;
font-weight: 600;
color: #1a1a1a;
text-decoration: none;
line-height: 1.35;
}
.zd-wl-item-title:hover { color: #2E7D32; }
.zd-wl-item-meta {
font-size: 12px;
color: #888;
}
.zd-wl-item-price {
font-size: 16px;
font-weight: 700;
color: #1a1a1a;
}
.zd-wl-item-price ins {
color: #d97706;
text-decoration: none;
}
.zd-wl-item-price del {
color: #999;
font-size: 13px;
font-weight: 400;
margin-right: 6px;
}
.zd-wl-item-actions {
display: flex;
align-items: center;
gap: 10px;
margin-top: auto;
padding-top: 4px;
flex-wrap: wrap;
}
.zd-wl-item-atc {
display: inline-flex !important;
align-items: center;
gap: 6px;
padding: 10px 16px !important;
background: #2E7D32 !important;
color: #fff !important;
font-size: 13px !important;
font-weight: 600 !important;
border-radius: 8px !important;
text-decoration: none !important;
border: none !important;
transition: background 0.18s;
min-height: 44px;
}
.zd-wl-item-atc:hover { background: #1B5E20 !important; color: #fff !important; }
.zd-wl-item-atc svg { width: 14px; height: 14px; }
.zd-wl-item-unavailable {
padding: 10px 16px;
background: #f5f5f5;
color: #999;
font-size: 13px;
font-weight: 600;
border-radius: 8px;
min-height: 44px;
display: inline-flex;
align-items: center;
}
.zd-wl-item-remove {
margin-left: auto;
width: 36px;
height: 36px;
padding: 0;
background: transparent;
border: 1.5px solid #e0e0e0;
border-radius: 50%;
color: #999;
font-size: 20px;
line-height: 1;
cursor: pointer;
transition: all 0.18s;
font-family: inherit;
}
.zd-wl-item-remove:hover,
.zd-wl-item-remove:focus-visible {
border-color: #d32f2f;
color: #d32f2f;
outline: none;
} .zd-wl-share {
margin-top: 12px;
padding: 14px;
background: #f0faf0;
border: 1px solid #c8e6c9;
border-radius: 8px;
display: none;
}
.zd-wl-share.is-visible { display: block; }
.zd-wl-share-label {
font-size: 13px;
font-weight: 600;
color: #2E7D32;
margin: 0 0 8px;
}
.zd-wl-share-input {
display: flex;
gap: 8px;
}
.zd-wl-share-input input {
flex: 1;
padding: 10px 12px;
border: 1px solid #c8e6c9;
border-radius: 6px;
background: #fff;
font-family: monospace;
font-size: 12px;
color: #555;
}
.zd-wl-share-copy {
padding: 10px 16px;
background: #2E7D32;
border: none;
border-radius: 6px;
color: #fff;
font-size: 13px;
font-weight: 600;
cursor: pointer;
min-height: 44px;
font-family: inherit;
}
.zd-wl-share-copy:hover { background: #1B5E20; } .zd-wl-email-form {
margin-top: 12px;
padding: 14px;
background: #f8f8f8;
border-radius: 8px;
display: none;
}
.zd-wl-email-form.is-visible { display: block; }
.zd-wl-email-form-row {
display: flex;
gap: 8px;
}
.zd-wl-email-form-row input {
flex: 1;
padding: 10px 12px;
border: 1px solid #e0e0e0;
border-radius: 6px;
font-size: 14px;
min-height: 44px;
}
.zd-wl-email-form-row button {
padding: 10px 18px;
background: #2E7D32;
border: none;
border-radius: 6px;
color: #fff;
font-size: 13px;
font-weight: 600;
cursor: pointer;
min-height: 44px;
font-family: inherit;
}
.zd-wl-email-form-row button:hover { background: #1B5E20; } .zd-wl-public-banner {
margin-bottom: 20px;
padding: 14px 18px;
background: #f0faf0;
border: 1px solid #c8e6c9;
border-radius: 12px;
font-size: 14px;
color: #2E7D32;
}
.zd-wl-public-banner strong { color: #1B5E20; } @media (min-width: 768px) {
.zd-wl-grid {
grid-template-columns: 1fr 1fr;
}
.zd-wl-suggestions-grid {
grid-template-columns: repeat(4, 1fr);
}
} @media (max-width: 768px) {
.zd-wl-btn--loop {
width: 40px;
height: 40px;
top: 6px;
right: 6px;
}
.zd-wl-btn--loop .zd-wl-icon {
width: 18px;
height: 18px;
}
.zd-wl-item-img {
width: 80px;
height: 80px;
}
.zd-wl-item-title {
font-size: 14px;
}
.zd-wl-item-price {
font-size: 15px;
}
.zd-wl-toast {
font-size: 13px;
padding: 10px 16px;
bottom: 16px;
}
.zd-wl-toolbar {
flex-direction: column;
align-items: stretch;
}
.zd-wl-toolbar-actions {
justify-content: stretch;
}
.zd-wl-action-btn {
flex: 1;
justify-content: center;
}
}#ez-toc-container{background:#F9F9F9;border:1px solid #AAA;border-radius:4px;-webkit-box-shadow:0 1px 1px rgb(0 0 0 / .05);box-shadow:0 1px 1px rgb(0 0 0 / .05);display:table;margin-bottom:1em;padding-top:10px;padding-right:20px;padding-bottom:10px;padding-left:10px;position:relative;width:auto}div.ez-toc-widget-container{padding:0;position:relative}#ez-toc-container.ez-toc-light-blue{background:#EDF6FF}#ez-toc-container.ez-toc-white{background:#FFF}#ez-toc-container.ez-toc-black{background:#000}#ez-toc-container.ez-toc-transparent{background:none #fff0}div.ez-toc-widget-container ul{display:block}div.ez-toc-widget-container li{border:none;padding:0}div.ez-toc-widget-container ul.ez-toc-list{padding:10px}#ez-toc-container ul ul,.ez-toc div.ez-toc-widget-container ul ul{margin-left:1.5em}#ez-toc-container ul,#ez-toc-container li{margin:0;padding:0}#ez-toc-container ul,#ez-toc-container li,#ez-toc-container ul li,div.ez-toc-widget-container,div.ez-toc-widget-container li{background:none;list-style:none none;line-height:1.6;margin:0;overflow:hidden;z-index:1}#ez-toc-container .ez-toc-title{text-align:left;line-height:1.45;margin:0;padding:0}.ez-toc-title-container{display:table;width:100%}.ez-toc-title,.ez-toc-title-toggle{display:inline;text-align:left;vertical-align:middle}#ez-toc-container.ez-toc-black p.ez-toc-title{color:#FFF}#ez-toc-container div.ez-toc-title-container+ul.ez-toc-list{margin-top:1em}.ez-toc-wrap-left{margin:0 auto 1em 0px!important}.ez-toc-wrap-left-text{float:left}.ez-toc-wrap-right{margin:0 0 1em auto!important}.ez-toc-wrap-right-text{float:right}#ez-toc-container a{color:#444;box-shadow:none;text-decoration:none;text-shadow:none;display:inline-flex;align-items:stretch;flex-wrap:nowrap}#ez-toc-container a:visited{color:#9f9f9f}#ez-toc-container a:hover{text-decoration:underline}#ez-toc-container.ez-toc-black a{color:#FFF}#ez-toc-container.ez-toc-black a:visited{color:#FFF}#ez-toc-container a.ez-toc-toggle{display:flex;align-items:center;color:#444}.ez-toc-widget-container ul.ez-toc-list li::before{content:' ';position:absolute;left:0;right:0;height:30px;line-height:30px;z-index:-1}.ez-toc-widget-container ul.ez-toc-list li.active{background-color:#EDEDED}.ez-toc-widget-container li.active>a{font-weight:900}.ez-toc-btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid #fff0;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.ez-toc-btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.ez-toc-btn:hover,.ez-toc-btn:focus{color:#333;text-decoration:none}.ez-toc-btn:active,.ez-toc-btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgb(0 0 0 / .125);box-shadow:inset 0 3px 5px rgb(0 0 0 / .125)}.ez-toc-btn-default{color:#333;background-color:#fff;border-color:#ccc}.ez-toc-btn-default:hover,.ez-toc-btn-default:focus,.ez-toc-btn-default:active,.ez-toc-btn-default.active{color:#333;background-color:#ebebeb;border-color:#adadad}.ez-toc-btn-default:active,.ez-toc-btn-default.active{background-image:none}.ez-toc-btn-sm,.ez-toc-btn-xs{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.ez-toc-btn-xs{padding:1px 5px}.ez-toc-btn-default{text-shadow:0 -1px 0 rgb(0 0 0 / .2);-webkit-box-shadow:inset 0 1px 0 rgb(255 255 255 / .15),0 1px 1px rgb(0 0 0 / .075);box-shadow:inset 0 1px 0 rgb(255 255 255 / .15),0 1px 1px rgb(0 0 0 / .075)}.ez-toc-btn-default:active{-webkit-box-shadow:inset 0 3px 5px rgb(0 0 0 / .125);box-shadow:inset 0 3px 5px rgb(0 0 0 / .125)}.ez-toc-btn:active,.btn.active{background-image:none}.ez-toc-btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-gradient(linear,left 0,left 100%,from(#fff),to(#e0e0e0));background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-moz-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe0e0e0',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.ez-toc-btn-default:hover,.ez-toc-btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.ez-toc-btn-default:active,.ez-toc-btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.ez-toc-pull-right{float:right!important;margin-left:10px}#ez-toc-container label.cssicon,#ez-toc-widget-container label.cssicon{height:30px}.ez-toc-glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';-webkit-font-smoothing:antialiased;font-style:normal;font-weight:400;line-height:1;-moz-osx-font-smoothing:grayscale}.ez-toc-glyphicon:empty{width:1em}.ez-toc-toggle i.ez-toc-glyphicon{font-size:16px;margin-left:2px}#ez-toc-container input{position:absolute;left:-999em}#ez-toc-container input[type="checkbox"]:checked+nav,#ez-toc-widget-container input[type="checkbox"]:checked+nav{opacity:0;max-height:0;border:none;display:none}#ez-toc-container label{position:relative;cursor:pointer;display:initial}#ez-toc-container .ez-toc-js-icon-con{position:relative;cursor:pointer;display:initial}#ez-toc-container .ez-toc-toggle label{float:right;position:relative;font-size:16px;padding:0;border:1px solid #999191;border-radius:5px;cursor:pointer;left:10px;width:35px}#ez-toc-container .ez-toc-js-icon-con{float:right;position:relative;font-size:16px;padding:0;border:1px solid #999191;border-radius:5px;cursor:pointer;left:10px;width:35px}div#ez-toc-container .ez-toc-title{display:initial}.ez-toc-wrap-center{margin:0 auto 1em auto!important}#ez-toc-container a.ez-toc-toggle{color:#444;background:inherit;border:inherit}.ez-toc-toggle #item{position:absolute;left:-999em}label.cssicon .ez-toc-glyphicon:empty{font-size:16px;margin-left:2px}label.cssiconcheckbox{display:none}.ez-toc-widget-container ul li a{padding-left:10px;display:inline-flex;align-items:stretch;flex-wrap:nowrap}.ez-toc-widget-container ul.ez-toc-list li{height:auto!important}.ez-toc-cssicon{float:right;position:relative;font-size:16px;padding:0;border:1px solid #999191;border-radius:5px;cursor:pointer;left:10px;width:35px}.ez-toc-icon-toggle-span{display:flex;align-items:center;width:35px;height:30px;justify-content:center;direction:ltr}#ez-toc-container .eztoc-toggle-hide-by-default{display:none}.eztoc_no_heading_found{background-color:#ff0;padding-left:10px}.eztoc-hide{display:none}.term-description .ez-toc-title-container p:nth-child(2){width:50px;float:right;margin:0}.ez-toc-list.ez-toc-columns-2{column-count:2;column-gap:20px;column-fill:balance}.ez-toc-list.ez-toc-columns-2>li{display:block;break-inside:avoid;margin-bottom:8px;page-break-inside:avoid}.ez-toc-list.ez-toc-columns-3{column-count:3;column-gap:20px;column-fill:balance}.ez-toc-list.ez-toc-columns-3>li{display:block;break-inside:avoid;margin-bottom:8px;page-break-inside:avoid}.ez-toc-list.ez-toc-columns-4{column-count:4;column-gap:20px;column-fill:balance}.ez-toc-list.ez-toc-columns-4>li{display:block;break-inside:avoid;margin-bottom:8px;page-break-inside:avoid}.ez-toc-list.ez-toc-columns-optimized{column-fill:balance;orphans:2;widows:2}.ez-toc-list.ez-toc-columns-optimized>li{display:block;break-inside:avoid;page-break-inside:avoid}@media (max-width:768px){.ez-toc-list.ez-toc-columns-2,.ez-toc-list.ez-toc-columns-3,.ez-toc-list.ez-toc-columns-4{column-count:1;column-gap:0}}@media (max-width:1024px) and (min-width:769px){.ez-toc-list.ez-toc-columns-4{column-count:2}.ez-toc-list.ez-toc-columns-3{column-count:2}}.fusion-footer #ez-toc-container{display:none}