.clubband-products-tabs {
display: flex;
gap: 0;
border-bottom: 2px solid #000;
margin-bottom: 32px;
flex-wrap: wrap;
}
.clubband-products-tab {
padding: 12px 28px;
background: transparent;
border: none;
border-bottom: 3px solid transparent;
margin-bottom: -2px;
font-family: "Bebas Neue", sans-serif;
font-size: 18px;
letter-spacing: 1px;
cursor: pointer;
color: #888;
transition: color 0.2s ease, border-color 0.2s ease;
text-transform: uppercase;
}
.clubband-products-tab:hover {
color: #000;
}
.clubband-products-tab-active {
color: #000;
border-bottom-color: #000;
} .clubband-products-loading {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 48px 24px;
gap: 14px;
}
.clubband-products-loading p {
font-family: "Montserrat", sans-serif;
font-size: 14px;
color: #888;
margin: 0;
}
.clubband-products-spinner {
width: 36px;
height: 36px;
border: 3px solid #eee;
border-top-color: #000;
border-radius: 50%;
animation: cbv2Spin 0.75s linear infinite;
}
@keyframes cbv2Spin {
to { transform: rotate(360deg); }
} .clubband-products-error {
padding: 24px;
text-align: center;
color: #888;
font-family: "Montserrat", sans-serif;
font-size: 14px;
} .clubband-products-empty {
text-align: center;
padding: 32px;
color: #888;
font-size: 14px;
font-family: "Montserrat", sans-serif;
grid-column: 1 / -1; } .clubband-products-mode-grid .clubband-products-cards {
display: grid;
grid-template-columns: repeat( var(--cb-products-columns, 3), 1fr );
gap: 24px;
}
@media (max-width: 1024px) {
.clubband-products-mode-grid .clubband-products-cards {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.clubband-products-mode-grid .clubband-products-cards {
grid-template-columns: 1fr;
}
} .clubband-products-mode-slider .clubband-products-slider-wrap {
display: flex;
align-items: center;
gap: 0;
position: relative;
}
.clubband-products-mode-slider .clubband-slider-track {
display: flex;
gap: 24px;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
scrollbar-width: none; flex: 1;
padding-bottom: 4px; }
.clubband-products-mode-slider .clubband-slider-track::-webkit-scrollbar {
display: none; } .clubband-products-mode-slider .clubband-slider-track .clubband-products-card {
scroll-snap-align: start;
flex: 0 0 auto;
width: calc( (100% - var(--cb-gap-total, 48px)) / var(--cb-products-columns, 3) );
min-width: 220px;
max-width: 480px;
box-sizing: border-box;
} .clubband-slider-btn {
flex-shrink: 0;
width: 44px;
height: 44px;
background: #000;
color: #fff;
border: none;
font-size: 30px;
line-height: 1;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s ease;
font-family: "Bebas Neue", sans-serif;
user-select: none;
}
.clubband-slider-btn:hover {
background: #333;
}
.clubband-slider-prev {
margin-right: 12px;
}
.clubband-slider-next {
margin-left: 12px;
} .clubband-slider-btn:disabled,
.clubband-slider-btn[disabled] {
opacity: 0.25;
cursor: default;
pointer-events: none;
} .clubband-products-no-overflow .clubband-slider-btn {
display: none;
} .clubband-products-card {
background: #fff;
border: 1px solid #000;
display: flex;
flex-direction: column;
overflow: hidden;
transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.clubband-products-card:hover {
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
transform: translateY(-3px);
} .clubband-products-card-media {
width: 100%;
overflow: hidden;
background: #f2f2f2;
aspect-ratio: 16 / 9;
}
.clubband-products-card-media img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s ease;
}
.clubband-products-card:hover .clubband-products-card-media img,
.clubband-products-card:hover .clubband-products-card-media video {
transform: scale(1.04);
} .clubband-product-video {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s ease;
background: #000;
} .clubband-inner-slider-wrapper {
position: relative;
display: flex; }
.clubband-inner-slider-track {
display: flex;
width: 100%;
height: 100%;
overflow-x: auto;
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
}
.clubband-inner-slider-track::-webkit-scrollbar {
display: none;
}
.clubband-inner-slide {
flex: 0 0 100%;
width: 100%;
height: 100%;
object-fit: cover;
scroll-snap-align: start;
}
.clubband-inner-slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 32px;
height: 32px;
background: rgba(255, 255, 255, 0.8);
color: #000;
border: none;
border-radius: 50%;
font-size: 20px;
line-height: 1;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
transition: background 0.2s ease, opacity 0.2s ease;
opacity: 0; }
.clubband-products-card:hover .clubband-inner-slider-btn {
opacity: 1;
}
.clubband-inner-slider-btn:hover {
background: #fff;
box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.clubband-inner-prev {
left: 8px;
}
.clubband-inner-next {
right: 8px;
} .clubband-products-card-media--video {
aspect-ratio: 16 / 9;
}
.clubband-products-card-video-wrap {
position: relative;
width: 100%;
padding-top: 56.25%; }
.clubband-products-card-video-wrap iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: none;
} .clubband-products-card-body {
display: flex;
flex-direction: column;
flex: 1;
padding: 20px;
gap: 10px;
}
.clubband-products-card-name {
font-family: "Bebas Neue", sans-serif;
font-size: 22px;
font-weight: 400;
letter-spacing: 1px;
color: #000;
margin: 0;
line-height: 1.2;
}
.clubband-products-card-desc {
font-family: "Montserrat", sans-serif;
font-size: 14px;
color: #555;
line-height: 1.65;
margin: 0;
flex: 1;
} .clubband-products-card-footer {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-top: auto;
padding-top: 16px;
border-top: 1px solid #eee;
flex-wrap: wrap;
}
.clubband-products-card-price {
font-family: "Bebas Neue", sans-serif;
font-size: 28px;
font-weight: 400;
letter-spacing: 1px;
color: #000;
white-space: nowrap;
}
.clubband-products-card-footer .clubband-add-btn {
flex: 1;
min-width: 90px;
padding: 12px 16px;
font-size: 16px;
} .clubband-product-single {
display: inline-flex;
align-items: center;
gap: 16px;
flex-wrap: wrap;
font-family: "Montserrat", sans-serif;
}
.clubband-product-single-loading {
display: flex;
align-items: center;
justify-content: center;
min-height: 40px;
}
.clubband-product-single-content {
display: flex;
align-items: center;
gap: 16px;
flex-wrap: wrap;
}
.clubband-product-single-price {
font-family: "Bebas Neue", sans-serif;
font-size: 32px;
font-weight: 400;
letter-spacing: 1px;
color: #000;
white-space: nowrap;
line-height: 1;
} .clubband-product-single-btn.clubband-add-btn {
width: auto !important;
display: inline-flex !important;
padding: 14px 28px !important;
font-size: 18px !important;
}
.clubband-product-single-error p {
color: #aaa;
font-size: 13px;
margin: 0;
font-family: "Montserrat", sans-serif;
} .clubband-products-wrapper {
--cb-package-olive: #41413e;
--cb-package-olive-soft: #d8d8d4;
--cb-package-charcoal: #242421;
--cb-package-cream: #f7f7f5;
}
.clubband-products-wrapper .clubband-products-card {
background: #fff;
border: 1px solid var(--cb-package-charcoal);
border-top: 4px solid #111;
border-radius: 16px;
box-shadow: 0 6px 24px rgba(25, 25, 20, 0.06);
}
.clubband-products-wrapper .clubband-products-card:hover {
box-shadow: 0 12px 32px rgba(25, 25, 20, 0.11);
transform: translateY(-3px);
}
.clubband-products-wrapper .clubband-products-card-media {
border-radius: 15px 15px 0 0;
}
.clubband-products-wrapper .clubband-products-card-body {
padding: 20px 22px;
gap: 12px;
}
.clubband-products-wrapper .clubband-products-card-name {
font-family: "Montserrat", sans-serif;
font-size: 25px;
font-weight: 600;
line-height: 1.2;
letter-spacing: 0;
color: var(--cb-package-charcoal);
text-align: center;
text-transform: none;
}
.clubband-products-wrapper .clubband-products-card-desc {
color: #5e5c57;
font-family: "Montserrat", sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
}
.cb-package-features,
.cbf {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 5px;
margin-bottom: 10px;
}
.cb-package-feature,
.cbi {
display: inline-flex;
align-items: center;
padding: 3px 7px;
border: 1px solid var(--cb-package-olive-soft);
border-radius: 7px;
background: #fdfcf8;
color: var(--cb-package-charcoal);
font-size: 11px;
font-style: normal;
font-weight: 500;
line-height: 1.1;
white-space: nowrap;
}
.cb-package-copy,
.cbc {
display: block;
text-align: left;
}
.clubband-products-wrapper .clubband-products-card-desc .cbc > strong {
display: block;
margin-bottom: 8px;
color: var(--cb-package-olive);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.12em;
line-height: 1.2;
text-transform: uppercase;
}
.cb-package-popular,
.cbp {
display: block;
width: max-content;
margin: -4px auto 12px;
padding: 6px 11px;
border-radius: 6px;
background: var(--cb-package-olive);
color: #fff;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.08em;
line-height: 1;
}
.clubband-products-wrapper .clubband-products-card-footer {
flex-direction: row;
align-items: center;
justify-content: space-between;
flex-wrap: nowrap;
gap: 16px;
padding-top: 4px;
border-top: 0;
}
.clubband-products-wrapper .clubband-products-card-price {
display: block;
font-family: "Montserrat", sans-serif;
font-size: 30px;
font-weight: 500;
line-height: 1.1;
letter-spacing: -1px;
color: var(--cb-package-charcoal);
text-align: left;
}
.clubband-products-wrapper .clubband-products-card-price::before {
content: none;
display: none;
}
.clubband-products-wrapper .clubband-products-card-footer .clubband-add-btn {
flex: 0 0 auto;
width: auto;
min-width: 158px;
min-height: 46px;
padding: 11px 18px;
border-radius: 999px;
background: var(--cb-package-charcoal);
border-color: var(--cb-package-charcoal);
font-family: "Montserrat", sans-serif;
font-size: 0;
font-weight: 500;
letter-spacing: 0;
text-transform: none;
}
.clubband-products-wrapper .clubband-products-card-footer .clubband-add-btn::after {
content: "Add to quote";
font-size: 14px;
}
.clubband-products-wrapper .clubband-products-card-footer .clubband-add-btn .clubband-btn-icon {
font-family: "Montserrat", sans-serif;
font-size: 15px;
}
.clubband-products-wrapper .clubband-products-card-footer .clubband-add-btn.clubband-added {
background: var(--cb-package-cream);
border-color: var(--cb-package-olive);
color: var(--cb-package-olive);
}
.clubband-products-wrapper .clubband-products-card-footer .clubband-add-btn.clubband-added::after {
content: "Added";
}
.clubband-products-wrapper .clubband-slider-btn {
background: var(--cb-package-charcoal);
border-radius: 10px;
}
.clubband-products-wrapper .clubband-slider-btn:hover {
background: var(--cb-package-olive);
}
@media (max-width: 600px) {
.clubband-products-wrapper .clubband-products-card-body {
padding: 16px;
}
.clubband-products-wrapper .clubband-products-card-name {
font-size: 23px;
}
.clubband-products-wrapper .clubband-products-card-footer {
gap: 10px;
}
.clubband-products-wrapper .clubband-products-card-price {
font-size: 28px;
}
.clubband-products-wrapper .clubband-products-card-footer .clubband-add-btn {
min-width: 104px;
padding-inline: 16px;
}
.clubband-products-wrapper .clubband-products-card-footer .clubband-add-btn::after {
content: "Add";
}
.clubband-products-wrapper .clubband-products-card-footer .clubband-add-btn.clubband-added::after {
content: "Added";
}
} @media (min-width: 901px) { .clubband-products-mode-slider .clubband-products-slider-wrap {
position: relative;
}
.clubband-products-mode-slider .clubband-slider-btn {
position: absolute;
top: 50%;
z-index: 10;
margin: 0 !important;
transform: translateY(-50%);
}
.clubband-products-mode-slider .clubband-slider-prev {
left: -56px;
}
.clubband-products-mode-slider .clubband-slider-next {
right: -56px;
}
}
@media (max-width: 900px) {
.clubband-products-mode-slider .clubband-slider-track .clubband-products-card {
width: calc((100% - 24px) / 2);
max-width: none;
}
}
@media (max-width: 600px) {
.clubband-products-mode-slider .clubband-slider-track .clubband-products-card {
width: 100%;
min-width: 100%;
max-width: none;
}
.clubband-products-mode-slider .clubband-slider-track {
gap: 14px;
}
.clubband-products-wrapper .clubband-slider-btn {
width: 36px;
height: 44px;
}
.clubband-products-wrapper .clubband-slider-prev {
margin-right: 6px;
}
.clubband-products-wrapper .clubband-slider-next {
margin-left: 6px;
}
}@keyframes slideInRight{from{transform:translate3d(100%,0,0);visibility:visible}to{transform:translate3d(0,0,0)}}.slideInRight{animation-name:slideInRight}[data-elementor-type=popup] .elementor-section-wrap:not(:empty)+#elementor-add-new-section,[data-elementor-type=popup]:not(.elementor-edit-area){display:none}.elementor-popup-modal.dialog-type-lightbox{background-color:transparent;display:flex;pointer-events:none;-webkit-user-select:auto;-moz-user-select:auto;user-select:auto}.elementor-popup-modal .dialog-buttons-wrapper,.elementor-popup-modal .dialog-header{display:none}.elementor-popup-modal .dialog-close-button{display:none;inset-inline-end:20px;margin-top:0;opacity:1;pointer-events:all;top:20px;z-index:9999}.elementor-popup-modal .dialog-close-button svg{fill:#1f2124;height:1em;width:1em}.elementor-popup-modal .dialog-widget-content{background-color:#fff;border-radius:0;box-shadow:none;max-height:100%;max-width:100%;overflow:visible;pointer-events:all;width:auto}.elementor-popup-modal .dialog-message{display:flex;max-height:100vh;max-width:100vw;overflow:auto;padding:0;width:640px}.elementor-popup-modal .elementor{width:100%}.elementor-animation-shrink{transition-duration:.3s;transition-property:transform}.elementor-animation-shrink:active,.elementor-animation-shrink:focus,.elementor-animation-shrink:hover{transform:scale(.9)}.elementor-button.elementor-hidden,.elementor-hidden{display:none}.e-form__step{width:100%}.e-form__step:not(.elementor-hidden){display:flex;flex-wrap:wrap}.e-form__buttons{flex-wrap:wrap}.e-form__buttons,.e-form__buttons__wrapper{display:flex}.e-form__indicators{align-items:center;display:flex;flex-wrap:nowrap;font-size:13px;justify-content:space-between;margin-bottom:var(--e-form-steps-indicators-spacing)}.e-form__indicators__indicator{align-items:center;display:flex;flex-basis:0;flex-direction:column;justify-content:center;padding:0 var(--e-form-steps-divider-gap)}.e-form__indicators__indicator__progress{background-color:var(--e-form-steps-indicator-progress-background-color);border-radius:var(--e-form-steps-indicator-progress-border-radius);overflow:hidden;position:relative;width:100%}.e-form__indicators__indicator__progress__meter{background-color:var(--e-form-steps-indicator-progress-color);border-radius:var(--e-form-steps-indicator-progress-border-radius);color:var(--e-form-steps-indicator-progress-meter-color);height:var(--e-form-steps-indicator-progress-height);line-height:var(--e-form-steps-indicator-progress-height);padding-right:15px;text-align:right;transition:width .1s linear;width:var(--e-form-steps-indicator-progress-meter-width,0)}.e-form__indicators__indicator:first-child{padding-left:0}.e-form__indicators__indicator:last-child{padding-right:0}.e-form__indicators__indicator--state-inactive{color:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-inactive [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-inactive-secondary-color,#fff)}.e-form__indicators__indicator--state-inactive object,.e-form__indicators__indicator--state-inactive svg{fill:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-active{border-color:var(--e-form-steps-indicator-active-secondary-color,#fff);color:var(--e-form-steps-indicator-active-primary-color,#39b54a)}.e-form__indicators__indicator--state-active [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-active-secondary-color,#fff)}.e-form__indicators__indicator--state-active object,.e-form__indicators__indicator--state-active svg{fill:var(--e-form-steps-indicator-active-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed{color:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator--state-completed [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator__label{color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator--shape-none{background-color:initial;color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed object,.e-form__indicators__indicator--state-completed svg{fill:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator__icon{align-items:center;border-style:solid;border-width:1px;display:flex;font-size:var(--e-form-steps-indicator-icon-size);height:var(--e-form-steps-indicator-padding,30px);justify-content:center;margin-bottom:10px;overflow:hidden;width:var(--e-form-steps-indicator-padding,30px)}.e-form__indicators__indicator__icon img,.e-form__indicators__indicator__icon object,.e-form__indicators__indicator__icon svg{height:auto;width:var(--e-form-steps-indicator-icon-size)}.e-form__indicators__indicator__icon .e-font-icon-svg{height:1em}.e-form__indicators__indicator__number{align-items:center;border-style:solid;border-width:1px;display:flex;height:var(--e-form-steps-indicator-padding,30px);justify-content:center;margin-bottom:10px;width:var(--e-form-steps-indicator-padding,30px)}.e-form__indicators__indicator--shape-circle{border-radius:50%}.e-form__indicators__indicator--shape-square{border-radius:0}.e-form__indicators__indicator--shape-rounded{border-radius:5px}.e-form__indicators__indicator--shape-none{border:0}.e-form__indicators__indicator__label{text-align:center}.e-form__indicators__indicator__separator{background-color:#babfc5;height:var(--e-form-steps-divider-width);width:100%}.e-form__indicators--type-icon,.e-form__indicators--type-icon_text,.e-form__indicators--type-number,.e-form__indicators--type-number_text{align-items:flex-start}.e-form__indicators--type-icon .e-form__indicators__indicator__separator,.e-form__indicators--type-icon_text .e-form__indicators__indicator__separator,.e-form__indicators--type-number .e-form__indicators__indicator__separator,.e-form__indicators--type-number_text .e-form__indicators__indicator__separator{margin-top:calc(var(--e-form-steps-indicator-padding, 30px) / 2 - var(--e-form-steps-divider-width, 1px) / 2)}.elementor-field-type-hidden{display:none}.elementor-field-type-html{display:inline-block}.elementor-field-type-tel input{direction:inherit}.elementor-field-type-recaptcha_v3 .elementor-field-label{display:none}.elementor-field-type-recaptcha_v3 .grecaptcha-badge{z-index:1}.elementor-button .elementor-form-spinner{order:3}.elementor-form .elementor-button .elementor-button-content-wrapper{align-items:center}.elementor-form .elementor-button .elementor-button-text{white-space:normal}.elementor-form .elementor-button svg{height:auto}.elementor-form .elementor-button .e-font-icon-svg{height:1em}.elementor-form .elementor-button .elementor-button-content-wrapper{gap:5px}.elementor-form .elementor-button .elementor-button-icon,.elementor-form .elementor-button .elementor-button-text{flex-grow:unset;order:unset}.elementor-select-wrapper .select-caret-down-wrapper{font-size:11px;inset-inline-end:10px;pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.elementor-select-wrapper .select-caret-down-wrapper svg{aspect-ratio:unset;display:unset;fill:currentColor;overflow:visible;width:1em}.elementor-select-wrapper .select-caret-down-wrapper i{font-size:19px;line-height:2}.elementor-select-wrapper.remove-before:before{content:""!important}.elementor-message-svg:before{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxMSIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDE0IDExIj48cGF0aCBmaWxsPSIjMDA4YTIwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00Ljc1IDguMTUgMS42IDUgLjU1IDYuMDVsNC4yIDQuMiA5LTlMMTIuNy4yeiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9zdmc+");background-position:50%;background-repeat:no-repeat;content:"";height:1em;width:1em}