Apologies, but no results were found. Perhaps searching will help find a related post.
:root { --black: #000000; --white: #ffffff; --light-gray: #f5f5f5; --medium-gray: #e5e5e5; --dark-gray: #333333; --text-color: #222222; --text-light: #777777; --border-color: #dddddd; } /* Font faces */ @font-face { font-family: 'HelveticaNow'; src: url('fonts/HelveticaNowText-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; } @font-face { font-family: 'HelveticaNow'; src: url('fonts/HelveticaNowText-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; } /* Typography scale */ html { font-size: 62.5%; /* 1rem = 10px */ } body { font-family: 'HelveticaNow', 'Helvetica Neue', Arial, sans-serif; font-size: 1.6rem; line-height: 1.6; color: var(--text-color); font-weight: 400; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } h1, .h1 { font-size: 4.8rem; line-height: 1.1; font-weight: 500; letter-spacing: -0.5px; text-transform: uppercase; } h2, .h2 { font-size: 3.6rem; line-height: 1.2; font-weight: 500; letter-spacing: -0.25px; text-transform: uppercase; } h3, .h3 { font-size: 2.4rem; line-height: 1.3; font-weight: 500; text-transform: uppercase; } p { margin: 0 0 2.4rem; font-size: 1.6rem; } .text-uppercase { text-transform: uppercase; } .text-center { text-align: center; } .text-small { font-size: 1.4rem; } .container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 20px; } .grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 30px; } .col-1 { grid-column: span 1; } .col-2 { grid-column: span 2; } .col-3 { grid-column: span 3; } /* ... up to col-12 */ .flex { display: flex; } .flex-center { display: flex; align-items: center; justify-content: center; } .space-between { justify-content: space-between; } .section-padding { padding: 80px 0; } @media (max-width: 1024px) { .grid { gap: 20px; } .section-padding { padding: 60px 0; } } @media (max-width: 768px) { .grid { grid-template-columns: repeat(4, 1fr); gap: 15px; } .section-padding { padding: 40px 0; } } .header { position: fixed; top: 0; left: 0; width: 100%; background-color: var(--white); z-index: 1000; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); padding: 15px 0; transition: all 0.3s ease; } .header.scrolled { padding: 10px 0; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } .header-container { display: flex; align-items: center; justify-content: space-between; } .logo { width: 180px; } .logo img { width: 100%; height: auto; } .nav-menu { display: flex; list-style: none; margin: 0; padding: 0; } .nav-item { margin: 0 15px; position: relative; } .nav-link { font-size: 1.4rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--black); text-decoration: none; padding: 5px 0; position: relative; } .nav-link:after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background-color: var(--black); transition: width 0.3s ease; } .nav-link:hover:after { width: 100%; } .header-icons { display: flex; align-items: center; } .cart-icon, .search-icon, .account-icon { margin-left: 20px; cursor: pointer; } .cart-count { position: absolute; top: -8px; right: -8px; background-color: var(--black); color: var(--white); width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 500; }
Apologies, but no results were found. Perhaps searching will help find a related post.