:root {
    --error: #dc3545;
    --success: #198754;
    --primary: #D4213D;
    --secondary: #f12645;
    --border-color: #f12645;
    --button-text: #fff;
    --button-focus: #f12645;
    --link-color: #0167ff;
    --text-main: #363636;
    --text-bright: #000;
    --background-body: #fff;
    --main-bg: #fff;
    --input-text-color: #000;
    --input-placeholder-color: #c2c2c2;
    --input-border-color: #ccc;
    --input-background-color: #fff;
    --input-disabled: #f5f5f5;
    --input-focus: 0 0 0 3px rgb(121, 82, 179, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    min-height: 100vh;
    height: auto;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    background-color: #fff;
    color: #333;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px 0px 0px 0px;
}

.content {
    background: white;
    padding: 20px 40px;
    width: 70%;
    box-sizing: border-box;
    flex-shrink: 1;
}

a {
    text-decoration: none;
    font-weight: normal;
    font-weight: 400; 
    color: green; 
}

a:hover {
    color: red; 
}

a:visited {
    color: purple; 
}

.cc {
    font-size: 8px;
    line-height: 1;
    color: #999999;
    text-align: right;
    margin: 0;
    margin: 0px 5px;
}

ul {
    padding: 15px 20px;
    list-style: none;
    padding-inline-start: 0;
}

li {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #444;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    direction: ltr;
    color: #444;
    padding: 15px 0px;
    text-align: left;
}


h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: #222;
    margin-bottom: 25px;
     text-align: center;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #222;
    margin-bottom: 20px;

}

h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #222;
    padding: 20px 0px;
}

h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: black;
    margin: 20px 0px;
}

h5 {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: black;

}

h6 {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: black;

}

.header {
    position: sticky;
    width: 100%;
    height: 50px;
    background-color: #f9f9f9;
    display: flex;
    top: 0;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    z-index: 3;
}

.logo {
    color: #f9f9f9;
}
.logo img {
    width: auto;
    height: 55px;
    padding: 10px 10px;
}

.sidebar {
    width: 30%;
    min-width: 130px;

    padding: 20px 10px 10px 5px;
    background-color: #fff;
    border-radius: 8px;
    position: sticky;
    top: 70px;        
    box-sizing: border-box;
    overflow-y: auto;
    flex-shrink: 0;
    height: calc(100vh - 70px);
}

.promo-container {
    display: flex;
    flex-direction: column;
}

.promo-container2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: space-between; 
}

.promo-container2 > div {
    flex: 1 1 200px; 
    box-sizing: border-box; 
}

.promo-box {
    background-color: #fff;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 1px 4px rgba(0,0,0,0.1);
}
.promo-box2 {
    width: 50%;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 1px 4px rgba(0,0,0,0.1);
}

.promo-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 5px;
}

.promo-box2 img {
    width: 100%;
    height: auto;
    display: block;
     object-fit: cover;
    border-radius: 8px;
    text-align: center;
    border-radius: 5px;
}

.promo-box p {
    font-size: 14px;
    color: #555;
    text-align: center;
}

.promo-box2 p {
    font-size: 0.8em;
    color: #555;
    text-align: center;
}

.image-container {
    background-color: #f9f9f9;
    padding: 5px;
    text-align: center;
    border-radius: 10px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #D4213D;
    color: white;
}

ol {
    padding-left: 20px;
}

.footer {
    text-align: center;
    padding: 25px;
    color: #777;
    font-size: 0.9em;
   width: 100%;
   position: relative;
   bottom: 0;
   left: 0;
   box-sizing: border-box;
}

.footer p {
    text-align: center;
    padding: 25px;
    color: #777;
    font-size: 12px;
   width: 100%;
   position: relative;
   bottom: 0;
   left: 0;
   box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-links {
    display: flex;
   flex-wrap: wrap;
}

.footer-links a {
    color: #777;
    margin: 0 5px;
    text-decoration: none;
    font-size: 0.8em; 
}

.product-image {
    position: relative;
    width: 100%;
    overflow: hidden; 
    border-radius: 8px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9; 
}

.product-image img {
    max-width: 100%; 
    height: auto; 
    display: block;
    object-fit: cover; 
}

.product-feature {
    display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1400px));
    gap: 0px;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    background-color: var(--main-bg);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.ingredients-list {
    list-style: disc;
    padding-left: 2rem;
}

.ingredients-list li {
    margin-bottom: 0.5rem;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 0 0 8px 8px;
}

.product-image:hover .image-overlay {
    opacity: 1;
}

.promo-box img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 5px;
}

.disclaimer {
 text-align: left;
    padding: 10px 20px;
    color: #777;
    font-size: 12px;
   width: 100%;
   position: relative;
   bottom: 0;
   left: 0;
   box-sizing: border-box;
}





/* -------Navigation---------- */

.nav {
    width: 100%;
    position: fixed;
    background-color: #f9f9f9;
    overflow: hidden;
    top: 50px;
    display: none;
    transition: max-height .5s ease-out;
}
.menu a {
    display: block;
    padding: 15px 10px;
    color: #36383F;
    font-weight: 400;
    text-align: center;
}
.menu a:hover {
    background-color: #eeeeee;
}
.hamb {
    cursor: pointer;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 50px;
    margin-right: 0px;
}
.hamb-line {
    background: #36383F;
    height: 2px;
    width: 24px;
    position: relative;
}
.hamb:active {
    background-color: #f9f9f9;
}
.hamb-line::before,
.hamb-line::after {
    background: #363F;
    content: '';
    height: 2px;
    width: 100%;
    position: absolute;
    transition: all .2s ease-out;
}
.hamb-line::before {
    top: 6px;
}
.hamb-line::after {
    top: 6px;
}
.side-menu {
    display: none;
}
.side-menu:checked ~ .nav {
    max-height: 100vh;
    display: block;
}
.side-menu:checked ~ .hamb {
    background-color: #f9f9f9;
}
.side-menu:checked ~ .hamb .hamb-line {
    background-color: #f9f9f9;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top: 0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top: 0;
}

/* -------Screens bigger than---------- */
@media (min-width: 700px) {

    .nav {
        max-height: none;
        position: relative;
        background-color: transparent;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .menu {
        display: flex;
        justify-content: flex-end;
        margin-right: 10px;
    }
    .menu li {
        margin: 0px;
    }
    .menu a {
        padding: 15px 10px;
    }
    .hamb {
        display: none;
        margin-right: 0px;
    }
}

/* Screens smaller than */
@media (max-width: 700px) {

.content {
    background: white;
    padding: 10px 20px;
    width: 70%;
    box-sizing: border-box;
    flex-shrink: 1;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    direction: ltr;
    color: #444;
    padding: 15px 0px;
    text-align: left;
}

li {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    color: #444;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #222;
    margin-bottom: 10px;
     text-align: center;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #222;
    margin-bottom: 20px;
}

h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #222;
}

h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: black;
    margin: 20px 0px;
}

h5 {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: black;
}

h6 {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: black;
}

.promo-box p {
    font-size: 10px;
    color: #555;
    text-align: center;
}

}