@import url('/gissah_website_design/static/src/css/pages/hero.css');
@import url('/gissah_website_design/static/src/css/pages/sections.css');

/* /gissah_website_design/static/src/css/pages/homepage.css */
   body.homepage nav.navbar{background-color: transparent !important; position: absolute !important; top: 0; left: 0; right: 0; z-index: 1000;}body.homepage nav.navbar .navbar-nav .nav-link{color: white !important;}body.homepage nav.navbar .navbar-brand{color: white !important;}body.homepage nav.navbar .btn i{color: white !important;}body.homepage nav.navbar img, body.homepage nav.navbar svg{filter: brightness(0) invert(1) !important;}body.homepage nav.navbar.o_colored_level{background: transparent !important;}body.homepage #wrapwrap{padding-top: 0 !important;}body.homepage nav.navbar.scrolled{background-color: rgba(255, 255, 255, 0.95) !important; backdrop-filter: blur(0.625rem); box-shadow: 0 2px 0.625rem rgba(0, 0, 0, 0.1);}body.homepage nav.navbar.scrolled .navbar-nav .nav-link{color: inherit !important;}body.homepage nav.navbar.scrolled .btn i{color: inherit !important;}body.homepage nav.navbar.scrolled img, body.homepage nav.navbar.scrolled svg{filter: none !important;}

/* /gissah_website_design/static/src/css/components/category-highlight.css */
 .fragrance-description{text-align: center; margin-bottom: 3.75rem;}.fragrance-text{font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--dark); line-height: 1.6; margin: 0; letter-spacing: 0.02em;}.fragrance-text em{font-style: italic; font-weight: 500;}.category-highlight-section{position: relative; width: 100%; height: 75vh; min-height: 37.5rem; overflow: hidden; display: block; visibility: visible;}.category-highlight-content{position: relative; width: 100%; height: 100%; display: block;}.highlight-background{position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; display: block;}.highlight-bg-image{width: 100%; height: 100%; object-fit: cover; object-position: center;}.highlight-overlay{position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); display: flex !important; align-items: center; justify-content: center; z-index: 2;}.highlight-text-content{text-align: center; color: white; max-width: 37.5rem; padding: 0 1.25rem;}.highlight-subtitle{font-family: var(--font-primary); font-size: var(--font-md); font-weight: 400; color: white; letter-spacing: 0.05em;}.highlight-tagline{font-family: 'Kelvinch', serif; font-size: var(--font-4xl); font-weight: 400; color: white; line-height: 1.1em; margin: 0.5rem 0 1rem 0;}.category-highlight-section .discover-text{font-family: var(--font-primary); font-size: var(--font-md); font-weight: 500; color: white; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; position: relative; display: inline-block; transition: var(--transition-normal);}.category-highlight-section .discover-text::after{content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 1px; background: white; transition: height var(--transition-normal);}.category-highlight-section .discover-text:hover{transform: translateY(-2px);}.category-highlight-section .discover-text:hover::after{height: 3px;}@media (max-width: 991px){section.category-highlight-section{display: block !important; visibility: visible !important; opacity: 1 !important; height: 70vh !important; min-height: 31.25rem !important; overflow: visible !important;}.category-highlight-section .category-highlight-content{display: block !important; visibility: visible !important; height: 100% !important;}.category-highlight-section .highlight-background{display: block !important; visibility: visible !important; height: 100% !important;}.category-highlight-section .highlight-overlay{display: flex !important; visibility: visible !important; height: 100% !important;}}@media (max-width: 768px){section.category-highlight-section{display: block !important; visibility: visible !important; opacity: 1 !important; height: 70vh !important; min-height: 31.25rem !important;}}@media (max-width: 480px){section.category-highlight-section{display: block !important; visibility: visible !important; opacity: 1 !important; height: 60vh !important; min-height: 25rem !important;}}

/* /gissah_website_design/static/src/css/components/pre-home-animation.css */
 :root{--ring-duration: 1.6s; --logo-duration: 0.8s; --logo-delay: 1.6s; --closing-duration: 1.4s; --prehome-scale: 1;}.pre-home-overlay{position: fixed; inset: 0; width: 100vw; height: 100vh; background: #000; display: flex; align-items: center; justify-content: center; overflow: hidden; z-index: var(--z-overlay); opacity: 1; transition: opacity var(--closing-duration) ease-in-out;}.pre-home-overlay.is-closing{opacity: 0;}.pre-home-overlay.is-hidden{opacity: 0; visibility: hidden; pointer-events: none;}.pre-home-container{position: relative; width: clamp( calc(110px * var(--prehome-scale)), calc(18vw * var(--prehome-scale)), calc(220px * var(--prehome-scale)) ); aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;}.pre-home-ring, .pre-home-logo{height: auto; opacity: 0; transform-origin: center; will-change: transform, opacity;}.pre-home-ring{width: 100%;}.pre-home-logo{position: absolute; width: clamp( calc(82px * var(--prehome-scale)), calc(35% * var(--prehome-scale)), calc(164px * var(--prehome-scale)) );}.pre-home-overlay.is-opening .pre-home-ring{animation: prehome-ring-open var(--ring-duration) ease-out forwards;}.pre-home-overlay.is-opening .pre-home-logo{animation: prehome-logo-open var(--logo-duration) var(--logo-delay) ease-out forwards;}.pre-home-overlay.is-closing .pre-home-ring{animation: prehome-ring-close var(--closing-duration) ease-in forwards;}.pre-home-overlay.is-closing .pre-home-logo{animation: prehome-logo-close var(--closing-duration) ease-in forwards;}@keyframes prehome-ring-open{0%{transform: scale(0.2) rotate(180deg); opacity: 0;}50%{opacity: 1;}100%{transform: scale(1) rotate(360deg); opacity: 1;}}@keyframes prehome-ring-close{0%{transform: scale(1) rotate(360deg); opacity: 1;}100%{transform: scale(0.05) rotate(180deg); opacity: 0;}}@keyframes prehome-logo-open{0%{transform: scale(0.1); opacity: 0;}100%{transform: scale(1); opacity: 1;}}@keyframes prehome-logo-close{0%{transform: scale(1); opacity: 1;}100%{transform: scale(0); opacity: 0;}}@media (max-width: 768px){.pre-home-container{width: clamp( calc(200px * var(--prehome-scale)), calc(35vw * var(--prehome-scale)), calc(350px * var(--prehome-scale)) );}.pre-home-logo{width: clamp( calc(82px * var(--prehome-scale)), calc(23% * var(--prehome-scale)), calc(164px * var(--prehome-scale)) );}}@media (prefers-reduced-motion: reduce){.pre-home-overlay, .pre-home-overlay::before, .pre-home-overlay::after, .pre-home-ring, .pre-home-logo{animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important;}.pre-home-ring, .pre-home-logo{opacity: 1 !important; transform: none !important;}}