body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #101624;
    margin: 0;
    overflow-x: hidden;
}

.logo {
    background: #101624;
    position: relative;
    z-index: 1;
}

.logo img {
    width: 30%;
    height: 200px;
    object-fit: cover;
    object-position: 50% 55%;
    display: block;
    margin: 0 auto;
}

header {
    background-color: #101624;
    border-radius: 0px 0px 20px 20px;
    border: 5px solid #E08335;
    box-shadow: 0px 12px 30px #d66101;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
}

.parts {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.sep1, .sep2 {
    height: 40px;
    width: 0px;
    border: 2px solid #E08335;
    border-radius: 20px;
}

a {
    text-decoration: none;
    color: #E08335;
}

.a1, .a2, .a3 {
    font-size: 30px;
    transition: transform 0.3s ease;
}

.a1:hover, .a2:hover, .a3:hover {
    transform: scale(1.2);
    text-shadow: 0 0 5px #6e3200;
}

#langSwitch {
    padding: 10px 15px;
    border: 2px solid #E08335;
    background-color: #E08335;
    border-radius: 8px;
    color: #101624;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#langSwitch:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px #d66101;
}

.tab {
  overflow: hidden;
  border: 1px solid #d66101;
  background: #101624;
  border-radius: 8px 8px 0 0;
  box-shadow: 0px 4px 15px #d66101;
  display: flex;
}

.tablinks {
  background-color: inherit;
  color: #E08335;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 20px;
  transition: transform 0.3s ease;
  font-size: 16px;
  font-weight: bold;
  flex: 1;
}

.tablinks:hover {
    transform: scale(1.2);
    box-shadow: 0 0 5px #d66101;
}

.tablinks.active {
  background-color: #d66101;
  color: #101624;
  box-shadow: 0px 0px 10px #d66101;
}

.tabcontent {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: hidden;
    gap: 20px;
    padding: 20px;
    justify-content: center;
    border-top: none;
    background: #101624;
    color: #101624;
    border-radius: 0 0 8px 8px;
}

.tabm {
    flex: 0 1 350px;
    min-width: 280px;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid #E08335;
    border-radius: 20px; 
    box-shadow: 0px 0px 10px #d66101;
    text-align: center;
    max-width: 400px;
}

.name { color: #d66101; margin-bottom: 10px; }
.rep { color: #E08335; font-weight: normal; font-size: 1rem; }
.price { color: #E08335; margin-top: 15px; font-weight: bold; }
.gram { color: #d66101; margin: 5px; }

.main {
    background: #101624;
    color: #d66101;
    padding: 40px 5%;
    border-radius: 20px 20px 0 0;
    box-shadow: 0px -15px 30px #d66101;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.logo2 {
    width: 250px;
    height: auto;
    object-fit: contain;
}

.footer-section {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

h2 { font-size: 30px; margin-bottom: 15px; }

.infoa, .infoc {
    font-size: 18px;
    color: #E08335;
    line-height: 1.5;
}

.icons {
    display: flex;
    gap: 15px;
}

.icons img {
    width: 50px;
    height: 50px;
}

@media (max-width: 768px) {
    .logo img {
        width: 80%;
        height: 120px;
    }

    header {
        padding: 15px 10px;
        border-width: 3px;
    }

    .parts {
        flex-direction: column;
        gap: 15px;
    }

    .sep1, .sep2 {
        display: none;
    }

    .a1, .a2, .a3 {
        font-size: 22px;
    }

    #langSwitch {
        font-size: 16px;
        padding: 8px 12px;
    }

    .tab {
        flex-wrap: wrap;
    }

    .tablinks {
        font-size: 14px;
        padding: 10px;
        flex: 1 1 45%;
    }

    .tabcontent {
        padding: 10px;
        gap: 15px;
    }

    .tabm {
        min-width: 100%;
        max-width: 100%;
    }

    .main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .footer-section {
        align-items: center;
        margin-bottom: 20px;
    }

    .logo2 {
        width: 180px;
    }

    h2 {
        font-size: 24px;
    }

    .infoa, .infoc {
        font-size: 16px;
    }
}