@import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600);

body {
    font-family: "Source Sans Pro", sans-serif;
}

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #72a9804d;
}

#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;
}
/*--------------------------------------------------------------
# Modern Header Styles
--------------------------------------------------------------*/
:root {
    --header-bg: #f8f9fa;
    --primary-color: #4B5563;
    --primary-color-rgb: 75, 85, 99;
    --text-color: #374151;
    --nav-font: 'Montserrat', sans-serif;
    --transition: all 0.3s ease-in-out;
}

.header {
    background-color: var(--header-bg);
    padding: 20px 0;
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition);
}

.brand-title {
    font-family: var(--nav-font);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.nav-list {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    font-family: var(--nav-font);
    font-size: 16px;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-getstarted {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--nav-font);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.animate-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.animate-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Dropdown styles */
.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    display: none;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    border: none;
    margin-top: 15px;
    min-width: 200px;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    font-family: var(--nav-font);
    padding: 10px 25px;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
}

.bi-chevron-down {
    font-size: 12px;
    margin-left: 5px;
}

@media (max-width: 1200px) {
    .header {
        padding: 15px 0;
    }

    .nav-list {
        background: #ffffff;
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        flex-direction: column;
        padding: 20px;
        transition: var(--transition);
    }

    .mobile-nav-active .nav-list {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 15px 0;
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin: 0;
        padding-left: 15px;
    }

    .btn-getstarted {
        margin-right: 50px;
    }

    .dropdown-menu {
        background: rgba(var(--primary-color-rgb), 0.05);
        border-radius: 8px;
        margin-top: 5px;
    }
}
#hero {
    color: #2D3436;
    position: relative;
    background-image: url('/img/image-background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100% !important;
    min-height: 100vh;
    padding: 80px 0;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 129, 0.85), rgba(41, 128, 185, 0.85));
    backdrop-filter: blur(5px);
}

.hero-content-wrapper {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(45deg, #FF6B81, #2980B9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3.5rem;
}

.custom-btn {
    background: linear-gradient(45deg, #FF6B81, #2980B9);
    border: none;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    margin-right: 10px;
    vertical-align: middle;
}

.content-animate {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

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

.hover-effect {
    position: relative;
    overflow: hidden;
}

.hover-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.hover-effect:hover::after {
    transform: translateX(0);
}
#{{randomString}} {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.contact-decor {
    position: absolute;
    top: -75px;
    right: -75px;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.contact-wrapper {
    min-height: 600px;
}

.contact-info {
    padding: 40px;
}

.info-block {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(139, 133, 137, 0.05);
    transition: transform 0.3s ease;
}

.info-block:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    margin-bottom: 20px;
}

.contact-text {
    font-size: 24px;
    color: #4a4a4a;
    margin: 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 20px;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@media (max-width: 991px) {
    .contact-wrapper {
        min-height: auto;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .map-container {
        margin-top: 30px;
    }
    
    .contact-text {
        font-size: 20px;
    }
    
    .info-block {
        margin-bottom: 20px;
    }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    background: #f8f9fa;
    color: #555;
}

#footer .footer-newsletter {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

#footer .newsletter-title {
    font-size: 42px;
    margin: 0 0 30px 0;
    font-weight: 700;
    color: #2d4b6e;
}

#footer .newsletter-desc {
    font-size: 24px;
    color: #555;
    margin-bottom: 40px;
}

#footer .newsletter-form {
    margin-top: 30px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 15px;
}

#footer .newsletter-form input[type=email] {
    border: none;
    padding: 15px;
    flex-grow: 1;
    font-size: 24px;
    outline: none;
}

#footer .subscribe-btn {
    border: none;
    padding: 15px 40px;
    background: #2d4b6e;
    color: #fff;
    font-size: 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#footer .subscribe-btn:hover {
    background: #1a2d43;
    transform: translateY(-2px);
}

#footer .footer-top {
    padding: 80px 0 40px 0;
    background: #fff;
    border-radius: 50px 50px 0 0;
}

#footer .brand-title {
    font-size: 36px;
    margin: 0 0 30px 0;
    font-weight: 700;
    color: #2d4b6e;
}

#footer .contact-info {
    font-size: 24px;
    line-height: 1.6;
    color: #555;
}

#footer .footer-top h4 {
    font-size: 28px;
    font-weight: 700;
    color: #2d4b6e;
    margin-bottom: 30px;
}

#footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-links ul li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#footer .arrow-icon {
    color: #2d4b6e;
    transition: transform 0.3s ease;
}

#footer .footer-links ul li:hover .arrow-icon {
    transform: translateX(5px);
}

#footer .footer-links ul a {
    color: #555;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
}

#footer .footer-links ul a:hover {
    color: #2d4b6e;
}

#footer .social-desc {
    font-size: 24px;
    margin-bottom: 30px;
}

#footer .social-links {
    display: flex;
    gap: 15px;
}

#footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #2d4b6e;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#footer .social-icon:hover {
    background: #1a2d43;
    transform: translateY(-5px);
}

#footer .footer-bottom {
    padding: 30px 0;
    text-align: center;
    background: #2d4b6e;
    color: #fff;
}

#footer .copyright {
    font-size: 20px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #footer {
        font-size: 20px;
    }

    #footer .newsletter-title {
        font-size: 32px;
    }

    #footer .newsletter-desc {
        font-size: 20px;
    }

    #footer .newsletter-form {
        flex-direction: column;
        padding: 15px;
    }

    #footer .subscribe-btn {
        width: 100%;
    }

    #footer .footer-top {
        padding: 40px 0;
    }

    #footer .brand-title {
        font-size: 28px;
    }

    #footer .contact-info,
    #footer .footer-links ul a {
        font-size: 20px;
    }

    #footer .social-icon {
        width: 40px;
        height: 40px;
    }
}
.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;
flex-direction: row;
justify-content: center;
align-items: start;
flex-wrap: wrap;
}

.products__card {
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
border-radius: 10px;
margin: 10px;
max-width: 300px;
}

.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);
  }
