.navbar {
  background-color: whitesmoke;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
}
.navbar-nav.account {
  margin-left: auto;
}

/* Navbar brand style*/
.navbar-brand {
  font-size: 18px;
  font-weight: bold;
  margin-right: 20px;
}

.navbar-brand img {
  max-height: 140px;
  border-radius: 100px;
}
/* Navbar brand style end*/
.navbar-toggler {
  background-color: transparent;
  color: black;
  border: none;
}
.buy-btn {
  border: none;
}

.navbar-toggler-icon {
  color: #fff;
  font-size: 24px;
}

.navbar-icons {
  display: inline-block;
  margin-right: 20px;
}

.navbar-icons .fa-user,
.navbar-icons .fa-shopping-cart {
  font-size: 40px;
  margin-right: 5px;
}
.badge {
  color: #009d8f;
}
.nav-link {
  display: flex;
}
.nav-link .fa-shopping-cart,
.nav-link .fa-user-alt {
  font-size: 25px;
}
.navbar-nav .nav-link {
  color: #6b6e79;
  margin: 5px;
  padding: 10px 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: gold;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}
.navbar-nav .nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.navbar-nav .nav-link:hover {
  color: #009d8f;
  background-size: 100% 100%;
  background-position: 0 0;
}

input[type='text'],
input[type='password'],
input[type='email'],
input[type='tel'],
textarea,
select {
  height: 40px;
  border: none;
  padding: 8px 15px;
  vertical-align: middle;
  margin: 10px;
  font-size: 13px;
  color: #666;
}
input[type='button'],
input[type='submit'],
input[type='reset'],
input[type='text'],
input[type='password'],
input[type='email'],
input[type='tel'],
textarea {
  border: none;
}

.info-section {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.container-logo img {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(248, 248, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.info-section h1 {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 6rem; /* Adjust the font size using rem units */
  font-weight: 300;
  line-height: 6.5rem; /* Adjust the line height using rem units */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.info-section h2 {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem; /* Adjust the font size using rem units */
  font-weight: 200;
  margin-bottom: 20px;
  text-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.info-section h1,
.info-section h2 {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.category {
  background-color: #334d5c;
  padding: 10px;
  text-align: center;
}
#category-section {
  position: sticky;
  top: 0;
  z-index: 100;
}
#category-section.fixed {
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.category .container {
  display: flex;
  justify-content: center;
}

.category .category-links {
  display: flex;
  flex-wrap: wrap;
}

.category .category-link {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  padding: 20px 8px;
  text-transform: uppercase;
  font-weight: 100;
  margin: 0 10px;
  font-family: 'Comfortaa', cursive;
}

.category .category-link:hover {
  background-color: #009d8f;
  transition: background-color 0.2s;
}
.product-container {
  background-color: whitesmoke;
}

.product .product-image {
  margin-left: auto;
  margin-right: auto;
}
/* Product title style */
.product-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #009d8f;
  text-transform: uppercase;
  background-color: #f5f5f5;
  margin-bottom: 0;
}

/* Product title style end*/
.product {
  cursor: pointer;
  height: fit-content;
  margin-bottom: 10px;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
  padding: 2%;
}

.product-icons {
  text-align: center;
  margin-top: 10px;
}
.product .product-icons a {
  text-decoration: none;
  color: #333;
  margin: 0 10px;
  font-size: 24px;
}
.product .product-icons a:hover {
  color: #f00;
}
/* Cart icon style */
.cart-icon {
  color: gray;
  font-size: 24px;
  margin-right: 5px;
  margin: 5px;
  padding: 5px;
}
.cart-icon:hover {
  color: #009d8f;
  transition: 0.3s all;
}
/* Heart icon style */
.fa-heart {
  color: gray;
  font-size: 24px;
  margin: 5px;
  padding: 5px;
  border-bottom: 1px solid gainsboro;
}
.fa-heart:hover {
  color: rgb(255, 0, 0);
  transition: 0.3s all;
}

.product-image {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
/* PRODUCT OVERLAY */

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image:hover .product-overlay {
  opacity: 1;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-icons {
  text-align: center;
  margin-top: 10px;
}
/*overlay icon style */
.big-icon {
  font-size: 56px;
  color: #ffffff;
  margin: 10px;
  transition: color 0.3s;
}

.big-icon:hover {
  color: #009d8f;
}
/* PRODUCT OVERLAY end */
/* Product font style */
.product h5 {
  font-size: 19px;
  font-weight: 500;
  margin: 15px 0;
  color: #333;
}
.product h4 {
  font-size: 15px;
  margin-bottom: 15px;
  color: #777;
}
/* Product font style end */

.line-divider {
  border: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #334d5c, transparent);
}

/* Map section style */
.map-section {
  background-color: #f5f5f5;
  padding: 40px 0;
}

.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  align-items: center;
  text-align: center;
}

.text .fas {
  font-size: 24px;
  color: #334d5c;
  margin-bottom: 10px;
}

/* Location icon style */
.location-icon {
  font-size: 80px;
  color: #009d8f;
  margin-right: 10px;
}
.location-text {
  font-size: 18px;
  color: #000;
}
.info-text {
  font-size: 24px;
  color: #000;
}
/* Location icon style end */

/* Map section style end */
/* Footer style */
/* Footer */
footer {
  font-family: 'Montserrat', sans-serif;
  background-color: #001f3f;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

footer a {
  text-decoration: none;
  color: #009d8f;
  transition: text-decoration 0.3s;
}

footer a:hover {
  color: #ffcc00;
  transition: color 0.3s;
  text-decoration: underline;
}

footer .icon {
  font-size: 18px;
  margin-right: 8px;
}

footer .icon:hover {
  color: #ffcc00;
  transition: color 0.3s;
}

footer .widget {
  text-align: left;
  padding: 20px;
  border-left: 2px solid #009d8f;
}

footer h3 {
  font-size: 20px;
  font-weight: 400;
  color: #009d8f;
  text-transform: uppercase;
  margin-top: 10px;
}

footer p {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
  margin-bottom: 10px;
}

footer .widget.about-widget .contact-info {
  list-style: none;
  padding: 0;
}

footer .widget.about-widget .contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

footer .widget.about-widget .contact-info .icon {
  font-size: 20px;
  margin-right: 10px;
  color: #009d8f;
}

/* Footer style end */
/* Style for the container */
.pagination-container {
  margin: 0 auto;
}
/* Style for the pagination bar */
.pagination {
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.pagination .page-link {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-decoration: none;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
  padding: 6px 12px;
  transition: all 0.3s ease;
}

/* Custom styles for pagination */
.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

/* Custom styles for previous and next links */
.pagination .page-link[aria-label='Previous']::before,
.pagination .page-link[aria-label='Next']::before {
  content: attr(aria-label);
  display: inline-block;
  transform: rotate(180deg);
  margin-right: 4px;
}
.single-product input[type='number'] {
  width: 50px;
  height: 40px;
  padding-left: 10px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.single-product input[type='number']:focus {
  outline: none;
  border-color: #009d8f;
  box-shadow: 0 0 5px rgba(0, 157, 143, 0.5);
}

.single-product .buy-btn {
  background-color: #009d8f;
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.container .single-product h6,
h4,
h3 {
  padding-bottom: 10px;
  font-family: 'Roboto', sans-serif;
}
.single-product .buy-btn:hover {
  background-color: #007e72;
}
.opis {
  clear: both;
  line-height: 24px;
  font-size: 16px;
  color: #888;
  font-family: 'Comfortaa';
}

/* Cart style */

.cart table {
  width: 100%;
  border-collapse: collapse;
}
.cart .product-info {
  display: flex;
  flex: wrap;
}
.cart th {
  text-align: left;
  padding: 5px 10px;
  color: white;
  background-color: #001f3f;
}
.cart td img {
  max-width: 120px;
  height: auto;
  margin-right: 10px;
}
.cart td input {
  width: 40px;
  height: 30px;
  padding: 5px;
}
.cart td a {
  color: #001f3f;
}
.cart .remove-btn {
  color: #001f3f;
  text-decoration: none;
  border: none;
  font-size: 13px;
  background-color: none;
  width: 75px;
}
.cart .edit-btn {
  color: #001f3f;
  text-decoration: none;
  border: none;
  font-size: 13px;
  background: none;
  width: 75px;
}
.cart-total {
  display: flex;
  justify-content: flex-end;
}
.cart-total table {
  width: 100%;
  max-width: 500px;
  border-top: 3px solid #001f3f;
}
td:last-child {
  text-align: right;
}
th:last-child {
  text-align: right;
}
.checkout-btn {
  display: flex;
  justify-content: flex-end;
  background-color: #001f3f;
  border-radius: 0;
  font-weight: 500;
  color: white;
}
.checkout-btn:hover {
  background-color: gray;
}
.checkout-container {
  display: flex;
  justify-content: flex-end;
}
/* Cart style end*/
/* Prijava style */
#login-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
}

#login-form h2 {
  text-align: center;
  color: #001f3f;
  margin-bottom: 20px;
}

#login-form input[type='text'],
#login-form input[type='password'] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 0;
}

#login-btn {
  background-color: #001f3f;
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  margin: 0 auto;
  border-radius: 0;
}

#login-btn:hover {
  background-color: #000;
}

#register-url {
  color: #001f3f;
  text-align: center;
  text-decoration: none;
  display: block;
  margin-top: 10px;
}

#register-url:hover {
  text-decoration: underline;
}
/* Prijava style end */
/* Registracija style */
#register-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
}

#register-form h2 {
  text-align: center;
  color: #001f3f;
  margin-bottom: 20px;
}

#register-form input[type='text'],
#register-form input[type='password'] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 0;
}

#register-btn {
  background-color: #001f3f;
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  margin: 0 auto;
  border-radius: 0;
}

#register-btn:hover {
  background-color: #000;
}

#login-url {
  color: #001f3f;
  text-align: center;
  text-decoration: none;
  display: block;
  margin-top: 10px;
}

#login-url:hover {
  text-decoration: underline;
}
/* Registracija style end*/
/* Account style */
#account-form {
  width: 50%;
  margin: 35px auto;
  text-align: center;
  padding: 20px;
}
#account-form input {
  margin: 5px auto;
}
#account-form #change-pass-btn {
  color: white;
  background-color: #001f3f;
}
#account-form #logout-btn {
  color: #001f3f;
  text-decoration: none;
}
.account-info #orders-btn {
  color: #001f3f;
  text-decoration: none;
}

/* Account style end*/
/* Orders style*/

.orders table {
  width: 100%;
  border-collapse: collapse;
}
.orders .product-info {
  display: flex;
  flex-wrap: wrap;
}
.orders th {
  text-align: left;
  padding: 5px 10px;
  background-color: #001f3f;
  color: white;
}
.orders :nth-child(2) {
  text-align: right;
}
.orders td {
  padding: 10px 20px;
}
.orders td img {
  width: 120px;
  height: auto;
  margin-right: 10px;
}

/* Orders style end*/
