/*** ========= GENERAL / HEADER / NAV ========== ***/
/* These styles are global (for header, nav, search, cart), but avoid using very generic selectors like .woocommerce everywhere */

body {
  font-family: "Segoe UI", sans-serif;
  overflow-x: hidden;
}


/* Navbar & Common Header */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: linear-gradient(to right, #dbeafe, #bfdbfe, #dbeafe);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0;
  padding: 0 0.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 6rem;
}

/* Logo */
.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 3.5rem;
  height: 3.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.logo-text {
  font-family: 'Montserrat', sans-serif; /* Or whichever matches */
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 2px;
  color: #222;
  display: inline-flex;
  align-items: center;
}

/* Custom E made of 3 horizontal bars */
.logo-e {
  position: relative;
  display: inline-block;
  width: 18px;   /* width of E */
  height: 21px;  /* total height */
  margin: 0 3px;
}

.logo-e .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;       /* thickness */
  background: currentColor;
  border-radius: 2px;
}

/* Top, middle, bottom placement */
.logo-e .top {
  top: 0;
}

.logo-e .middle {
  top: 9px;
}

.logo-e .bottom {
  bottom: 0;
}


/* Menu */
.menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.menu a {
  font-size: 1.125rem;
  color: #1e3a8a;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.menu a:hover {
  color: #3b82f6;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background-color: #60a5fa;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.desktop-menu-wrapper {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .desktop-menu-wrapper {
    display: flex;
  }
}

/* Search */
.search-wrapper {
  position: relative;
}

.search-input {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 9999px;
  padding: 0.5rem 3rem 0.5rem 1.25rem;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.search-input:focus {
  box-shadow: 0 0 0 3px #93c5fd;
}

.search-icon {
  height: 18px;
  width: 18px;
  position: absolute;
  right: 1rem;
  top: 0.4rem;
  color: #3b82f6;
}

/* CTA Buttons */
.cta-button {
  background: linear-gradient(to right, #3b82f6, #1e40af); /* Blue gradient */
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 1.125rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.cta-button:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.menu-toggle {
  background: none;
  border: none;
  font-size: 1.875rem;
  color: #1d4ed8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile dropdown menu panel */
.mobile-menu {
  position: absolute;
  top: 100%;
  max-height: 0;
  width: 100%;
  opacity: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: none;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.1),
    0 4px 15px rgba(0, 0, 0, 0.07);
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    padding 0.5s ease;
  padding: 0 1.5rem;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  will-change: max-height, opacity;
}
.mobile-account-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}
.mobile-account-links a {
  color: #1e3a8a;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
  display: block;
  box-shadow: inset 0 0 0 0 transparent;
}
.mobile-account-links a:hover,
.mobile-account-links a:focus {
  color: #2563eb;
  background-color: #eff6ff;
  outline: none;
  transform: translateX(5px);
  box-shadow: inset 0 0 10px rgba(37, 99, 235, 0.3);
}
/* Show dropdown with smooth animation */
.mobile-menu.visible {
  max-height: 600px;
  opacity: 1;
  padding: 1.5rem 1.5rem 2rem;
}

/* Menu list styling */
.mobile-menu .menu {
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Links styling */
.mobile-menu a {
  color: #1e3a8a;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
  display: block;
  box-shadow: inset 0 0 0 0 transparent;
  will-change: background-color, transform;
}

/* Hover and focus states */
.mobile-menu a:hover,
.mobile-menu a:focus {
  color: #2563eb;
  background-color: #eff6ff;
  outline: none;
  transform: translateX(5px);
  box-shadow: inset 0 0 10px rgba(37, 99, 235, 0.3);
}

/* CTA Button styling */
.mobile-menu .cta-button {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  padding: 0.85rem 0;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 9999px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.45);
  transition:
    box-shadow 0.4s ease,
    transform 0.3s ease;
  user-select: none;
  cursor: pointer;
}

.mobile-menu .cta-button:hover,
.mobile-menu .cta-button:focus {
  box-shadow: 0 14px 30px rgba(59, 130, 246, 0.65);
  transform: scale(1.07);
  outline: none;
}

/* Toggle button styling */
.menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #1d4ed8;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  user-select: none;
  position: relative;
  z-index: 1100;
}

.menu-toggle:hover,
.menu-toggle:focus {
  color: #2563eb;
  outline: none;
}

/* Animate toggle icon rotation */
.menu-toggle.open i {
  transform: rotate(90deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide mobile menu on desktop */
@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-account-links {
    display: none;
  }
}


/* Cart / Account / Dropdown stuff (global styles, but fairly safe if specific) */
.account-menu {
  display: inline-block;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.login-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background-color: #f1f1f1;
  color: #333;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.login-link:hover {
  background-color: #1e40af;
  color: #fff;
}

.login-link i {
  font-size: 1rem;
  transition: color 0.3s ease;
}

.cart-menu {
  position: relative;
  margin-left: 20px;
}

.cart-toggle {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 20px;
}

.cart-toggle:hover {
  color: #000;
}

.cart-toggle i.fa-cart-shopping {
  font-size: 22px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #1d4ed8;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
  min-width: 18px;
  text-align: center;
  line-height: 1.2;
}

.cart-count.updated {
  animation: bounce 0.3s ease-in-out;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
/*** ====== WOOCOMMERCE ACCOUNT / MY ACCOUNT PAGE STYLES ====== ***/

body.woocommerce-account {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* === General Article === */
body.woocommerce-account article {
  background-color: #f9f9f9;
  max-width: 1200px;
  margin: auto;
}

/* === Page Title === */
body.woocommerce-account h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #222;
  text-align: center;
}

/* === Layout: Navigation + Content === */
body.woocommerce-account .woocommerce {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 4rem 0 2rem;
}

.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
}

.woocommerce-MyAccount-navigation {
  flex: 0 0 250px;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-MyAccount-navigation li {
  margin-bottom: 15px;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 12px 18px;
  background-color: #f1f1f1;
  color: #333;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
  background-color: #0073aa;
  color: #fff;
}

.woocommerce-MyAccount-content {
  flex: 1;
  padding: 30px;
  border-radius: 12px;
  color: #1f2937;
}

/* === Text inside content === */
.woocommerce-MyAccount-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #374151;
}

.woocommerce-MyAccount-content strong {
  color: #0073aa;
}

.woocommerce-MyAccount-content a {
  color: #1e40af;
  transition: color 0.2s ease;
}

.woocommerce-MyAccount-content a:hover {
  color: #1e3a8a;
}

/* === Address Blocks === */
.woocommerce-Addresses {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.woocommerce-Address {
  flex: 1 1 45%;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.03);
}

.woocommerce-Address-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.woocommerce-Address-title h2 {
  font-size: 1.25rem;
  margin: 0;
  color: #1e40af;
}

.woocommerce-Address-title .edit {
  background-color: #0073aa;
  color: white;
  padding: 6px 12px;
  font-size: 0.9rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.woocommerce-Address-title .edit:hover {
  background-color: #005f8d;
}

.woocommerce-Address address {
  font-style: normal;
  font-size: 0.95rem;
  color: #555;
}

/* === Edit Account Form === */
.woocommerce-EditAccountForm {
  background-color: #fafafa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
}

.woocommerce-EditAccountForm .form-row {
  margin-bottom: 20px;
}

.woocommerce-EditAccountForm label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.woocommerce-EditAccountForm .input-text {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.woocommerce-EditAccountForm .input-text:focus {
  border-color: #1e40af;
  outline: none;
}

.password-input {
  position: relative;
}

.password-input button.show-password-input {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0.6;
}

.password-input button.show-password-input:hover {
  opacity: 1;
}

.woocommerce-EditAccountForm fieldset {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.woocommerce-EditAccountForm legend {
  font-weight: 700;
  color: #0073aa;
  margin-bottom: 10px;
  padding: 0 10px;
}

.woocommerce-EditAccountForm .woocommerce-Button {
  background-color: #1e40af;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.woocommerce-EditAccountForm .woocommerce-Button:hover {
  background-color: #1e3a8a;
}

/* === Orders Table === */
.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-family: inherit;
  margin-top: 2rem;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.woocommerce-orders-table thead {
  background-color: #f1f5f9;
  text-align: left;
}

.woocommerce-orders-table th,
.woocommerce-orders-table td {
  padding: 1rem;
  font-size: 0.95rem;
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
}

.woocommerce-orders-table th {
  color: var(--text-dark);
}

.woocommerce-orders-table td {
  color: var(--text-gray);
}

.woocommerce-orders-table tbody tr {
  transition: background-color 0.2s ease;
}

.woocommerce-orders-table tbody tr:hover {
  background-color: #f9fafb;
}

.woocommerce-orders-table__cell-order-number a {
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.woocommerce-orders-table__cell-order-number a:hover {
  color: var(--primary-hover);
}

.woocommerce-orders-table__cell-order-actions .woocommerce-button {
  background-color: var(--primary-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background-color 0.3s ease;
}

.woocommerce-orders-table__cell-order-actions .woocommerce-button:hover {
  background-color: var(--primary-hover);
}

.woocommerce-orders-table__cell-order-total .woocommerce-Price-amount,
.woocommerce-Price-amount {
  font-weight: 600;
  color: #111827;
}

/* === Order Status Colors === */
.woocommerce-orders-table__row--status-completed td,
.woocommerce-orders-table__row--status-completed th {
  background-color: #ecfdf5;
  color: #065f46;
}

.woocommerce-orders-table__row--status-processing td,
.woocommerce-orders-table__row--status-processing th {
  background-color: #eff6ff;
  color: #1e3a8a;
}

.woocommerce-orders-table__row--status-cancelled td,
.woocommerce-orders-table__row--status-cancelled th {
  background-color: #fef2f2;
  color: #991b1b;
}

/* === Order Details === */
.woocommerce-order-details__title,
.woocommerce-column__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
}

.woocommerce-order-details table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 0.95rem;
  background: #f9fafb;
  border-radius: 8px;
  overflow: hidden;
}

.woocommerce-order-details thead {
  background-color: #f1f5f9;
}

.woocommerce-order-details th,
.woocommerce-order-details td {
  padding: 14px 20px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.woocommerce-order-details tbody tr:last-child td {
  border-bottom: none;
}

.woocommerce-table__product-name a {
  color: #1e40af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.woocommerce-table__product-name a:hover {
  color: #1e3a8a;
}

.product-quantity {
  font-weight: 500;
  color: #6b7280;
  margin-left: 4px;
}

.order_details tfoot th {
  font-weight: 600;
  color: #374151;
  text-align: left;
}

.order_details tfoot td {
  text-align: right;
  font-weight: 500;
  color: #1f2937;
}

/* === Customer Details === */
.woocommerce-customer-details {
  background-color: #f9fafb;
  padding: 30px;
  border-radius: 10px;
}

.woocommerce-columns--addresses {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.woocommerce-column {
  flex: 1 1 45%;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.03);
}

.woocommerce-column address {
  font-style: normal;
  line-height: 1.7;
  color: #374151;
  font-size: 0.95rem;
}

.woocommerce-customer-details--phone,
.woocommerce-customer-details--email {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #4b5563;
}

/* === Responsive Styles === */
@media (max-width: 768px) {
  .woocommerce-columns--addresses,
  body.woocommerce-account .woocommerce {
    flex-direction: column;
  }

  .woocommerce-column,
  .woocommerce-MyAccount-navigation,
  .woocommerce-MyAccount-content {
    width: 100%;
  }

  .woocommerce-order-details table.shop_table {
    font-size: 0.9rem;
  }

  .order_details tfoot td {
    text-align: left;
  }

  .woocommerce-orders-table thead {
    display: none;
  }

  .woocommerce-orders-table tbody,
  .woocommerce-orders-table tr,
  .woocommerce-orders-table td {
    display: block;
    width: 100%;
  }

  .woocommerce-orders-table td {
    padding: 0.75rem 1rem;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
  }

  .woocommerce-orders-table td::before {
    content: attr(data-title);
    font-weight: 600;
    display: block;
    color: #374151;
    margin-bottom: 4px;
  }

  .woocommerce-orders-table__cell-order-actions {
    text-align: right;
  }
}


/* Dropdown for account toggle (for header/account menu) */
/* This also used globally, but safe since toggled with specific classes */
.account-dropdown {
  position: relative;
  display: inline-block;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.account-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background-color: #f1f1f1;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}

.account-toggle:hover {
  background-color: #e0e0e0;
}

.account-toggle i.fa-chevron-down {
  transition: transform 0.3s ease;
}

.account-dropdown.open .account-toggle i.fa-chevron-down {
  transform: rotate(180deg);
}

.account-dropdown .dropdown-menu {
  position: absolute;
  top: 105%;
  right: 0;
  min-width: 180px;
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 10px 0;
  display: none;
  z-index: 999;
}

.account-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: #1e40af;
  color: #fff;
}

/* General layout */
main {
  max-width: 1200px;
  width:100%;
  padding: 1rem 2rem;
  margin-top: 5rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  display:contents;
}


/* ===== Blesskin Footer Styles ===== */

.blesskin-footer {
  background: linear-gradient(to right, #e0f2fe, #bae6fd, #e0f2fe);
  color: #374151;
  padding: 3rem 0 2rem;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #1d4ed8;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.footer-column h3 {
  color: #1d4ed8;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-column ul li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-column ul li a {
  color: #374151;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #3b82f6;
}

.footer-column .icon {
  color: #3b82f6;
  margin-right: 0.5rem;
}

.footer-divider {
  border-color: #93c5fd;
  margin: 1.5rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}


@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #bae6fd;
  color: #1d4ed8;
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
  background-color: #3b82f6;
  color: #fff;
  transform: scale(1.05);
}

.footer-copy {
  font-size: 0.875rem;
  color: #6b7280;
}


.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  padding: 16px 18px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

.whatsapp-btn i {
  font-size: 1.8rem;
}
