@import url(//fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700);

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #89b41a4d;
}

#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;
    background: #f8f9fa;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

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

#header .logo a:hover {
    color: #6c757d;
}

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

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

.navbar li {
    position: relative;
    margin: 0 5px;
}

.navbar a {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    color: #445361;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar a:hover,
.navbar .active {
    color: #6c757d;
    background: rgba(108, 117, 125, 0.1);
}

.navbar .getstarted {
    background: #6c757d;
    color: #fff;
    padding: 12px 25px;
    margin-left: 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(108, 117, 125, 0.3);
}

.navbar .getstarted:hover {
    background: #545b62;
    transform: translateY(-2px);
}

/* Dropdown styles */
.navbar .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    padding: 15px 0;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(10px);
}

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

.navbar .dropdown-item {
    padding: 10px 25px;
    color: #445361;
    font-size: 14px;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    margin-left: 20px;
}

.mobile-nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #445361;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-nav-toggle span:nth-child(1) { top: 0; }
.mobile-nav-toggle span:nth-child(2) { top: 10px; }
.mobile-nav-toggle span:nth-child(3) { top: 20px; }

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

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

    .navbar li {
        margin: 10px 0;
    }

    .navbar a {
        padding: 15px;
        justify-content: center;
    }

    .navbar .getstarted {
        margin: 15px 0;
    }

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

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

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

.navbar a {
    animation: fadeIn 0.5s ease forwards;
}
/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
.hero {
    --primary-color: #FF6B6B;
    --primary-color-rgb: 255, 107, 107;
    --secondary-color: #4ECDC4;
    --secondary-color-rgb: 78, 205, 196;
    --text-color: #ffffff;
    --text-color-rgb: 255, 255, 255;
    
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 200px 0 120px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.hero:before {
    content: '';
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.8), rgba(78, 205, 196, 0.8));
    position: absolute;
    inset: 0;
    z-index: 2;
}

.floating-shapes svg {
    position: absolute;
    z-index: 2;
    opacity: 0.1;
    fill: var(--text-color);
}

.shape-1 {
    top: 15%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    bottom: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h2 {
    color: var(--text-color) !important;
    margin: 0;
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.glow-text {
    text-shadow: 0 0 10px rgba(var(--text-color-rgb), 0.3);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(var(--text-color-rgb), 0.3); }
    50% { text-shadow: 0 0 20px rgba(var(--text-color-rgb), 0.5); }
}

.hero p {
    color: var(--text-color);
    margin: 25px 0 0 0;
    font-size: 24px;
    opacity: 0.9;
}

.hero .sign-up-form {
    margin-top: 40px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-input {
    height: 60px;
    border-radius: 15px !important;
    border: none;
    font-size: 18px;
    padding: 0 25px;
    background: rgba(255, 255, 255, 0.9);
}

.custom-input:focus {
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.3);
}

.btn-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--text-color);
    padding: 0 35px;
    height: 60px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 15px !important;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px 0;
    }
    
    .hero h2 {
        font-size: 40px;
    }

    .hero p {
        font-size: 20px;
    }
    
    .btn-gradient {
        width: 100%;
        margin: 10px 0 0 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 {
    background: #f8f9fa;
    padding: 0 0 40px 0;
    color: #4a4a4a;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
}

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

#footer .footer-info {
    margin-bottom: 30px;
    background: #ffffff;
    color: #4a4a4a;
    border-radius: 20px;
    text-align: center;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

#footer .brand-title {
    font-size: 42px;
    margin: 0 0 30px 0;
    padding: 2px 0;
    line-height: 1.2;
    font-weight: 700;
    color: #2d2d2d;
}

#footer .contact-details {
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 0;
}

#footer .footer-links {
    margin-bottom: 40px;
}

#footer .footer-top h4 {
    font-size: 28px;
    font-weight: 600;
    color: #2d2d2d;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

#footer .footer-top h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4a4a4a;
    border-radius: 2px;
}

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

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

#footer .arrow-icon {
    margin-right: 10px;
    color: #4a4a4a;
    transition: transform 0.3s ease;
}

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

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

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

#footer .newsletter-form {
    margin-top: 30px;
    background: #ffffff;
    padding: 8px;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#footer .newsletter-form input[type="email"] {
    border: none;
    padding: 15px;
    width: calc(100% - 140px);
    font-size: 24px;
    background: transparent;
    outline: none;
}

#footer .newsletter-form .submit-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    bottom: 8px;
    border: none;
    font-size: 24px;
    padding: 0 30px;
    background: #4a4a4a;
    color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 10px;
    cursor: pointer;
}

#footer .newsletter-form .submit-btn:hover {
    background: #757575;
    transform: translateY(-2px);
}

#footer .copyright {
    border-top: 1px solid #dedede;
    text-align: center;
    padding-top: 40px;
    font-size: 20px;
    color: #4a4a4a;
}

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

.animate-slide-right {
    animation: slideRight 1s ease-in-out;
}

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

@keyframes slideRight {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

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

    #footer .contact-details,
    #footer .footer-links ul a,
    #footer .newsletter-form input[type="email"],
    #footer .newsletter-form .submit-btn {
        font-size: 20px;
    }

    #footer .footer-top h4 {
        font-size: 24px;
    }

    #footer .footer-info {
        margin: 0 15px 30px;
    }
}
.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);
  }
