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

.navbar-logo {
    width: 70px !important;
}

.navbar-basket {
    border: none;
    background-color: transparent;
    border-radius: 5px;
}

.navbar img {
    width: 30px;
    margin-top: 5px;
}

.navbar-list {
    width: 100%;
    justify-content: space-around;
}

.navbar-buttons {
    width: 140px !important;
}

.carousel-own {
    width: 100%;
    height: 800px;
    margin: auto;
}

.website-width {
    width: 1240px;
    margin: auto;
}

.carousel-own img {
    width: 100%;
    height: 100%;
}

.section-padding {
    padding-bottom: 100px;
}

.carousel-own h1 {
    font-weight: bold;
    font-size: 40px;
    padding: 30px;
    background-color: white;
    position: absolute;
    color: black;
    left: 50%;
    top: 30%;
    transform: translate(-50%,-50%);
}

.accordion-button {
    height: 120px !important;
    font-size: 40px !important;
    background: gray !important;
    color: white !important;
}

/* ACCORDION CARD */
.accordion-card {
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
    border-bottom: 2px solid black;
}

.accordion-card-image {
    padding-right: 10px;
    border-right: 1px solid black;
}

.accordion-card-image img{
    width: 140px;
}

.accordion-card-text {
    width: 80%;
    padding: 5px;
    border-right: 1px solid black;
}

.accordion-card-price {
    display: flex;
}

.title {
    padding: 40px 0;
    font-size: 45px;
    text-align: center;
}

.description {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    padding: 40px 0;
    width: 800px;
    margin: auto;
}


/* REGISTER FORM */
.registration {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
    width: 1250px;
    margin: auto;
    height: 1000px;
    padding: 50px;
    margin-bottom: 150px;
}

.registration h3,
.registration h4 {
    text-align: center;
    margin-bottom: 15px;
}

.registration label {
    font-weight: bold;
}

.registration input {
    text-indent: 10px;
    padding: 5px;
    font-weight: bold;
}

#personalAdress {
    margin-bottom: 20px;
}

.registration form {
    display: grid;
    background-color: rgb(230, 230, 230);
    padding: 50px;
}

.registration form button {
    width: 240px;
    height: 45px;
    margin: auto;
    border: none;
    border-radius: 10px;
    background: green;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s; /* Add transition */
}

.registration select {
    word-wrap: normal;
    width: 40%;
    padding: 8px;
}

.registration form button:hover {
    color: green;
    background: white;
}

.country-city {
    margin-bottom: 10px;
}

.registration form input,
.login form input {
    font-weight: bold;
    padding: 5px;
    text-indent: 10px;
    margin: 10px 0;
    border-radius: 10px;
    border: none;
}

.registration-rules {
    padding: 50px 0 0 0;
}

.registration-rulse ul li {
    margin-bottom: 20px;
}

.grocery {
    display: flex;
    width: 1250px;
    margin: auto;
}

.grocery-wr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 10px;
}

/* .card {
    padding: 5px;
    border-radius: 5px;
    width: 150px;
    height: fit-content;
}

.card-image {
    width: 100%;
    margin-bottom: 10px;
}

.card-image img {
    width: 100%;
}

.card-price {
    color: green;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 10px;
}
 */

.login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 60px;
    margin: 140px 0 200px 0;
    background: rgb(207, 207, 207);
}

.login form button {
    width: 100%;
    height: 45px;
    margin: auto;
    border: none;
    border-radius: 10px;
    background: green;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.login form button:hover {
    color: green;
    background: white;
}

.login form {
        display: flex;
    justify-content: center;
    align-items: center;
    display: grid;
}

 .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: auto;
    text-align: center;
    font-family: arial;
  }
  
  .price {
    color: green;
    font-size: 22px;
    font-weight: bold;
  }
  
  .card button {
    border: none;
    outline: 0;
    padding: 12px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
  }
  
  .card button:hover {
    opacity: 0.7;
  }