.berkei-b2b-gate {
max-width: 480px;
margin: 40px auto;
padding: 32px;
text-align: center;
background: #f9f9f9;
border: 1px solid #e0e0e0;
border-radius: 8px;
}
.berkei-b2b-gate h3 {
margin: 0 0 12px;
font-size: 18px;
}
.berkei-b2b-gate p {
margin: 0 0 20px;
color: #555;
font-size: 14px;
}
.berkei-b2b-code-form {
display: flex;
gap: 8px;
justify-content: center;
flex-wrap: wrap;
}
.berkei-b2b-code-form input[type="text"] {
width: 180px;
padding: 8px 12px;
font-size: 16px;
font-family: monospace;
letter-spacing: 2px;
text-align: center;
text-transform: uppercase;
border: 2px solid #ccc;
border-radius: 6px;
}
.berkei-b2b-code-form input[type="text"]:focus {
border-color: #2271b1;
outline: none;
}
.berkei-b2b-code-form button {
padding: 8px 20px;
font-size: 14px;
border-radius: 6px;
}
.berkei-b2b-code-msg {
margin-top: 12px;
font-size: 13px;
}
.berkei-b2b-code-msg.success {
color: #00a32a;
}
.berkei-b2b-code-msg.error {
color: #b32d2e;
} .berkei-b2b-notice {
padding: 12px 16px;
border-radius: 6px;
margin-bottom: 20px;
font-size: 14px;
}
.berkei-b2b-notice-info {
background: #e8f0fe;
color: #1a56db;
border: 1px solid #c3d9f7;
}
.berkei-b2b-notice-success {
background: #e6f4ea;
color: #137333;
border: 1px solid #b7e1cd;
}
.berkei-b2b-notice-error {
background: #fce8e6;
color: #b32d2e;
border: 1px solid #f5c6cb;
} .berkei-b2b-catalog {
display: grid;
grid-template-columns: repeat(var(--b2b-cols, 3), 1fr);
gap: 20px;
margin-top: 20px;
}
.berkei-b2b-product {
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
transition: box-shadow 0.2s;
}
.berkei-b2b-product:hover {
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.berkei-b2b-product-image {
position: relative;
overflow: hidden;
aspect-ratio: 1;
background: #f5f5f5;
}
.berkei-b2b-product-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.berkei-b2b-product-image a {
display: block;
}
.berkei-b2b-badge {
position: absolute;
top: 8px;
right: 8px;
background: #1a56db;
color: #fff;
font-size: 10px;
font-weight: 700;
padding: 3px 8px;
border-radius: 3px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.berkei-b2b-product-info {
padding: 14px;
}
.berkei-b2b-product-name {
font-size: 14px;
font-weight: 600;
margin: 0 0 8px;
line-height: 1.3;
}
.berkei-b2b-product-name a {
color: inherit;
text-decoration: none;
}
.berkei-b2b-product-name a:hover {
text-decoration: underline;
}
.berkei-b2b-product-prices {
display: flex;
align-items: baseline;
gap: 8px;
flex-wrap: wrap;
}
.berkei-b2b-price-b2b {
font-size: 18px;
font-weight: 700;
color: #1a56db;
}
.berkei-b2b-price-regular {
font-size: 13px;
color: #999;
text-decoration: line-through;
}
.berkei-b2b-price-label {
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.5px;
color: #999;
width: 100%;
} .berkei-b2b-tiers {
margin-top: 6px;
padding: 6px 0 0;
border-top: 1px solid #eee;
}
.berkei-b2b-tiers-label {
font-size: 11px;
font-weight: 600;
color: #555;
display: block;
margin-bottom: 2px;
}
.berkei-b2b-tiers-list {
list-style: none;
margin: 0;
padding: 0;
}
.berkei-b2b-tiers-list li {
font-size: 12px;
color: #444;
padding: 1px 0;
} .berkei-b2b-price-notice {
text-align: center;
font-size: 13px;
color: #666;
margin: 24px 0 0;
font-style: italic;
} .berkei-b2b-apply-form {
max-width: 600px;
margin: 0 auto;
}
.berkei-b2b-apply-form h3 {
font-size: 20px;
margin: 0 0 8px;
}
.berkei-b2b-apply-form > p {
color: #555;
margin: 0 0 24px;
}
.berkei-b2b-field {
margin-bottom: 16px;
}
.berkei-b2b-field label {
display: block;
font-size: 13px;
font-weight: 600;
margin-bottom: 4px;
color: #333;
}
.berkei-b2b-field .berkei-b2b-required {
color: #b32d2e;
margin-left: 2px;
}
.berkei-b2b-field input[type="text"],
.berkei-b2b-field input[type="email"],
.berkei-b2b-field input[type="tel"],
.berkei-b2b-field input[type="number"],
.berkei-b2b-field textarea {
width: 100%;
padding: 8px 12px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 6px;
box-sizing: border-box;
}
.berkei-b2b-field input:focus,
.berkei-b2b-field textarea:focus {
border-color: #2271b1;
outline: none;
box-shadow: 0 0 0 1px #2271b1;
}
.berkei-b2b-field textarea {
min-height: 80px;
resize: vertical;
}
.berkei-b2b-field-hint {
font-size: 12px;
color: #888;
margin-top: 4px;
} .berkei-b2b-captcha-q {
font-weight: 600;
font-size: 14px;
margin-bottom: 6px;
}
.berkei-b2b-captcha-input {
width: 80px !important;
} .berkei-b2b-hp {
position: absolute;
left: -9999px;
opacity: 0;
height: 0;
overflow: hidden;
} .berkei-b2b-apply-form button[type="submit"] {
margin-top: 8px;
padding: 10px 32px;
font-size: 15px;
border-radius: 6px;
} @media (max-width: 768px) {
.berkei-b2b-catalog {
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.berkei-b2b-gate {
margin: 20px auto;
padding: 24px 16px;
}
.berkei-b2b-apply-form {
max-width: 100%;
}
}
@media (max-width: 480px) {
.berkei-b2b-catalog {
grid-template-columns: 1fr;
}
} .berkei-b2b-dashboard h2 {
font-size: 22px;
margin: 0 0 20px;
}
.berkei-b2b-dash-cards {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-bottom: 30px;
}
.berkei-b2b-dash-card {
background: #f9f9f9;
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 20px;
}
.berkei-b2b-dash-card h3 {
margin: 0 0 12px;
font-size: 16px;
color: #333;
}
.berkei-b2b-dash-table {
width: 100%;
border-collapse: collapse;
}
.berkei-b2b-dash-table th {
text-align: left;
font-weight: 600;
font-size: 13px;
color: #555;
padding: 4px 12px 4px 0;
width: 100px;
vertical-align: top;
}
.berkei-b2b-dash-table td {
font-size: 13px;
padding: 4px 0;
}
.berkei-b2b-dash-tier {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 8px;
}
.berkei-b2b-dash-tier-name {
font-size: 20px;
font-weight: 700;
color: #1a56db;
}
.berkei-b2b-dash-tier-discount {
font-size: 13px;
background: #e6f4ea;
color: #137333;
padding: 3px 10px;
border-radius: 12px;
font-weight: 600;
}
.berkei-b2b-dash-price-mode {
font-size: 12px;
color: #666;
margin: 0;
}
.berkei-b2b-dash-section {
margin-bottom: 30px;
}
.berkei-b2b-dash-section h3 {
font-size: 16px;
margin: 0 0 12px;
}
.berkei-b2b-dash-empty {
color: #999;
font-style: italic;
}
.berkei-b2b-dash-orders {
width: 100%;
border-collapse: collapse;
}
.berkei-b2b-dash-orders thead th {
text-align: left;
font-size: 12px;
font-weight: 600;
color: #555;
text-transform: uppercase;
padding: 8px 10px;
border-bottom: 2px solid #e0e0e0;
}
.berkei-b2b-dash-orders tbody td {
padding: 10px;
font-size: 13px;
border-bottom: 1px solid #eee;
}
.berkei-b2b-dash-link {
color: #1a56db;
text-decoration: none;
font-size: 12px;
font-weight: 600;
}
.berkei-b2b-dash-link:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.berkei-b2b-dash-cards {
grid-template-columns: 1fr;
}
} .berkei-b2b-quick-order h2 {
font-size: 22px;
margin: 0 0 8px;
}
.berkei-b2b-quick-order > p {
color: #555;
margin: 0 0 20px;
font-size: 14px;
}
.berkei-b2b-qo-header {
display: flex;
gap: 10px;
padding: 8px 0;
font-weight: 600;
font-size: 12px;
color: #555;
text-transform: uppercase;
border-bottom: 2px solid #e0e0e0;
}
.berkei-b2b-qo-row {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 0;
border-bottom: 1px solid #eee;
}
.berkei-b2b-qo-col-sku { width: 180px; flex-shrink: 0; }
.berkei-b2b-qo-col-qty { width: 70px; flex-shrink: 0; }
.berkei-b2b-qo-col-product { flex: 1; min-width: 0; font-size: 13px; }
.berkei-b2b-qo-col-price { width: 90px; flex-shrink: 0; font-size: 13px; text-align: right; }
.berkei-b2b-qo-col-action { width: 30px; flex-shrink: 0; text-align: center; }
.berkei-b2b-qo-sku {
width: 100%;
padding: 6px 8px;
font-size: 13px;
font-family: monospace;
text-transform: uppercase;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.berkei-b2b-qo-sku:focus {
border-color: #2271b1;
outline: none;
}
.berkei-b2b-qo-qty {
width: 100%;
padding: 6px 8px;
font-size: 13px;
text-align: center;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
.berkei-b2b-qo-product-name.berkei-b2b-qo-found {
color: #137333;
font-weight: 500;
}
.berkei-b2b-qo-product-name.berkei-b2b-qo-error {
color: #b32d2e;
font-style: italic;
}
.berkei-b2b-qo-remove {
background: none;
border: none;
color: #b32d2e;
font-size: 16px;
cursor: pointer;
padding: 2px;
}
.berkei-b2b-qo-remove:hover {
color: #8a1c1c;
}
.berkei-b2b-qo-actions {
margin-top: 16px;
display: flex;
gap: 8px;
}
.berkei-b2b-qo-messages {
margin-top: 16px;
}
@media (max-width: 768px) {
.berkei-b2b-qo-header { display: none; }
.berkei-b2b-qo-row {
flex-wrap: wrap;
}
.berkei-b2b-qo-col-sku { width: 60%; }
.berkei-b2b-qo-col-qty { width: 25%; }
.berkei-b2b-qo-col-product { width: 100%; }
.berkei-b2b-qo-col-price { width: auto; text-align: left; }
} .berkei-b2b-order-lists h2 {
font-size: 22px;
margin: 0 0 8px;
}
.berkei-b2b-order-lists > p {
color: #555;
margin: 0 0 20px;
font-size: 14px;
}
.berkei-b2b-ol-toolbar {
display: flex;
gap: 8px;
margin-bottom: 24px;
}
.berkei-b2b-ol-empty {
color: #666;
font-style: italic;
padding: 24px 0;
}
.berkei-b2b-ol-loading {
color: #888;
padding: 16px 0;
}
.berkei-b2b-ol-card {
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 16px;
margin-bottom: 16px;
background: #fff;
}
.berkei-b2b-ol-card-header {
display: flex;
align-items: baseline;
gap: 12px;
margin-bottom: 12px;
flex-wrap: wrap;
}
.berkei-b2b-ol-card-title {
font-size: 16px;
font-weight: 600;
margin: 0;
}
.berkei-b2b-ol-card-meta {
font-size: 12px;
color: #888;
} .berkei-b2b-ol-items {
width: 100%;
border-collapse: collapse;
margin-bottom: 12px;
font-size: 13px;
}
.berkei-b2b-ol-items th {
text-align: left;
font-size: 11px;
text-transform: uppercase;
color: #666;
padding: 6px 8px;
border-bottom: 2px solid #e0e0e0;
}
.berkei-b2b-ol-items td {
padding: 6px 8px;
border-bottom: 1px solid #f0f0f0;
vertical-align: middle;
}
.berkei-b2b-ol-item-sku {
font-family: monospace;
font-size: 12px;
color: #555;
}
.berkei-b2b-ol-item-qty {
width: 60px;
padding: 4px 6px;
text-align: center;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 13px;
}
.berkei-b2b-ol-remove-item {
background: none;
border: none;
color: #b32d2e;
font-size: 16px;
cursor: pointer;
padding: 2px 4px;
}
.berkei-b2b-ol-remove-item:hover {
color: #8a1c1c;
}
.berkei-b2b-ol-card-actions {
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.berkei-b2b-ol-messages {
margin-top: 16px;
}
@media (max-width: 768px) {
.berkei-b2b-ol-toolbar {
flex-direction: column;
}
.berkei-b2b-ol-card-actions {
flex-direction: column;
}
.berkei-b2b-ol-card-actions .button {
width: 100%;
text-align: center;
}
}.berkei-progress-bar-wrap {
margin: 16px 0 24px;
padding: 16px 20px;
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.berkei-progress-inner {
max-width: 100%;
} .berkei-progress-track {
position: relative;
height: 12px;
background: #e5e7eb;
border-radius: 6px;
overflow: visible;
margin: 24px 0 32px;
}
.berkei-progress-fill {
position: absolute;
top: 0;
left: 0;
height: 100%;
border-radius: 6px;
transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease;
box-shadow: 0 0 8px rgba(102, 126, 234, 0.3);
} .berkei-progress-milestone {
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
z-index: 2;
}
.berkei-progress-milestone-dot {
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
background: #fff;
border: 3px solid #d1d5db;
border-radius: 50%;
font-size: 11px;
color: transparent;
transition: all 0.4s ease;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.berkei-progress-milestone.reached .berkei-progress-milestone-dot {
background: #22c55e;
border-color: #22c55e;
color: #fff;
box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}
.berkei-progress-milestone-label {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
margin-top: 6px;
font-size: 11px;
font-weight: 600;
color: #6b7280;
white-space: nowrap;
}
.berkei-progress-milestone.reached .berkei-progress-milestone-label {
color: #22c55e;
} .berkei-progress-status {
text-align: center;
font-size: 14px;
color: #374151;
margin-top: 4px;
}
.berkei-progress-complete {
font-size: 16px;
font-weight: 700;
color: #22c55e;
}
.berkei-progress-message strong {
color: #667eea;
font-size: 15px;
}
.berkei-progress-message em {
font-style: normal;
font-weight: 600;
} .berkei-progress-suggestion {
margin-top: 12px;
padding: 10px 14px;
background: #fefce8;
border: 1px solid #fde68a;
border-radius: 8px;
font-size: 13px;
color: #92400e;
text-align: center;
}
.berkei-progress-suggestion a {
color: #92400e;
font-weight: 600;
text-decoration: underline;
}
.berkei-progress-suggestion a:hover {
color: #78350f;
}
.berkei-progress-suggestion-icon {
font-size: 16px;
}
.berkei-progress-suggestion-thumb {
width: 24px;
height: 24px;
border-radius: 4px;
vertical-align: middle;
margin-right: 4px;
object-fit: cover;
} .berkei-confetti-canvas {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
pointer-events: none;
z-index: 99999;
} .berkei-hunt-egg {
transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}
.berkei-hunt-egg img {
display: block;
pointer-events: none;
}
.berkei-hunt-egg:not(.found):hover {
transform: scale(1.2) !important;
opacity: 1 !important;
} @keyframes berkeiHuntFloat {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-6px); }
}
.berkei-hunt-egg-float {
animation: berkeiHuntFloat 3s ease-in-out infinite;
} .berkei-hunt-hint {
background: linear-gradient(135deg, #fef9c3, #fde68a);
color: #78350f;
padding: 10px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
margin-bottom: 16px;
text-align: center;
border: 1px solid #fbbf24;
}
.berkei-hunt-hint-icon {
font-size: 18px;
vertical-align: middle;
}
.berkei-hunt-hint-count {
font-weight: 700;
color: #92400e;
} .berkei-hunt-message {
position: fixed;
bottom: 30px;
left: 50%;
transform: translateX(-50%) translateY(20px);
background: #1f2937;
color: #fff;
padding: 14px 24px;
border-radius: 10px;
font-size: 15px;
font-weight: 500;
z-index: 99998;
opacity: 0;
transition: opacity 0.3s ease, transform 0.3s ease;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
pointer-events: none;
max-width: 90%;
text-align: center;
}
.berkei-hunt-message.visible {
opacity: 1;
transform: translateX(-50%) translateY(0);
}
.berkei-hunt-message.success {
background: linear-gradient(135deg, #22c55e, #16a34a);
font-size: 16px;
} @media (max-width: 600px) {
.berkei-progress-bar-wrap {
padding: 12px 14px;
}
.berkei-progress-milestone-label {
font-size: 9px;
}
.berkei-progress-milestone-dot {
width: 20px;
height: 20px;
font-size: 9px;
}
.berkei-progress-suggestion {
font-size: 12px;
}
}.eb-woo-products-wrapper.eb-woo-product-1craj{transition:border 0.5s,border-radius 0.5s,box-shadow 0.5s,background 0.5s}.eb-woo-products-wrapper.eb-woo-product-1craj:before{transition:background 0.5s,opacity 0.5s,filter 0.5s}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product .eb-woo-product-content-wrapper .eb-woo-product-content{align-items:center;text-align:center}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-1 .eb-woo-products-col,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-2 .eb-woo-products-col,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-3 .eb-woo-products-col{flex:0 0 33.333333333333336%;max-width:33.333333333333336%}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product-content .eb-woo-product-title{order:1}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product-content .eb-woo-product-title,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product-content .eb-woo-product-title a{font-size:1.2em;margin-top:125px;color:#ffffff}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product-content .eb-woo-product-title:hover,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product-content .eb-woo-product-title:hover a{color:#ffffff}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product-content-wrapper .eb-woo-product-content .eb-woo-product-price{order:2;font-size:1em;color:#ffffff}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product-content .eb-woo-product-price ins{color:#e56b28}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product .eb-woo-product-overlay .eb-woo-product-button-list a.button,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product .eb-woo-product-overlay .eb-woo-product-button-list a.added_to_cart,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product .eb-woo-product-button-list a.button,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product .eb-woo-product-button-list a.added_to_cart{font-size:1.2em;color:#ffffff;background:rgba(23,118,150,0.8);transition:all 0.3s,border 0.5s,border-radius 0.5s,box-shadow 0.5s}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-3 .eb-woo-product .eb-woo-product-overlay .eb-woo-product-button-list a.button:hover,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-3 .eb-woo-product .eb-woo-product-overlay .eb-woo-product-button-list a.added_to_cart:hover{background:rgba(31,31,31,0.46)}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product .eb-woo-product-image .eb-woo-product-ribbon{color:var(--eb-global-button-text-color);background:var(--eb-global-button-background-color)}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-3 .eb-woo-product .eb-woo-product-content-wrapper{background:rgba(31,31,31,0.27)}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product .eb-woo-product-image-wrapper .eb-woo-product-image{transition:border 0.5s,border-radius 0.5s,box-shadow 0.5s;overflow:hidden}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-3 .eb-woo-product{border-radius:5px;transition:border 0.5s,border-radius 0.5s,box-shadow 0.5s;overflow:hidden}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-3 .eb-woo-product:hover{border-radius:15px}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product .eb-woo-product-image-wrapper .eb-woo-product-image a:after{background:rgb(0 0 0 / 25%)}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product .eb-woo-product-image-wrapper .eb-woo-product-image img{height:auto;object-fit:fill}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.list-preset-1 .eb-woo-product .eb-woo-product-image-wrapper .eb-woo-product-image{height:100%}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product{transition:border 0.5s,border-radius 0.5s,box-shadow 0.5s}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery{margin-left:-7.5px;margin-right:-7.5px;margin-bottom:-15px}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-1 .eb-woo-products-col,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-2 .eb-woo-products-col,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-3 .eb-woo-products-col{padding-left:7.5px;padding-right:7.5px;margin-bottom:15px}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.list-preset-1 .eb-woo-products-col{margin-bottom:15px}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.list-preset-1 .eb-woo-product .eb-woo-product-content-wrapper .eb-woo-product-content .eb-woo-product-details{color:var(--eb-global-text-color)}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.list-preset-1 .eb-woo-product-image-wrapper{margin-right:10px}.eb-woo-products-wrapper.eb-woo-product-1craj .ebpg-pagination{text-align:center}.eb-woo-products-wrapper.eb-woo-product-1craj .ebpg-pagination button{color:var(--eb-global-button-text-color);background-color:#177797;padding-top:5px;padding-right:10px;padding-left:10px;padding-bottom:5px;margin-top:10px;margin-right:5px;margin-left:5px;margin-bottom:10px;font-size:14px;border-width:1px;border-color:#c3c3c3;border-style:solid;border-radius:4px;transition:border 0.5s,border-radius 0.5s,box-shadow 0.5s}.eb-woo-products-wrapper.eb-woo-product-1craj .ebpg-pagination button:hover{background-color:var(--eb-global-tertiary-color);border-radius:4px}.eb-woo-products-wrapper.eb-woo-product-1craj .ebpg-pagination button.ebpg-pagination-item.active{color:var(--eb-global-button-text-color);background-color:var(--eb-global-primary-color)}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product .eb-woo-product-overlay .eb-woo-product-button-list a.button.eb-woo-product-detail,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product .eb-woo-product-button-list a.button.eb-woo-product-detail{color:var(--eb-global-heading-text-color);background:var(--eb-global-background-color);transition:all 0.3s,border 0.5s,border-radius 0.5s,box-shadow 0.5s}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-3 .eb-woo-product .eb-woo-product-overlay .eb-woo-product-button-list a.button.eb-woo-product-detail:hover{color:var(--eb-global-background-color);background:var(--eb-global-tertiary-color)}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product-content .eb-woo-product-category .eb-woo-product-category-list li,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery .eb-woo-product-content .eb-woo-product-category .eb-woo-product-category-list li a{color:var(--eb-global-button-text-color)}.eb-parent-eb-woo-product-1craj{display:block}.root-eb-woo-product-1craj{position:relative}.root-eb-woo-product-1craj.eb_liquid_glass-effect1{background-color:#753B3B1F;backdrop-filter:blur(20px)}.root-eb-woo-product-1craj.eb_liquid_glass-effect2{background-color:#753B3B1F;backdrop-filter:blur(20px) brightness(1)}.root-eb-woo-product-1craj.eb_liquid_glass_shadow-effect1{border-width:1px;border-color:#FFFFFF1F;border-style:solid;border-radius:24px}.root-eb-woo-product-1craj.eb_liquid_glass-effect2 > .eb-parent-wrapper > div{background:transparent} @media(max-width: 1024px){.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery{margin-left:-5px;margin-right:-5px;margin-bottom:-10px}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-1 .eb-woo-products-col,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-2 .eb-woo-products-col,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-3 .eb-woo-products-col{flex:0 0 33.333333333333336%;max-width:33.333333333333336%}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-1 .eb-woo-products-col,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-2 .eb-woo-products-col,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-3 .eb-woo-products-col{padding-left:5px;padding-right:5px;margin-bottom:10px}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.list-preset-1 .eb-woo-products-col{margin-bottom:10px}.eb-parent-eb-woo-product-1craj{display:block}} @media(max-width: 767px){.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery{margin-left:-0px;margin-right:-0px;margin-bottom:-0px}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-1 .eb-woo-products-col,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-2 .eb-woo-products-col,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-3 .eb-woo-products-col{flex:0 0 100%;max-width:100%}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-1 .eb-woo-products-col,.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.grid-preset-2 .eb-woo-products-col{padding-left:0px;padding-right:0px;margin-bottom:0px}.eb-woo-products-wrapper.eb-woo-product-1craj .eb-woo-products-gallery.list-preset-1 .eb-woo-products-col{margin-bottom:0px}.eb-parent-eb-woo-product-1craj{display:block}}