:root {
    --primary: #FF2400;
    --backgroundDark: #202225;
    --backgroundLight: #25282B;
    --backgroundLighter: #35383D;
    --text: #98A2B0;
    --textWhite: #FFFFFA;
    --success: #1AB70C;
    --warning: #F0E700;
    --error: #FF2400;
}
html {
    scroll-behavior: smooth;
}  
/* Set basic styles for the entire website */
body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text);
    background-color: var(--backgroundDark);
    padding: 0;
    margin: 0;
}  
/* Set basic styles for page headings */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;

}
h1 {font-size: 3.8rem;}
h2 {font-size: 3.06rem;}
h3 {font-size: 2.46rem;}
h4 {font-size: 1.93rem;}
h5 {font-size: 1.53rem;}
/* Set basic styles for links */
a {text-decoration: none;}
a:hover {
text-decoration: underline;
}
video {
    object-fit: fill;
    width: 100%;
}
/* Set basic styles for buttons */
button, input[type="submit"] {
    display: inline-block;
    border: none;
    background-color: #007bff;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
}
Button:hover, input[type="submit"]:hover {
    background-color: #0056b3;
}  
/* Set basic styles for images */
img {
    max-width: 100%;
    height: auto;
} 
/* Set basic styles for main content container */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}  
/* Set basic styles for footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #333;
    color: #fff;
} 
.container {
    display: flex;
    max-width: 1232px;
    align-items: center;
    margin: 0 auto;
    padding: 6rem 0;
}
/* Grid */
.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.vertical-center {align-items: center;}
.text-white {color: var(--textWhite);}
/* Set up basic styles for the header and nav */
header {
    padding: 25px 0;
}
.container-header {
    max-width: 1232px;
    display: flex;
    align-items: center;
    margin: 0 auto;
}
.logo {
    margin-right: auto;
}
nav ul {
    list-style: none;
    display: f;
    margin: 0;
    padding: 0;
    display: flex;
}
nav li {
    margin-right: 20px;
}
nav a {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.2s ease-in-out;
}
/* Set up styles for hover effect */
nav a:hover {
    border-bottom-color: var(--primary);
    text-decoration: none;
}
/* Set up styles for responsive toggle button */
.toggle-button {
    display: none;
    cursor: pointer;
    padding: 10px;
}
.toggle-button span {
    display: block;
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin-bottom: 5px;
    transition: transform 0.2s ease-in-out;
}
.toggle-button.active span:nth-child(2) {
    opacity: 0;
}
.toggle-button.active span:first-child {
    transform: rotate(45deg);
}
.toggle-button.active span:last-child {
    transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
    .logo {
        margin: 0;
    }
    nav {
        display: none;
    }
    .toggle-button {
        display: block;
        position: absolute;
        right: 0;
    }
    nav.active {
        display: block;
        width: 100%;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: var(--backgroundLighter);
        z-index: 99;
    }
    nav.active ul {
        display: flex;
        flex-direction: column;
    }
    nav.active li {
        margin: 10px 0;
        padding: 8px;
        text-align: center;
    }
}
/* Button */
.action {display: flex;}
a.btn {
    text-decoration: none;
    position: relative;
    padding: 16px;
    border-radius: 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--textWhite);
    background-color: var(--primary);
}
a.btn:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 30px;
    width: 30px;
    border-left: 4px solid var(--primary);
    border-top: 4px solid var(--primary);
    content: "";
    z-index: 1;
    -webkit-transition: all, 0.7s;
    -o-transition: all, 0.7s;
    transition: all, 0.7s;
}
a.btn:after {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 30px;
    width: 30px;
    border-right: 4px solid var(--primary);
    border-bottom: 4px solid var(--primary);
    content: "";
    z-index: 1;
    -webkit-transition: all, 0.7s;
    -o-transition: all, 0.7s;
    transition: all, 0.7s;
}
a.btn:hover:before {
    height: 100%;
    width: 100%;
}
a.btn:hover:after {
    height: 100%;
    width: 100%;
}
a.btn:hover,
a.btn:active {
    background-color: transparent;
    text-decoration: none;
}
a.btn.btn-primary {
    font-size: 1.2rem;
}
a.btn.btn-secondary {
    font-size: 	1rem;
}
a.btn.btn-small {
    font-size: 	0.9rem;
}
.overline {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 120%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
    padding: 0;
    margin: 0;
}
/* Hero */
.hero {
    background-image:  url("/media/hero_img_bg.svg");
    background-position: top right;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 94px;
    margin-top: -90px;
}
.hero-img {
    animation: updown 2s ease-in-out infinite;
}
@keyframes updown {
    0%, 100% {
      transform: translateY(0);
    }
    25% {
      transform: translateY(-8px);
    }
    75% {
      transform: translateY(8px);
    }
}
.hero-text h1 {
    line-height: 120%;
    font-weight: 700;
}
.blurb {
    padding: 20px;
    background-color: var(--backgroundLight);
    margin-bottom: 16px;
}
.blurb .blurb-icon {
    display: inline-block;
    padding: 24px 28px;
    background-color: var(--backgroundLighter);
    margin-bottom: 8px;
}
.products {
    background-color: var(--backgroundLight);
}
.product-container {
    flex-direction: column;
    text-align: left;
    align-items: left;
}
.product-title {
    width: 100%;
    margin-bottom: 24px;
}
.product-card {
    padding: 16px;
    background-color: var(--backgroundLighter);
}
.product-card .product-img {
    padding: 5px;
}
.product-card .product-action .price .old-price {
    margin: 0;
    text-decoration: line-through;
}
.product-card .product-action .price .new-price {
    margin: 0;
    font-size: 1.6rem;
    color: var(--primary);
    font-family: 'Oswald', sans-serif;
}
.product-card .product-action .product-btn a {
    margin-left: auto;
}

/* Gallery */
.gallery ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.gallery ul li {
    height: 300px;
    overflow: hidden;
}
.gallery ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery ul li.big {
    grid-row: span 2;
}
.gallery ul li.small {
    grid-row: 2;
}
.gallery ul li.big:nth-child(1) {
    grid-column: 1 / span 2;
}
.gallery ul li.big:nth-child(6) {
    grid-column: 3 / span 2;
}
.gallery ul li.big:nth-child(2) {
    grid-column: 3;
}
footer {
    background-color: var(--backgroundLighter);
    margin-top: 7%;
    padding: 0;
}
footer .footer-container {
    padding: 0rem;
    text-align: center;
    align-items: center;
    flex-direction: column;
}
.footer-container .footer-logo {
    position: relative;
}
.footer-container .footer-logo img {
    margin-top: -40px;
}
.footer-container .footer-nav {
    padding: 2rem 0;
}
.footer-container .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
}
.footer-container .footer-nav ul li a {
    color: var(--text);
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}
/* Styles for tablet */
@media (max-width: 768px) {
    /* ... your tablet styles here ... */
    .container {padding: 4rem 2rem;}
    .two-column {grid-template-columns: repeat(1, 1fr);}
    .three-column {grid-template-columns: repeat(1, 1fr);}
    h1 {font-size: 2.8rem;}
    h2 {font-size: 2.06rem;}
    h3 {font-size: 1.46rem;}
    h4 {font-size: 1.43rem;}
    h5 {font-size: 1.3rem;}
}

/* Styles for mobile */
@media (max-width: 576px) {
/* ... your mobile styles here ... */
    .container {padding: 2rem 1rem;}
    .two-column {grid-template-columns: repeat(1, 1fr);}
    .three-column {grid-template-columns: repeat(1, 1fr);}
    h1 {font-size: 2rem;}
    h2 {font-size: 1.65rem;}
    h3 {font-size: 1.45rem;}
    h4 {font-size: 1.25rem;}
    h5 {font-size: 1.15rem;}
    .product-card .product-action {grid-template-columns: repeat(2, 1fr);}
    header {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .overline {
        font-size: 0.8rem;
    }
}
