@import url(//fonts.googleapis.com/css?family=Ubuntu:300,400,500);

body {
    font-family: "Ubuntu", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

i.fa {
    margin-right: 5px;
}

header {
    background-color: #ac81484d;
}

#about {
    font-size: 1.2rem;
}

@media only screen and (max-width: 600px) {
    .features-img {
        width: 300px;
    }
}

@media only screen and (max-width: 450px) {
    .features-img {
        width: 200px;
    }
}
@media screen and (max-width: 768px) {
[data-aos-delay] {
    transition-delay: 0 !important;
}
}
#hero img {
    max-width: 100% !important;
    max-height: 100% !important;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.4s ease-in-out;
    z-index: 1000;
    padding: 20px 0;
    background: #f8f9fa;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.animate-logo {
    animation: fadeInDown 0.5s ease-in-out;
}

#header .logo a {
    color: #2d4f6c;
    text-decoration: none;
    transition: color 0.3s ease;
}

#header .logo a:hover {
    color: #4a90e2;
}

#header .logo i {
    margin-right: 8px;
    color: #4a90e2;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

.nav-list {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2d4f6c;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2d4f6c;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    min-width: 200px;
    padding: 10px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #2d4f6c;
    font-size: 14px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background: #2d4f6c;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-line::before,
.hamburger-line::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: #2d4f6c;
    transition: all 0.3s ease;
}

.hamburger-line::before {
    top: -8px;
}

.hamburger-line::after {
    bottom: -8px;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-mobile .nav-list {
        display: flex;
    }

    .navbar-mobile .hamburger-line {
        background: transparent;
    }

    .navbar-mobile .hamburger-line::before {
        transform: rotate(45deg);
        top: 0;
    }

    .navbar-mobile .hamburger-line::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin: 10px 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    background: url('/img/image-background.png') top center;
    background-size: cover;
    transition: all 0.5s ease;
}

#hero:before {
    content: '';
    background: linear-gradient(135deg, rgba(255, 82, 99, 0.9), rgba(255, 82, 99, 0.7));
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 30px 30px;
}

#hero .container {
    padding-top: 120px;
    z-index: 1;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    font-size: 24px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
}

#hero .btn-get-started {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    padding: 20px 45px;
    border-radius: 50px;
    transition: all 0.4s ease;
    margin-top: 40px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#hero .btn-get-started:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.arrow-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-get-started:hover .arrow-icon {
    transform: translateX(5px);
}

.animate-text {
    animation: slideUp 1s ease-out;
}

.animate-fade {
    animation: fadeIn 1.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px) {
    #hero {
        height: auto;
        min-height: 100vh;
    }

    #hero h1 {
        font-size: 36px;
        line-height: 1.3;
    }

    #hero h2 {
        font-size: 20px;
    }

    #hero .btn-get-started {
        font-size: 20px;
        padding: 15px 35px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 30px;
    }

    #hero h2 {
        font-size: 18px;
    }
}
.contact {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.contact .section-title h2 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
}

.contact .info-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.contact .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact .info-icon {
    color: #3498db;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact .info-card:hover .info-icon {
    transform: scale(1.1);
}

.contact .info-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact .info-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .contact .section-title h2 {
        font-size: 36px;
    }

    .contact .info-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .contact .info-card h3 {
        font-size: 20px;
    }

    .contact .info-card p {
        font-size: 16px;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

.contact [data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.contact [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
.cart__popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100px;
    height: 100px;
    right: 10px;
    bottom: 10px;
    background: rgb(29, 29, 29);
    color: #fff;
    border-radius: 50%;
}

.cart__popup:hover {
    cursor: pointer;
}

.cart__icon {
    font-size: 2rem;
}

.cart__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: red;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    padding: 5px 12px;
}
.products__logo {
text-align: center;
padding: 50px 0;
}
.products__box {
display: flex;
justify-content: center;
align-items: start;
flex-wrap: wrap;
}

.products__card {
  flex: 0 0 calc(40% - 20px);
  box-sizing: border-box;
  max-width: 600px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  margin: 10px;
  }

.product__bottom {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}

.products__price {
font-size: 1.5rem;
font-weight: 600;
}

.products__card a {
text-decoration: none;
}

.products__card a:hover {
color: inherit;
text-decoration: none;
}

.products__card:hover {
cursor: pointer;
}

.products__card img {
width: 100%;
border-radius: 10px 10px 0 0;
}

.products__content {
padding: 20px;
}

  .product {
  padding: 50px 0;
  }
.product {
  padding: 2rem 0;
}

.product__image {
width: 100%;
border-radius: 10px;
box-shadow: 1px 2px 6px 2px rgb(219, 219, 219);
}

.product__image:hover {
box-shadow: 1px 0px 9px 1px rgb(0, 0, 0, 0.35);
}

.product__wrapper {
display: flex;
flex-direction: row;
padding: 1rem 0;
}

.right {
padding: 0 30px;
}

.right h1 {
font-size: 35px;
letter-spacing: 1px;
word-spacing: 2px;
}

.product__price {
font-weight: 600;
}

.product__name,
  .product__price,
  .product__description,
  .product__button {
  margin: 20px 0;
  }

.product__preview_wrapper {
display: flex;
flex-direction: row;
}

  .product__price {
  font-size: 2rem;
  }

.product__preview {
  max-width: 90px;
  border-radius: 5px;
  margin: 0 5px;
}

.product__preview:hover {
box-shadow: 1px 0px 9px 1px rgb(0, 0, 0, 0.35);
cursor: pointer;
}

.product__button {
padding: 10px 15px;
color: white;
background-color: rgb(0, 0, 0, 0.35);
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 20px;
}

.product__button:hover {
cursor: pointer;
}

@media (max-width: 1300px) {
h1 {
      font-size: 28px;
}

.product__preview {
      width: 70px;
      padding: 10px 10px;
      padding-bottom: 30px;
}

button {
      padding: 8px 13px;
      background-color: rgb(3, 122, 122);
      border: none;
      border-radius: 5px;
      cursor: pointer;
}
}

@media (max-width: 1170px) {
h1 {
      font-size: 22px;
}

#product__preview {
      width: 60px;
      padding: 10px 10px;
      padding-bottom: 30px;
}

button a {
      font-size: 15px;
}

h4,
p {
      font-size: 13px;
}

h3 {
      font-size: 15px;
}
}

@media (max-width: 900px) {
.product__wrapper {
      flex-direction: column;
}

.left {
      width: 100%;
      text-align: center;
}

.right {
      padding-top: 50px;
}

.product__image {
      max-width: 300px;
}

.product__button {
      width: 100%;
      text-align: center;
}
}
.cart__wrapper {
    display: flex;
    flex-direction: row;
    padding: 1rem 0;
}

  .cart__list {
      flex: 0 0 50%;
  }

  .cart__form {
      flex: 0 0 50%;
  }

  @media (max-width: 1200px) {
      .cart__wrapper {
          flex-direction: column;
      }

      .cart__list {
          flex: 0 0 100%;
      }

      .cart__form {
          flex: 0 0 100%;
          margin-top: 50px;
      }
  }

.cart__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 0.2rem;
    justify-content: space-between;
    margin-top: 20px;
}

.cart__item_preview {
    max-width: 90px;
    border-radius: 5px;
}

.cart__item_desc,
.cart__item_count,
.cart__item_remove {
    padding: 20px 10px;
}

.cart__form {
    padding: 0 20px;
}

.form__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.form__input {
    margin: 10px 0;
}

  .form__wrapper label {
      margin-top: 10px;
  }

  .form__input {
      color: #333;
      font-size: 1.2rem;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      border-radius: 0.2rem;
      background-color: rgb(255, 255, 255);
      border: none;
      width: 90%;
      display: block;
      border-bottom: 0.3rem solid transparent;
  }

  .button-6 {
      align-items: center;
      background-color: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 0.25rem;
      box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
      box-sizing: border-box;
      color: rgba(0, 0, 0, 0.85);
      cursor: pointer;
      display: inline-flex;
      font-family: system-ui, -apple-system, system-ui, 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 16px;
      font-weight: 600;
      justify-content: center;
      line-height: 1.25;
      margin: 50px;
      min-height: 3rem;
      padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
      position: relative;
      text-decoration: none;
      transition: all 250ms;
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
      vertical-align: baseline;
      width: auto;
  }

  .button-6:hover,
  .button-6:focus {
      border-color: rgba(0, 0, 0, 0.15);
      box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
      color: rgba(0, 0, 0, 0.65);
  }

  .button-6:hover {
      transform: translateY(-1px);
  }

  .button-6:active {
      background-color: #f0f0f1;
      border-color: rgba(0, 0, 0, 0.15);
      box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
      color: rgba(0, 0, 0, 0.65);
      transform: translateY(0);
  }

  .cart__item_remove button {
      background-color: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .cart__item_remove button:hover,
  .cart__item_remove button:focus {
      border-color: rgba(0, 0, 0, 0.15);
      box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
      color: rgba(0, 0, 0, 0.65);
  }
