/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0.0
Author: TuftedRealm
Description: Child theme for Hello Elementor
*/

.custom-single-product-container h1.product_title {
    font-size: 32px;
    margin-bottom: 10px;
}

.custom-single-product-container .price {
    font-size: 24px;
    color: #d35400;
    margin-bottom: 20px;
}

.custom-single-product-container .single_add_to_cart_button {
    background-color: #e67e22;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 18px;
}

.custom-single-product-container .product-tabs .woocommerce-Tabs-panel {
    padding: 20px 0;
}

/* Footer Link Hover Styling */
.site-footer nav a {
  transition: color 0.3s ease;
}

.site-footer nav a:hover {
  color: #2dc4b6; /* TuftedRealm Teal Accent */
}

/* Footer Instagram Icon Hover */
.footer-social a img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

/* TuftedRealm Header Base */
.tufted-header {
  background-color: #faf8f5;
  border-bottom: 1px solid #e1e1e1;
  padding: 20px 0;
  font-family: 'Poppins', sans-serif;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-logo img {
  height: 40px;
}

/* Menu */
.site-navigation {
  flex-grow: 1;
  text-align: right;
}

.header-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-menu li {
  display: inline-block;
  margin-left: 20px;
}

.header-menu li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: color 0.3s ease;
}

.header-menu li a:hover {
  color: #2dc4b6; /* Teal hover */
}

/* Mobile Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  margin-left: auto;
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .site-navigation {
    width: 100%;
    display: none;
    margin-top: 10px;
  }

  .site-navigation.active {
    display: block;
  }

  .header-menu li {
    display: block;
    margin: 10px 0;
    text-align: left;
  }

  .menu-toggle {
    display: block;
  }
}

/* Cart Badge */
.cart-link {
  position: relative;
}

.cart-badge {
  background-color: #2dc4b6;
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 12px;
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
}
