.custom-btn{--btn-bg: #8b1e3f;--btn-color: #ffffff;--btn-hover-bg: #6d1832;--btn-border-color: transparent;--btn-font-size: 1rem;--btn-radius: 4px;display:inline-flex;align-items:center;justify-content:center;gap:.5rem;text-decoration:none;font-weight:600;font-size:var(--btn-font-size);border-radius:var(--btn-radius);border:2px solid var(--btn-border-color);background-color:var(--btn-bg);color:var(--btn-color);cursor:pointer;transition:background-color .2s ease,transform .2s ease,border-color .2s ease;text-align:center}.custom-btn:hover{background-color:var(--btn-hover-bg);transform:translateY(-1px)}.custom-btn--primary{--btn-bg: var(--btn-bg, #8b1e3f);--btn-color: var(--btn-color, #ffffff);--btn-hover-bg: #6d1832}.custom-btn--secondary{--btn-bg: transparent;--btn-color: #ffffff;--btn-border-color: #ffffff;--btn-hover-bg: rgba(255, 255, 255, .1)}.custom-btn--secondary:hover{--btn-border-color: #ffffff}.custom-btn--outline{--btn-bg: transparent;--btn-color: var(--btn-color, #8b1e3f);--btn-border-color: var(--btn-color, #8b1e3f);--btn-hover-bg: var(--btn-color, #8b1e3f)}.custom-btn--outline:hover{--btn-color: #ffffff}.custom-btn--small{padding:.3rem 1rem}.custom-btn--medium{padding:.4rem 1.5rem}.custom-btn--large{padding:.5rem 2.5rem}.custom-btn--full-width{width:100%}.hero-fullscreen{position:relative;width:100%;height:100vh;min-height:600px;display:flex;flex-direction:column;overflow:hidden}.hero-fullscreen--small{height:40rem;min-height:400px}.hero-fullscreen--medium{height:60rem;min-height:500px}.hero-fullscreen--large{height:80rem}.hero-fullscreen__media{position:absolute;top:0;left:0;width:100%;height:100%;z-index:0}.hero-fullscreen__media img,.hero-fullscreen__media video{width:100%;height:100%;object-fit:cover}.hero-fullscreen__media video{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);min-width:100%;min-height:100%;z-index:1}.hero-fullscreen__overlay{position:absolute;top:0;left:0;width:100%;height:100%;background-color:var(--overlay-bg, rgba(0, 0, 0, .3));z-index:2;pointer-events:none}.hero-fullscreen__header{position:relative;z-index:10;display:flex;align-items:center;padding:var(--header-padding-y, 1.5rem) var(--header-padding-x, 3rem);width:100%}@media screen and (max-width:749px){.hero-fullscreen__header{padding:var(--header-padding-y-mobile, 1rem) var(--header-padding-x-mobile, 1.5rem)}}.hero-fullscreen__logo{display:flex;align-items:center;gap:1rem;text-decoration:none;z-index:11}.hero-fullscreen__logo-image{height:var(--logo-height, 60px);width:auto;object-fit:contain}@media screen and (max-width:749px){.hero-fullscreen__logo-image{height:var(--logo-height-mobile, 50px)}}.hero-fullscreen__logo-text{font-family:var(--logo-font, "Brush Script MT", cursive);font-size:var(--logo-text-size, 1.8rem);color:var(--header-text-color, #fff);white-space:nowrap}.hero-fullscreen__nav{display:flex;align-items:center;gap:2rem;margin-left:auto}@media screen and (max-width:989px){.hero-fullscreen__nav{display:none}}.hero-fullscreen__nav-list{display:flex;align-items:center;gap:var(--nav-gap, 2rem);list-style:none;margin:0;padding:0}.hero-fullscreen__nav-link{color:var(--nav-text-color, #fff);text-decoration:none;font-size:var(--nav-font-size, 1rem);font-weight:500;letter-spacing:.02em;transition:opacity .2s ease}.hero-fullscreen__nav-link:hover{opacity:.8}.hero-fullscreen__nav-item--has-dropdown{position:relative;display:flex;align-items:center;height:100%}.hero-fullscreen__nav-link-btn{background:none;border:none;cursor:pointer;padding:0;display:flex;align-items:center;gap:.5rem;color:var(--nav-text-color, #fff);font-size:var(--nav-font-size, 1rem);font-weight:500;font-family:inherit;letter-spacing:.02em}.hero-fullscreen__nav-link-btn svg{width:10px;height:10px;fill:currentColor;transition:transform .2s ease}.hero-fullscreen__nav-item--has-dropdown:hover .hero-fullscreen__nav-link-btn svg{transform:rotate(180deg)}.hero-fullscreen__dropdown{position:absolute;top:100%;left:0;min-width:220px;background:#000000e6;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);padding:1rem 0;list-style:none;border-radius:4px;opacity:0;visibility:hidden;transform:translateY(10px);transition:opacity .2s ease,visibility .2s ease,transform .2s ease;z-index:100;box-shadow:0 10px 30px #0003}.hero-fullscreen__nav-item--has-dropdown:hover .hero-fullscreen__dropdown{opacity:1;visibility:visible;transform:translateY(0)}.hero-fullscreen__dropdown li{display:block}.hero-fullscreen__dropdown-link{display:block;padding:.85rem 1.5rem;color:#fff;text-decoration:none;font-size:1.4rem;font-weight:500;transition:background-color .2s ease;white-space:nowrap}.hero-fullscreen__dropdown-link:hover{background-color:#ffffff1a}.hero-fullscreen__menu-toggle{display:none;background:none;border:none;padding:.5rem;cursor:pointer;z-index:101}@media screen and (max-width:989px){.hero-fullscreen__menu-toggle{display:flex;flex-direction:column;gap:5px;margin-left:auto}}.hero-fullscreen__menu-toggle span{display:block;width:24px;height:2px;background-color:var(--header-text-color, #fff);transition:transform .3s ease,opacity .3s ease}.hero-fullscreen__menu-toggle.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg)}.hero-fullscreen__menu-toggle.is-active span:nth-child(2){opacity:0}.hero-fullscreen__menu-toggle.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}.hero-fullscreen__mobile-menu{position:fixed;top:0;right:-100%;width:80%;max-width:320px;height:100vh;background:var(--mobile-menu-bg, rgba(0, 0, 0, .95));z-index:100;padding:2rem;transition:right .3s ease;overflow-y:auto}.hero-fullscreen__mobile-menu.is-open{right:0}.hero-fullscreen__mobile-menu-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:#00000080;z-index:99;opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease}.hero-fullscreen__mobile-menu-overlay.is-visible{opacity:1;visibility:visible}.hero-fullscreen__mobile-menu-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:2rem;padding-bottom:1rem;border-bottom:1px solid rgba(255,255,255,.1)}.hero-fullscreen__mobile-menu-title{color:#fff;font-size:1.2rem;font-weight:600;margin:0}.hero-fullscreen__mobile-close{display:flex;align-items:center;justify-content:center;width:40px;height:40px;background:#ffffff1a;border:none;border-radius:50%;cursor:pointer;transition:background-color .2s ease}.hero-fullscreen__mobile-close:hover{background:#fff3}.hero-fullscreen__mobile-close svg{width:20px;height:20px;fill:#fff}.hero-fullscreen__mobile-nav-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.5rem}.hero-fullscreen__mobile-nav-link{color:#fff;text-decoration:none;font-size:1.1rem;font-weight:500;display:block;padding:.75rem 0;border-bottom:1px solid rgba(255,255,255,.1);transition:opacity .2s ease,padding-left .2s ease}.hero-fullscreen__mobile-nav-link:hover{opacity:.8;padding-left:.5rem}.hero-fullscreen__mobile-cta{display:block;margin-top:2rem}.hero-fullscreen__content{position:relative;z-index:5;flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:var(--content-padding, 2rem);color:var(--content-text-color, #fff)}.hero-fullscreen__heading{font-size:clamp(2.5rem,6vw,var(--heading-size, 4.5rem));font-weight:700;line-height:1.1;margin:0 0 1rem;max-width:900px;text-transform:uppercase;letter-spacing:.02em;color:var(--heading-color, inherit)}.hero-fullscreen__subheading{font-size:clamp(1rem,2vw,var(--subheading-size, 1.25rem));font-weight:400;line-height:1.5;margin:0 0 2rem;max-width:600px;opacity:.9;color:var(--subheading-color, inherit)}.hero-fullscreen__scroll-indicator{position:absolute;bottom:2rem;left:50%;transform:translate(-50%);z-index:5;animation:bounce 2s infinite}.hero-fullscreen__scroll-indicator svg{width:24px;height:24px;fill:#fff;opacity:.7}@keyframes bounce{0%,20%,50%,80%,to{transform:translate(-50%) translateY(0)}40%{transform:translate(-50%) translateY(-10px)}60%{transform:translate(-50%) translateY(-5px)}}
/*# sourceMappingURL=/cdn/shop/t/7/assets/section-hero-fullscreen.css.map */
