.c-foot-main {
  background-color: #f8f9fa;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.c-foot-header {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
}

.c-foot-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-foot-icon {
  width: 40px;
  height: 40px;
  background-color: #1e3a8a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.c-foot-contact-text {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.c-foot-contact-value {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
  margin: 0;
}

.c-foot-logo {
  text-align: center;
}

.c-foot-logo-text {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

.c-foot-logo-m {
  color: #dc3545;
}

.c-foot-logo-fusion {
  color: #4f46e5;
}

/* .c-foot-star {
  color: #dc3545;
  font-size: 24px;
} */

.c-foot-content {
  padding: 60px 0 0;
  position: relative;
}

/* .c-foot-star-left {
  position: absolute;
  left: 20px;
  top: 30px;
} */

/* Footer star devider */
.c-foot-divider {
    position: relative;
    width: 100%;
    margin: 40px 0;
}

.c-foot-line {
    border: none;
    border-top: 3px solid #444;
    margin: 0;
    height: 0;
}

.c-foot-star {
    position: absolute;
    top: -14px; /* Adjust vertically to align with the line */
    color: #dc3545;
    font-size: 24px;
    background: #fff;
    padding: 0 5px;
}

.c-foot-star-left {
    left: 0;
}

.c-foot-star-right {
    right: 0;
}
/* Footer star devider end */


/* .c-foot-star-right {
  position: absolute;
  right: 20px;
  top: 30px;
} */

.c-foot-map {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.c-foot-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}

.c-foot-address-icon {
  color: #212529;
  font-size: 18px;
  margin-top: 2px;
}

.c-foot-address-text {
  color: #212529;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.c-foot-social-title {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.c-foot-social-icons {
  display: flex;
  gap: 15px;
}

.c-foot-social-icon {
  width: 40px;
  height: 40px;
  background-color: #1e3a8a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s;
}

.c-foot-social-icon:hover {
  background-color: #1e40af;
  color: white;
}

.c-foot-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.c-foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-foot-links li {
  margin-bottom: 15px;
}

.c-foot-links a {
  color: #212529;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.c-foot-logo-img{
  height: 100px;
}

.c-foot-links a:hover {
  color: #dc3545;
}

.c-foot-newsletter-input {
  background-color: #e9ecef;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 20px;
}

.c-foot-newsletter-input:focus {
  background-color: #e9ecef;
  border: none;
  box-shadow: none;
  outline: none;
}

.c-foot-submit-btn {
  background-color: #1e3a8a;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  margin-bottom: 30px;
  transition: background-color 0.3s;
}

.c-foot-submit-btn:hover {
  background-color: #1e40af;
}

.c-foot-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.c-foot-payment-icon {
  height: 30px;
  width: auto;
}

.c-foot-bottom {
  background-color: #ffffff;
  padding: 20px 0;
  border-top: 1px solid #e9ecef;
  text-align: center;
}

.c-foot-copyright {
  color: #6c757d;
  font-size: 14px;
  margin: 0;
}

@media (max-width: 768px) {
  .c-foot-header .row > div {
    text-align: center !important;
    margin-bottom: 20px;
  }

  .c-foot-header .row > div:last-child {
    margin-bottom: 0;
  }

  .c-foot-star-left,
  .c-foot-star-right {
    display: none;
  }

  .c-foot-content {
    padding: 40px 0 30px;
  }

  .c-foot-section-title {
    margin-bottom: 20px;
  }

  .c-foot-payment-icons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .c-foot-logo-text {
    font-size: 28px;
  }

  .c-foot-contact-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .c-foot-social-icons {
    justify-content: center;
  }
}


 /* Shop Category Dropdown Styles - Simple Design */
.shop-dropdown {
    position: relative;
}

.shop-dropdown .t-h-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

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

/* Main category links */
.shop-dropdown .t-h-dropdown-menu > a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 0px 15px;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
}

.shop-dropdown .t-h-dropdown-menu > a:hover {
    background: #f8f9fa;
    color: #007bff;
}

.shop-dropdown .t-h-dropdown-menu > a.active {
    color: #007bff;
    background: #f0f8ff;
}

/* Subcategory dropdown */
.subcategory-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

/* Show subcategory dropdown on hover */
.shop-dropdown .t-h-dropdown-menu > a:hover + .subcategory-dropdown,
.subcategory-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Subcategory links */
.subcategory-dropdown > a {
    display: block;
    color: #555;
    text-decoration: none;
    padding: 8px 15px;
    font-size: 13px;
    position: relative;
    transition: all 0.3s ease;
}

.subcategory-dropdown > a:hover {
    background: #f8f9fa;
    color: #007bff;
}

.subcategory-dropdown > a.active {
    color: #007bff;
    background: #f0f8ff;
}

/* Child category dropdown */
.childcategory-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 180px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

/* Show child category dropdown on hover */
.subcategory-dropdown > a:hover + .childcategory-dropdown,
.childcategory-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Child category links */
.childcategory-dropdown > a {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 6px 15px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.childcategory-dropdown > a:hover {
    background: #f8f9fa;
    color: #007bff;
}

.childcategory-dropdown > a.active {
    color: #007bff;
    background: #f0f8ff;
}

/* Float right for chevron down icons */
.float-right {
    float: right;
}

/* Padding right for chevron right icons */
.pr-2 {
    padding-right: 0.5rem;
}

/* Margin top for chevron down icons */
.mt-1 {
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-dropdown .t-h-dropdown-menu {
        min-width: 250px;
        left: -50px;
    }
    
    .subcategory-dropdown,
    .childcategory-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-left: 20px;
        margin-top: 5px;
        background: #f8f9fa;
    }
    
    .shop-dropdown .t-h-dropdown-menu > a:hover + .subcategory-dropdown,
    .subcategory-dropdown:hover,
    .subcategory-dropdown > a:hover + .childcategory-dropdown,
    .childcategory-dropdown:hover {
        display: block;
    }
}

  .footer {
      background-color: #fff;
      border-top: 2px solid #e3e3e3;
      font-family: 'Segoe UI', sans-serif;
      color: #000;
    }
    .footer .icon-boxx {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .footer .icon-boxx i {
      background-color: #001f4d;
      color: white;
      padding: 10px;
      font-size: 1.2rem;
      border-radius: 8px;
    }
    .footer .logo {
      font-family: cursive;
      font-size: 2.5rem;
      color: #e63946;
    }
    .footer .logo span {
      color: #2c3eaa;
      font-family: sans-serif;
      font-weight: 600;
    }
    .footer .divider {
      border-top: 1px solid #bbb;
      position: relative;
      margin: 1rem 0;
    }
    .footer .divider::before,
    .footer .divider::after {
      content: '✦';
      position: absolute;
      top: -16px;
      font-size: 1.25rem;
      color: #d92d4c;
    }
    .footer .divider::before {
      left: 0;
    }
    .footer .divider::after {
      right: 0;
    }
    .footer a {
      color: #000;
      text-decoration: none;
    }
    .footer a:hover {
      text-decoration: underline;
    }
    .footer input[type="email"] {
      border-radius: 6px;
      border: 1px solid #ccc;
    }
    .footer .submit-btn {
      background-color: #001f4d;
      color: white;
      border: none;
      border-radius: 6px;
      padding: 0.4rem 1.5rem;
    }
    .footer .bottom-note {
      border-top: 1px solid #dcdcdc;
      padding-top: 1rem;
      font-size: 0.85rem;
      color: #444;
    }
    