@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: #e2ca584d;
}

#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 {
    background: rgba(71, 85, 105, 0.95);
    transition: all 0.4s ease-in-out;
    z-index: 997;
    height: 90px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.modern-logo {
    color: #fff !important;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 12px;
}

.modern-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

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

.navbar li {
    position: relative;
}

.navbar>ul>li {
    padding: 10px 5px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.hover-effect:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.navbar .active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 15px);
    margin: 0;
    padding: 15px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.navbar .dropdown ul li {
    min-width: 220px;
}

.navbar .dropdown ul a {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.dropdown-item:hover {
    background: #f8f9fa !important;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: none;
    transition: 0.3s ease;
}

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

    .navbar ul {
        display: none;
    }
    
    #header {
        height: 80px;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(71, 85, 105, 0.98);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    z-index: 999;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 70px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 20px;
    background-color: #fff;
    overflow-y: auto;
    border-radius: 15px;
    transition: 0.3s ease;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 15px;
    font-size: 15px;
    color: #2a2a2a;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px;
    border-radius: 8px;
    background: #f8f9fa;
    box-shadow: none;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}
/*--------------------------------------------------------------
# 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;
    }
}
/*--------------------------------------------------------------
# Contact Section Styles
--------------------------------------------------------------*/
.contact {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}

.contact .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2d4356;
    margin-bottom: 30px;
}

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

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

.icon-wrapper {
    background: #f0f4f8;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: background-color 0.3s ease;
}

.contact-card:hover .icon-wrapper {
    background: #2d4356;
}

.contact-icon {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
    color: #2d4356;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-icon {
    color: white;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2d4356;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-card address,
.contact-card p {
    font-size: 18px;
    color: #566573;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-card a {
    color: #566573;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #2d4356;
}

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

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

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

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

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .contact-icon {
        width: 30px;
        height: 30px;
    }

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

    .contact-card address,
    .contact-card p {
        font-size: 16px;
    }
}
/*--------------------------------------------------------------
# Modern Footer Styles
--------------------------------------------------------------*/
.footer {
    --footer-bg: #f8f9fa;
    --text-color: #4a4a4a;
    --accent-color: #3498db;
    --hover-color: #2980b9;
    --heading-color: #2c3e50;
    
    background-color: var(--footer-bg);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    padding: 80px 0;
    border-radius: 30px 30px 0 0;
    transition: all 0.3s ease;
}

.animate-footer {
    animation: slideUp 0.8s ease-out;
}

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

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

.footer .brand-text {
    color: var(--heading-color);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: 'Oswald', sans-serif;
    transition: color 0.3s ease;
}

.footer .social-links {
    gap: 20px;
}

.footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.footer .social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.footer .social-icon svg {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer h4 {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'Raleway', sans-serif;
}

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

.footer .footer-links ul li {
    padding: 12px 0;
}

.footer .hover-effect {
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer .hover-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.footer .hover-effect:hover {
    color: var(--accent-color);
}

.footer .hover-effect:hover::after {
    width: 100%;
}

.footer .contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer .contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer .contact-info strong {
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .footer {
        font-size: 20px;
        padding: 40px 0;
    }
    
    .footer h4 {
        font-size: 24px;
    }
    
    .footer .brand-text {
        font-size: 30px;
    }
    
    .footer .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer .contact-info {
        padding: 20px;
    }
}
.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);
  }
