.dc-slider-wrap {
position: relative;
padding: 10px 0;
width: 100%;
} .dc-slider-track {
display: flex !important;
flex-direction: row !important;
flex-wrap: nowrap !important;
gap: 16px;
overflow-x: auto !important;
overflow-y: visible;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;  padding: 8px 50px 12px;
cursor: grab;
user-select: none;
-webkit-user-select: none;
width: 100%;
box-sizing: border-box;
}
.dc-slider-track::-webkit-scrollbar {
display: none; }
.dc-slider-track.is-dragging {
cursor: grabbing;
scroll-behavior: auto;
} .dc-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
width: 38px;
height: 38px;
background: #fff;
border: 1px solid #ddd;
border-radius: 50%;
font-size: 20px;
line-height: 1;
cursor: pointer;
box-shadow: 0 2px 8px rgba(0,0,0,.12);
transition: background .15s, opacity .2s;
display: flex;
align-items: center;
justify-content: center;
color: #333;
padding: 0;
}
.dc-arrow-prev { left: 6px; }
.dc-arrow-next { right: 6px; }
.dc-arrow:hover {
background: #f5f5f5;
}
.dc-arrow.is-hidden {
opacity: 0;
pointer-events: none;
} .dc-item {
display: flex !important;
flex-direction: column !important;
align-items: center;
gap: 8px;
text-decoration: none;
color: inherit;
flex-shrink: 0 !important;
width: auto !important;
}
.dc-thumb {
border-radius: 22px;
overflow: hidden;
border: 1px solid #eee;
box-shadow: 0 2px 8px rgba(0,0,0,.08);
transition: transform .2s, box-shadow .2s;
flex-shrink: 0;
}
.dc-item:hover .dc-thumb {
transform: translateY(-3px);
box-shadow: 0 6px 18px rgba(0,0,0,.14);
}
.dc-thumb img {
width: 100% !important;
height: 100% !important;
object-fit: cover !important;
display: block !important;
pointer-events: none; margin: 0 !important;
border-radius: 0 !important;
box-shadow: none !important;
max-width: 100% !important;
}
.dc-label {
font-size: 13px;
font-weight: 500;
text-align: center;
color: #222;
line-height: 1.3;
max-width: var(--dc-size, 130px);
white-space: normal;
}
.dc-empty {
color: #888;
font-style: italic;
} @media (max-width: 640px) {
.dc-slider-wrap {
width: 100vw;
position: relative;
left: 50%;
transform: translateX(-50%);
padding: 10px 0;
}
}.hc-hero-grid {
display: grid;
grid-template-columns: repeat(var(--hero-columns, 2), 1fr);
gap: 6px;
width: 100%;
} .hc-hero-card {
position: relative;
height: var(--hero-height, 350px);
overflow: hidden;
display: block;
text-decoration: none;
cursor: pointer;
} .hc-hero-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
will-change: transform;
}
.hc-hero-card:hover .hc-hero-bg {
transform: scale(1.07);
} .hc-hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
to top,
rgba(10, 75, 65, 0.92) 0%,
rgba(10, 75, 65, 0.52) 42%,
rgba(0, 0, 0, 0.12) 100%
);
transition: opacity 0.4s ease;
}
.hc-hero-card:hover .hc-hero-overlay {
opacity: 0.78;
} .hc-hero-card::after {
content: '';
position: absolute;
inset: 0;
border: 3px solid rgba(100, 220, 195, 0);
box-shadow: inset 0 0 0 rgba(100, 220, 195, 0);
transition: border-color 0.4s ease, box-shadow 0.4s ease;
z-index: 3;
pointer-events: none;
}
.hc-hero-card:hover::after {
border-color: rgba(100, 220, 195, 0.65);
box-shadow: inset 0 0 30px rgba(100, 220, 195, 0.12);
} .hc-hero-content {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 36px 32px;
z-index: 2;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 12px;
} .hc-hero-name {
font-size: clamp(18px, 2.2vw, 26px);
font-weight: 800;
text-transform: uppercase;
letter-spacing: 3px;
color: #ffffff;
text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
line-height: 1.15;
display: block;
background: linear-gradient(currentColor, currentColor) no-repeat left bottom;
background-size: 0% 2px;
padding-bottom: 4px;
transition: background-size 0.38s ease;
}
.hc-hero-card:hover .hc-hero-name {
background-size: 100% 2px;
} .hc-hero-cta {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 3.5px;
color: #fff;
background: rgba(100, 220, 195, 0.18);
border: 1px solid rgba(100, 220, 195, 0.60);
padding: 7px 18px;
border-radius: 2px;
opacity: 0;
transform: translateY(14px);
transition: opacity 0.35s ease 0.07s, transform 0.35s ease 0.07s;
display: inline-block;
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
}
.hc-hero-card:hover .hc-hero-cta {
opacity: 1;
transform: translateY(0);
} @media (max-width: 900px) {
.hc-hero-grid {
grid-template-columns: repeat(2, 1fr) !important;
}
.hc-hero-card {
height: 300px;
}
}
@media (max-width: 600px) {
.hc-hero-grid {
grid-template-columns: 1fr !important;
gap: 4px;
}
.hc-hero-card {
height: 260px;
}
.hc-hero-content {
padding: 24px 20px;
}
}
.hc-empty {
color: #888;
font-style: italic;
}.eweld-slider,
.eweld-slider *,
.eweld-slider *::before,
.eweld-slider *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
} .eweld-slider {
position: relative;
width: 100vw;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
overflow: hidden;
background: #1a1a1a; } .eweld-slider__track {
position: relative;
width: 100%;
height: 100%;
} .eweld-slider__slide {
position: absolute;
inset: 0;
width: 100%;
min-height: 520px;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-color: #1e1e1e;
display: flex;
align-items: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.8s ease, visibility 0.8s ease;
z-index: 0;
}
.eweld-slider__slide--active {
opacity: 1;
visibility: visible;
position: relative; z-index: 1;
} .eweld-slider__overlay {
position: absolute;
inset: 0;
background: linear-gradient(
90deg,
rgba(0, 0, 0, 0.72) 0%,
rgba(0, 0, 0, 0.45) 55%,
rgba(0, 0, 0, 0.15) 100%
);
z-index: 1;
} .eweld-slider__content {
position: relative;
z-index: 2;
max-width: 680px;
padding: 80px 5% 80px 8%;
} .eweld-slider__heading {
font-size: clamp(2rem, 5vw, 3.2rem);
font-weight: 800;
line-height: 1.15;
letter-spacing: -0.02em;
margin-bottom: 18px;
}
.eweld-slider__heading-white {
color: #ffffff;
display: block;
}
.eweld-slider__heading-orange {
color: #f07d00;
display: block;
} .eweld-slider__subtitle {
color: rgba(255, 255, 255, 0.85);
font-size: clamp(0.95rem, 2vw, 1.1rem);
line-height: 1.65;
margin-bottom: 32px;
max-width: 500px;
} .eweld-slider__buttons {
display: flex;
flex-wrap: wrap;
gap: 14px;
align-items: center;
}
.eweld-btn {
display: inline-block;
padding: 14px 32px;
border-radius: 4px;
font-size: 0.95rem;
font-weight: 700;
text-decoration: none;
letter-spacing: 0.03em;
transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
cursor: pointer;
white-space: nowrap;
}
.eweld-btn:hover {
transform: translateY(-2px);
} .eweld-btn--primary {
background: #f07d00;
color: #ffffff;
border: 2px solid #f07d00;
}
.eweld-btn--primary:hover {
background: #d96e00;
border-color: #d96e00;
color: #ffffff;
} .eweld-btn--outline {
background: transparent;
color: #ffffff;
border: 2px solid rgba(255, 255, 255, 0.7);
}
.eweld-btn--outline:hover {
background: rgba(255, 255, 255, 0.1);
border-color: #ffffff;
color: #ffffff;
} .eweld-slider__arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
background: rgba(0, 0, 0, 0.45);
color: #fff;
border: none;
width: 48px;
height: 48px;
border-radius: 50%;
font-size: 1.8rem;
line-height: 1;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s ease;
-webkit-tap-highlight-color: transparent;
}
.eweld-slider__arrow:hover {
background: rgba(240, 125, 0, 0.85);
}
.eweld-slider__arrow--prev { left: 18px; }
.eweld-slider__arrow--next { right: 18px; } .eweld-slider__dots {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 10;
display: flex;
gap: 10px;
}
.eweld-slider__dot {
width: 10px;
height: 10px;
border-radius: 50%;
border: 2px solid rgba(255, 255, 255, 0.6);
background: transparent;
cursor: pointer;
padding: 0;
transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
-webkit-tap-highlight-color: transparent;
}
.eweld-slider__dot--active,
.eweld-slider__dot:hover {
background: #f07d00;
border-color: #f07d00;
transform: scale(1.25);
} .eweld-slider__progress {
position: absolute;
bottom: 0;
left: 0;
height: 3px;
background: #f07d00;
z-index: 10;
transform-origin: left;
transition: none;
} @media (max-width: 768px) {
.eweld-slider__slide {
min-height: 420px;
align-items: flex-end;
}
.eweld-slider__overlay {
background: linear-gradient(
0deg,
rgba(0, 0, 0, 0.80) 0%,
rgba(0, 0, 0, 0.50) 60%,
rgba(0, 0, 0, 0.20) 100%
);
}
.eweld-slider__content {
padding: 30px 5% 60px 5%;
max-width: 100%;
}
.eweld-slider__heading {
font-size: clamp(1.6rem, 7vw, 2.4rem);
}
.eweld-slider__buttons {
gap: 10px;
}
.eweld-btn {
padding: 12px 22px;
font-size: 0.9rem;
}
.eweld-slider__arrow {
width: 38px;
height: 38px;
font-size: 1.4rem;
}
.eweld-slider__arrow--prev { left: 10px; }
.eweld-slider__arrow--next { right: 10px; }
}
@media (max-width: 480px) {
.eweld-slider__slide {
min-height: 360px;
}
.eweld-slider__buttons {
flex-direction: column;
align-items: flex-start;
}
.eweld-btn {
width: 100%;
text-align: center;
}
}.eweld-ps {
width: 100%;
padding: 48px 0;
box-sizing: border-box;
} .eweld-ps__header {
display: flex;
align-items: baseline;
justify-content: space-between;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 24px;
}
.eweld-ps__title {
font-size: clamp(1.4rem, 3vw, 1.9rem);
font-weight: 800;
color: #2c2c2c;
letter-spacing: -0.02em;
line-height: 1.2;
position: relative;
padding-bottom: 10px;
margin: 0;
}
.eweld-ps__title::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 48px;
height: 3px;
background: #f58532;
border-radius: 2px;
}
.eweld-ps__view-all {
color: #f58532;
font-size: 0.9rem;
font-weight: 600;
text-decoration: none;
white-space: nowrap;
transition: color 0.2s;
}
.eweld-ps__view-all:hover {
color: #d97226;
text-decoration: underline;
} .eweld-ps__wrapper {
position: relative;
display: flex;
align-items: center;
gap: 10px;
} .eweld-ps__arrow {
flex-shrink: 0;
width: 42px;
height: 42px;
border-radius: 50%;
border: 2px solid #e0e0e0;
background: #fff;
color: #2c2c2c;
font-size: 1.5rem;
line-height: 1;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s, border-color 0.2s, color 0.2s;
-webkit-tap-highlight-color: transparent;
touch-action: manipulation;
}
.eweld-ps__arrow:hover {
background: #f58532;
border-color: #f58532;
color: #fff;
}
.eweld-ps__arrow:disabled {
opacity: 0.3;
cursor: default;
pointer-events: none;
} .eweld-ps__track-outer {
flex: 1;
overflow: hidden; padding: 6px 0 14px;
} .eweld-ps__track {
display: flex;
gap: 20px;
transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
will-change: transform;
} .eweld-ps__track .product-card { flex: 0 0 calc(25% - 15px);
min-width: 220px; overflow: visible;
} .eweld-ps__track .product-card .product-image {
border-radius: 12px 12px 0 0;
overflow: hidden;
}  .eweld-ps__track .product-card .price-wrapper {
display: flex !important;
flex-direction: column !important;
align-items: flex-start !important;
gap: 2px !important;
} .eweld-ps__track .product-card .regular-price {
font-size: 14px !important;
color: #999 !important;
font-weight: 400 !important;
text-decoration: line-through !important;
} .eweld-ps__track .product-card .sale-price {
font-size: 18px !important;
font-weight: 700 !important;
color: #f58532 !important;
} .eweld-ps__track .product-card .regular-price.single-price {
font-size: 18px !important;
font-weight: 700 !important;
color: #2c2c2c !important;
text-decoration: none !important;
}
.eweld-ps__track .product-card .inc-vat {
font-size: 13px !important;
color: #666 !important;
font-weight: 400 !important;
} .eweld-ps__track .product-card .add-to-cart {
color: #ffffff !important;
}
.eweld-ps__track .product-card .add-to-cart:hover {
color: #ffffff !important;
} .eweld-ps__empty {
color: #999;
font-size: 0.95rem;
padding: 24px 0;
}  @media (max-width: 1100px) {
.eweld-ps__track .product-card {
flex: 0 0 calc(33.333% - 14px);
}
} @media (max-width: 768px) {
.eweld-ps {
padding: 32px 0;
} .eweld-ps__track-outer {
flex: 1 1 100%;
width: 100%;
} .eweld-ps__arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10; background: rgba(255, 255, 255, 0.92);
border: 2px solid #e0e0e0;
color: #2c2c2c;
width: 38px;
height: 38px;
font-size: 1.3rem; flex-shrink: 0;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.eweld-ps__arrow--prev { left: 6px; }
.eweld-ps__arrow--next { right: 6px; }
.eweld-ps__arrow:hover,
.eweld-ps__arrow:active {
background: #f58532;
border-color: #f58532;
color: #fff;
} .eweld-ps__track .product-card {
flex: 0 0 calc(50% - 10px);
min-width: 160px;
}
} @media (max-width: 480px) {
.eweld-ps__track {
gap: 12px;
} .eweld-ps__track .product-card {
flex: 0 0 calc(100% - 12px);
min-width: 0;
}
.eweld-ps__arrow {
width: 36px;
height: 36px;
}
.eweld-ps__arrow--prev { left: 4px; }
.eweld-ps__arrow--next { right: 4px; }
}