.error-message:empty {
  display: none !important;
}

/* Removed legacy top-of-file footer override to avoid conflicting with responsive rules below */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f7f7f7;
  color: #222;
}

/* --- Enhanced Checkout Page Styles --- */
.checkout-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 48px auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255,95,31,0.08), 0 2px 8px rgba(0,0,0,0.04);
}
.checkout-main {
  flex: 2;
  padding: 48px 40px 40px 40px;
  min-width: 320px;
}
.checkout-summary {
  flex: 1;
  background: linear-gradient(135deg, #fff7f0 0%, #f7f7f7 100%);
  padding: 48px 32px 40px 32px;
  border-left: 1px solid #ffe2d1;
  min-width: 280px;
}
.checkout-step {
  margin-bottom: 36px;
  background: #fafafa;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(255,95,31,0.04);
}
.checkout-step h2 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #FF5F1F;
  font-family: 'Fredoka One', Arial, sans-serif;
}
.step-num {
  background: #ff5f1f;
  color: #fff;
  border-radius: 50%;
  padding: 4px 12px;
  margin-right: 10px;
  font-size: 16px;
}
.checkout-step input {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #ffd6b3;
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
  transition: border 0.2s;
}
.checkout-step input:focus {
  border-color: #FF5F1F;
  outline: none;
}
.payment-options {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}
.payment-options label {
  background: #fff7f0;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 15px;
  border: 1px solid #ffe2d1;
  transition: box-shadow 0.2s;
}
.payment-options input[type="radio"] {
  margin-right: 8px;
}
.form-row {
  display: flex;
  gap: 14px;
}
.brand {
  font-size: 28px;
  font-family: 'Fredoka One', Arial, sans-serif;
  color: #FF5F1F;
  margin-bottom: 28px;
}
.express-checkout {
  margin-bottom: 32px;
}
.paypal-btn {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  background: #0070ba;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,112,186,0.08);
  transition: background 0.2s;
}
.paypal-btn:hover {
  background: #005fa3;
}
.checkout-summary h2 {
  margin-bottom: 24px;
  font-size: 22px;
  color: #FF5F1F;
  font-family: 'Fredoka One', Arial, sans-serif;
}
.cart-item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(255,95,31,0.04);
  padding: 16px 12px;
}
.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.cart-info {
  flex: 1;
}
.cart-title {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 4px;
}
.cart-meta {
  color: #888;
  font-size: 14px;
  margin-bottom: 8px;
}
.cart-price {
  color: #FF5F1F;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-qty button {
  background: #fff7f0;
  border: 1px solid #ffe2d1;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-qty button:hover {
  background: #FF5F1F;
  color: #fff;
}
.apply-btn {
  width: 100%;
  padding: 12px;
  background: #FF5F1F;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,95,31,0.08);
  transition: background 0.2s;
}
.apply-btn:hover {
  background: #e04e00;
}
.summary-totals {
  margin: 24px 0 18px 0;
  font-size: 16px;
}
.summary-totals p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.summary-totals .total {
  font-size: 18px;
  font-weight: bold;
  color: #FF5F1F;
}
.place-order-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, #FF5F1F 0%, #FFD6B3 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,95,31,0.08);
  transition: background 0.2s;
}
.place-order-btn:hover {
  background: linear-gradient(90deg, #e04e00 0%, #FFD6B3 100%);
}
.checkout-summary input[type="text"],
.checkout-summary input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ffd6b3;
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
  transition: border 0.2s;
}
.checkout-summary input:focus {
  border-color: #FF5F1F;
  outline: none;
}


/* styles.css */

/* IONOS quick-links overrides (scoped to products) */
.products .ec-footer__row a,
.products .ec-footer__row a:visited {
  color: #222 !important; /* match site text color */
  text-decoration: none !important;
}
.products .ec-footer__row a:hover {
  color: #FF5F1F !important; /* brand accent on hover */
}


/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
 body {
            margin: 0;
            font-family: Arial, sans-serif;
        }
*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  font: 14px/22px "Lato", Arial, sans-serif;
  background: #fff; /* page background */
  margin: 0;
}

.lighter-text {
  color: #ABB0BE;
}

.main-color-text {
  color: #FF5F1F;
}



/* ===== NAVBAR ===== */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: #fff;
  padding: 0 20px;
  height: 90px;
  position: sticky;
  top: 0;
  z-index: 2000;
  transition: all 0.3s ease;
}

/* Top utilities bar: holds account and cart when pinned */
#top-utilities {
  position: fixed;
  top: 6px;
  right: 12px;
  z-index: 3000;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Ensure navbar content has room (add small top padding) */
body { padding-top: 6px; }
.navbar .nav-tabs a { margin: 0 10px; text-decoration: none; color: #000; }
.navbar .nav-tabs a.active { font-weight: bold; }
.navbar .cart-profile {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  position: relative;
}
.navbar .navbar-basket-count {
  font-weight: bold;
  font-size: 13px;
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
  margin: 0;
  padding: 0 2px;
  background: #fff;
  border-radius: 8px;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  z-index: 2;
  border-bottom: none !important;
  text-decoration: none !important;
}

.navbar .navbar-basket-count:hover, .navbar .cart-profile .cart:hover {
  border-bottom: none !important;
  text-decoration: none !important;
}

.navbar.scrolled {
  border-bottom: 2px solid #FF5F1F;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}



.navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5em;
}

.navbar-logo {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo {
  height: 80px;
  margin-top: 8px;
}

.navbar .nav-tabs {
  display: flex;
  gap: 25px;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.navbar .nav-tabs a {
  color: #444;
  text-decoration: none;
  font-size: 1.25em;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s;
  font-weight: normal;
  position: relative;
  overflow: visible;
}

.navbar .nav-tabs a.active::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  width: auto;
  height: 3px;
  background: #DDF600 !important;
  border-radius: 2px;
  display: block !important;
  opacity: 1 !important;
  z-index: 2;
  pointer-events: none;
}


.navbar .nav-tabs a:hover {
  background: #DDF600;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}


/* ===== CART & PROFILE ===== */

nav .cart-profile {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav .cart-profile .cart {
  display: inline-flex;
  align-items: flex-end;
  font-size: 1.2rem;
  color: #000;
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
}

nav .cart-profile .cart:hover {
  transform: scale(1.08);
}

nav .cart-profile .sign-in-btn {
  font-size: 95%;
  padding: 8px 10px;
  background: linear-gradient(to right, #FF5F1F 0%, #DDF600 100%);
  color: #fff;
  border: none;
  border-radius: 5px;
  box-shadow: rgba(44, 100, 252, 0.2) 0px 8px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}

nav .cart-profile .sign-in-btn:hover {
  background: linear-gradient(90deg, #DDF600, #FF5F1F);
  color: #222;
  box-shadow: 0 0 10px #DDF600, 0 0 16px #FF5F1F;
  transform: scale(1.07);
}

/* ===== SHOPPING CARD - DROPDOWN ===== */
.shopping-cart {
  position: fixed;
  top: 90px; /* match navbar height */
  right: 40px;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  padding: 16px;
  display: none;
  z-index: 2001;
}

.shopping-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.shopping-cart-items {
    margin-bottom: 0;
  }

  .shopping-cart .cart-item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .shopping-cart .cart-item-controls {
    margin-bottom: 12px;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 16px; /* even more space below last item */
}

.shopping-cart-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #FF5F1F;
}
.shopping-cart-items li:last-child {
  border-bottom: none;
}

.shopping-cart-items img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  margin-right: 10px;
}

.shopping-cart .item-name {
  font-size: 16px;
  flex: 1;
}

.shopping-cart .item-price {
  color: #FF5F1F;
  margin-right: 8px;
}

.shopping-cart .item-quantity {
  color: #ABB0BE;
}

.shopping-cart .button.checkout-btn {
  display: block;
  width: 12px;
  left: 8px;
  background: #FF5F1F !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  font-size: 16px !important;
  transition: background 0.2s !important;
  margin-left: auto !important;
  margin-top: 0 !important;
}

.shopping-cart .button.checkout-btn:hover {
  background: #ff7a3c !important;
}


.shopping-cart {
  position: absolute;
  top: 60px;
  right: 30px;
  width: 280px;
  background:#fff;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
  border-radius: 8px;
  display: none;
  z-index: 999;
}
.checkout-shortcut {
  position: fixed;
  right: calc(env(safe-area-inset-right, 16px));
  top: calc(env(safe-area-inset-top, 16px));
  background: #FF5F1F;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  z-index: 8000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.checkout-shortcut:active, .checkout-shortcut:focus, .checkout-shortcut:hover { transform: translateY(-1px); }
.shopping-cart-header {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.shopping-cart-header .cart-icon {
  margin-right: 0px;
  position: relative;
}

.shopping-cart-items { max-height:300px; overflow-y:auto; list-style:none; padding:10px; margin:0; }
/* removed duplicate and conflicting rule for basket item alignment */


/* ===== CONTAINER ===== */

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ===== HERO SECTION ===== */

.hero {
    background: url('pics/back.1.jpg') center center/cover no-repeat;
    min-height: 650px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    position: relative;
}

.hero-logo-container {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-logo {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* ===== HEADINGS ===== */

h1, h2, h3 {
    color: #DDF600;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 6rem;
    text-align: left;
    margin-left: 100px;
    margin-bottom: 0.1em;
    line-height: 1.05;
}

.hero h2 {
    font-size: 4rem;
    text-align: left;
    margin-left: 100px;
    margin-top: 0;
    line-height: 1.05;
}

.hero h1, .hero h2 {
  font-family: 'Nosifer', Arial, sans-serif;
  text-shadow: none;
}

/* Apply Luckiest Guy to hero headings for bold display */
.hero h1, .hero h2 {
  font-family: 'Luckiest Guy', cursive;
}

.products-title {
  text-align: center;
  font-family: 'Racing Sans One', Arial, sans-serif;
  font-size: 3rem;
  color: #FF5F1F;
  margin-bottom: 32px;
  padding-top: 64px;
  scroll-margin-top: 120px;
}

.hero-cta-btn {
  display: inline-block;
  margin-top: 62px;
  margin-left: 20%;
  padding: 18px 48px;
  font-size: 1.3rem;
  font-family: 'Racing Sans One', Arial, sans-serif;
  background: linear-gradient(90deg, #FF5F1F, #DDF600);
  color: #fff;
  border: none;
  border-radius: 40px;
  box-shadow: 0 2px 16px #FF5F1F44;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.hero-cta-btn:hover {
  background: linear-gradient(90deg, #DDF600, #FF5F1F);
  color: #222;
  transform: scale(1.08);
  text-decoration: none;
}

.neon-underline {
  position: relative;
}
.neon-underline::after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  margin: 18px auto 0 auto;
  background: linear-gradient(90deg, #FF5F1F, #DDF600);
  border-radius: 8px;
  box-shadow: 0 0 16px #FF5F1F88;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.3s; }
.fade-in:nth-child(3) { animation-delay: 0.5s; }
.fade-in:nth-child(4) { animation-delay: 0.7s; }
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: url('../pics/back.1.jpg') center center/cover no-repeat;
  will-change: transform;
  transition: transform 0.2s;
}
.hero-shade {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    left: 5px;
    top: 5px;
    background: var(--cart);
    clip-path: polygon(0 0, 14px 0, calc(14px - var(--cart-clip-x)) var(--cart-clip), var(--cart-clip-x) var(--cart-clip));
}
.hero-arrow {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  opacity: 1;
  z-index: 3;
}
.bouncy {
  animation: bounceArrow 2.2s infinite cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes bounceArrow {
  0% { transform: translateX(-50%) translateY(0); }
  15% { transform: translateX(-50%) translateY(-18px) scaleX(.8); }
  30% { transform: translateX(-50%) translateY(0) scaleY(.8); }
  45% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(0); }
}
.hero {
  overflow: hidden;
}
/* ===== LINKS ===== */

a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===== BUTTONS ===== */

.button {
    display: inline-block;
    padding: 10px 20px;
    background: #FF5F1F;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.button:hover {
    background: #DDF600;
    color: #222;
    text-decoration: none;
}



/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 12px;
    }
}

/* tighter modal for small screens */
@media (max-width: 420px) {
  .login-container { margin: 8px auto; }
  .login-card { padding: 12px; border-radius: 10px; }
  .input-wrapper input { padding: 12px; font-size: 14px; }
  .login-header h2 { font-size: 1.1rem; }
}

/* ===== LOGIN FORM ===== */

.login-modal {
  max-height: 100vh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  overflow: visible;
}
.login-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,10,15,0.85);
  z-index: 3001;
}
.login-modal .login-container {
  position: relative;
  z-index: 3002;
}
.login-container {
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 10;
  overflow: visible;
  margin: 8px auto;
}

.login-card {
  margin: 6px auto;
  background: #151520;
  border: 1px solid #2a2a35;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF5F1F, transparent);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.login-card:hover::before {
    opacity: 1;
}
.login-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 255, 136, 0.1), 0 0 40px rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}
.login-header {
  text-align: center;
  margin-bottom: 6px;
}
.logo-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
    background: linear-gradient(135deg, #000, #DDF600);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px #FF5F1F);
    animation: pulse 2s ease-in-out infinite alternate;
}
.login-header h2 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.login-header p {
  color: #a0a0b0;
  font-size: 14px;
  font-weight: 400;
}
.form-group {
  margin-bottom: 12px;
    position: relative;
}
.input-wrapper {
  position: relative;
  margin-bottom: 0;
  z-index: 2;
  background: #1a1a25;
}
.input-wrapper input {
  width: 95%;
  max-width: 340px;
  box-sizing: border-box;
  background: #1a1a25;
  border: 1px solid #2a2a35;
  border-radius: 6px;
    padding: 14px 16px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.input-wrapper input:focus {
    border-color: #FF5F1F;
    background: rgba(26, 26, 37, 0.8);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1), 0 4px 20px rgba(0, 255, 136, 0.1);
}
.input-wrapper input:focus + label,
.input-wrapper input:valid + label {
    transform: translateY(-44px) translateX(4px) scale(0.85);
    color: #FF5F1F;
    font-weight: 500;
}
.input-wrapper label {
  position: absolute;
  left: 24px;
  top: 24px;
    color: #a0a0b0;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    transform-origin: left top;
}
.input-line {
    display: block;
    background: #FF5F1F;
}
.input-wrapper input:focus ~ .input-line {
    width: 100%;
}
.password-wrapper input {
    padding-right: 50px;
}
.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #a0a0b0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
}
.password-toggle:hover {
    color: #FF5F1F;
    background: rgba(0, 255, 136, 0.1);
}
.toggle-icon {
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 8px;
}
.remember-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.remember-wrapper input[type="checkbox"] {
    display: none;
}
.custom-checkbox {
    width: 16px;
    height: 16px;
    border: 2px solid #2a2a35;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.custom-checkbox::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #FF5F1F;
    border-radius: 1px;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.remember-wrapper input[type="checkbox"]:checked + .checkbox-label .custom-checkbox {
    border-color: #FF5F1F;
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}
.remember-wrapper input[type="checkbox"]:checked + .checkbox-label .custom-checkbox::after {
    transform: scale(1);
}
.checkbox-label {
    color: #a0a0b0;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.remember-wrapper:hover .checkbox-label {
    color: #ffffff;
}
.forgot-password {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.forgot-password:hover {
    color: #FF5F1F;
}
.login-btn {
    width: 100%;
    background: linear-gradient(135deg, #DDF600, #FF5F1F);
    border: none;
    border-radius: 6px;
    padding: 24px 32px;
    color: #0a0a0f;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3), 0 0 40px rgba(0, 255, 136, 0.2);
}
.login-btn:hover .btn-glow {
    left: 100%;
}
.login-btn:active {
    transform: translateY(0);
}
.login-btn.loading {
    pointer-events: none;
}
.btn-text {
    transition: opacity 0.3s ease;
}
.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #0a0a0f;
    border-radius: 50%;
    opacity: 0;
    animation: spin 1s linear infinite;
    transition: opacity 0.3s ease;
}
.login-btn.loading .btn-text {
    opacity: 0;
}
.login-btn.loading .btn-loader {
    opacity: 1;
}
.divider {
    text-align: center;
    margin: 32px 0 24px;
    position: relative;
}
.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2a2a35, transparent);
    transform: translateY(-50%);
}
.divider span {
    background: #151520;
    color: #a0a0b0;
    padding: 0 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}
.social-login {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.social-btn {
    background: #1a1a25;
    border: 1px solid #2a2a35;
    border-radius: 6px;
    padding: 16px 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.social-btn:hover {
    background: rgba(26, 26, 37, 0.8);
    border-color: #FF5F1F;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
}
.social-icon {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.google-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='%23ea4335' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/%3e%3cpath fill='%2334a853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3e%3cpath fill='%23fbbc05' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3e%3cpath fill='%23ea4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3e%3c/svg%3e");
}
.apple-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z'/%3e%3c/svg%3e");
}
.signup-link {
    text-align: center;
}
.signup-link p {
    color: #a0a0b0;
    font-size: 14px;
}
.signup-link a {
    color: #FF5F1F;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.signup-link a:hover {
    color: #FF5F1F;
    text-shadow: 0 0 10px rgba(0, 153, 255, 0.5);
}
.error-message {
  color: #ff0080;
  font-size: 12px;
  font-weight: 500;
  margin-top: 8px;
  margin-left: 2px;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 0, 128, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 0, 128, 0.2);
}
.error-message::before, .error-message::after {
  display: none !important;
  content: none !important;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}
.form-group.error .input-wrapper input {
    border-color: #ff0080;
    background: rgba(255, 0, 128, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 0, 128, 0.1);
    animation: shake 0.5s ease-in-out;
}
.success-message {
    display: none;
    text-align: center;
    padding: 40px 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.success-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff88, #FF5F1F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  color: #ff0080;
  font-size: 12px;
  font-weight: 500;
  margin-top: 8px;
  margin-left: 2px;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 0, 128, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 0, 128, 0.2);
    color: #a0a0b0;
    font-size: 16px;
}
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1), transparent 70%);
    animation: float 6s ease-in-out infinite;
}
.glow-orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08), transparent 70%);
    animation-delay: 0s;
}
.glow-orb-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.06), transparent 70%);
    animation-delay: -2s;
}
.glow-orb-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.04), transparent 70%);
    animation-delay: -4s;
}
@keyframes pulse {
    from { filter: drop-shadow(0 0 20px #FF5F1F); }
    to { filter: drop-shadow(0 0 30px #FF5F1F); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-10px); }
}
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}
@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
@media (max-width: 480px) {
    .login-card {
        padding: 24px;
        margin: 10px;
    }
    .login-header h2 {
        font-size: 1.75rem;
    }
    .input-wrapper input {
        padding: 16px;
    }
    .password-wrapper input {
        padding-right: 45px;
    }
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .glow-orb {
        opacity: 0.5;
    }
}

/* ===== PRODUCTS SECTION - HOME PAGE ===== */

.products {
  display: flex;
  justify-content: center;
  gap: 2rem; /* default gap between cards */
  margin: 60px auto 40px auto;
  padding: 0 20px;
}

/* If the products container contains IONOS single-product widgets, make them tighter */
.products .ecsp {
  margin: 0 8px;
  padding: 0;
}
.products[data-tight='1'] { gap: 12px; }

.product-card {
  max-width: 270px;
  min-width: 0;
  width: 100%;
  margin: 0; /* remove all margin for home page cards */
  background: #fff;
  border-radius: 1.2em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 1.2em 1em 1.5em 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 32px rgba(255,95,31,0.28);
  z-index: 2;
}
.product-img {
  background: #ddd;
  height: 180px;
  width: 180px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px #DDF60033;
}
.card-content {
  width: 100%;
  padding: 0.7em 1em 0.7em 1em;
  box-sizing: border-box;
}
.product-title {
  font-family: 'Fugaz One', Arial, sans-serif;
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 8px;
}
.product-size {
  margin-bottom: 0.7em;
  margin-top: 0.2em;
  padding: 0 0.2em;
  font-size: 0.75rem;
  color: #FF5F1F;
  font-weight: bold;
}
.price-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7em;
  padding: 0 0.2em;
}
.card h3, .product-card h3 {
  margin: 0.5em 0 0.5em 0;
  padding: 0 0.2em;
}
.product-price {
  font-size: 1.15rem;
  color: #222;
  font-weight: bold;
  position: absolute;
  left: 18px;
  bottom: 18px;
}
.buy-btn {
  background: linear-gradient(90deg, #FF5F1F, #DDF600);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1rem;
  font-family: 'Fugaz One', Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 2px 8px #FF5F1F33;
  transition: background 0.2s, transform 0.2s;
}
.buy-btn:hover {
  background: linear-gradient(90deg, #DDF600, #FF5F1F);
  color: #222;
  transform: scale(1.08);
}

.see-more-wrapper {
  display: flex;
  justify-content: center;
  margin: 60px 0 30px 0;
}
.see-more-btn {
  background: #FF5F1F;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 38px;
  font-size: 1.1rem;
  font-family: 'Fugaz One', Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 2px 8px #FF5F1F33;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.see-more-btn:hover {
  background: #d94c13;
  color: #fff;
  transform: scale(1.08);
  text-decoration: none;
}

/* ===== WHY US SECTION ===== */

.why-us-container {
  background: #222;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44,100,252,0.08), 0 1.5px 8px #FF5F1F22;
  max-width: 950px;
  margin: 100px auto 80px auto;
  padding: 48px 28px;
  text-align: left;
  min-height: 500px;
  scroll-margin-top: 120px;
}
.why-us-title {
  font-family: 'Fugaz One', Arial, sans-serif;
  font-size: 2rem;
  color: #FF5F1F;
  margin-bottom: 18px;
  padding-bottom: 16px;
  text-align: center;
}
.why-us-lead {
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 24px;
  padding-bottom: 24px;
  text-align: center;
}
.why-us-text {
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.7;
}
.why-us-call {
  font-size: 2rem;
  color: #DDF600;
  font-family: 'Fugaz One', Arial, sans-serif;
  font-weight: bold;
  margin-top: 24px;
  padding-top: 16px;
  text-align: center;
  line-height: 1.7;
}

.meet-us-wrapper {
  display: flex;
  justify-content: center;
  margin: 60px 0 30px 0;
}
.meet-us-btn {
background: #FF5F1F;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 38px;
  font-size: 1.1rem;
  font-family: 'Fugaz One', Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 2px 8px #FF5F1F33;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.meet-us-btn:hover {
  background: #d94c13;
  color: #fff;
  transform: scale(1.08);
  text-decoration: none;
}

/* ===== TESTIMONIALS  ===== */

.testimonials-container {
  max-width: 900px;
  margin: 60px auto 40px auto;
  padding: 36px 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44,100,252,0.08), 0 1.5px 8px #FF5F1F22;
  text-align: left;
}
.testimonials-title {
  font-family: 'Fugaz One', Arial, sans-serif;
  font-size: 2rem;
  color: #FF5F1F;
  margin-bottom: 24px;
  text-align: center;
}
.testimonials-scroll {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}
.testimonial-card {
  min-width: 260px;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #DDF60022;
  padding: 28px 20px 20px 20px;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #222;
  border: none;
}
.testimonial-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px #FF5F1F33, 0 2px 12px #DDF60044;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px #FF5F1F22;
}
.testimonial-text {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.5;
}
.testimonial-name {
  font-size: 1rem;
  color: #DDF600;
  font-family: 'Fugaz One', Arial, sans-serif;
  font-weight: bold;
}

/* ===== SUBSCRIBE FORM ===== */

.subscription-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px 0 48px 0;
  position: relative;
  z-index: 10;
}
.subscription-content {
  width: 500px;
  height: 50px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, .2);
  border-radius: 60px;
  overflow: hidden;
  background: #fff;
}
.subscription {
  position: relative;
  width: 100%;
  height: 100%;
}
.subscription .add-email {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 20px;
  font-size: 1rem;
  border-radius: 60px 0 0 60px;
  background: transparent;
  color: #222;
}
.subscription .submit-email {
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% - 2px);
  width: 100px;
  border: none;
  border-radius: 60px;
  outline: none;
  margin: 1px;
  padding: 0 20px;
  cursor: pointer;
  background: #FF5F1F;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  transition: width .35s ease-in-out, background .35s ease-in-out;
  overflow: hidden;
  text-align: center;
}
.subscription.done .submit-email {
  width: 500px;
  background: #C0E02E;
}
.subscription .submit-email .before-submit,
.subscription .submit-email .after-submit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: visibility .35s ease-in-out, opacity .35s ease-in-out;
}
.subscription.done .submit-email .before-submit,
.subscription:not(.done) .submit-email .after-submit {
  visibility: hidden;
  opacity: 0;
}
.subscription .submit-email .after-submit {
  transition-delay: .35s;
}
body.modal-open .navbar {
  position: static !important;
}

/* When a modal is open, hide the navbar visually and prevent interaction */
body.modal-open .navbar,
body.modal-open .navbar * {
  visibility: hidden;
  pointer-events: none;
}

/* Desktop: keep original behavior; hide the mobile-only close button by default */
.login-modal .close-btn { display: none; }

/* Mobile-only: immediate hide of navbar and modal scrolling/close button */
@media (max-width: 900px) {
  /* When a modal is open, hide the navbar visually and prevent interaction */
  body.modal-open .navbar,
  body.modal-open .navbar * {
    visibility: hidden;
    pointer-events: none;
  }

  /* Force immediate hide: remove transitions and opacity */
  body.modal-open .navbar {
    transition: none !important;
    opacity: 0 !important;
  }

  /* Lock background scrolling while modal is open (mobile-only) */
  body.modal-open {
    overflow: hidden !important;
    height: 100vh; /* prevent iOS overscroll */
  }

  /* Ensure the modal itself can scroll inside the viewport */
  .login-modal {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .login-modal .login-container {
    max-height: calc(100vh - 48px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Mobile-visible close button */
  .login-modal .close-btn {
  display: inline-flex;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: none;
  padding: 0;
  z-index: 3010; /* above modal container */
  cursor: pointer;
  }
  .login-modal .close-btn:focus { outline: 2px solid rgba(255,255,255,0.12); }
}

/* Mobile-only tweaks: make login modal more compact so it fits better on small screens */
@media (max-width: 900px) {
  .login-modal .login-container {
    margin: 12px auto;
    max-width: 360px;
    padding: 8px;
  }
  .login-card {
    margin: 6px auto;
    background: #151520;
    padding: 12px 14px;
    border-radius: 10px;
  }
  /* Center logo and place heading below it */
  .login-header { padding: 6px 6px 4px 6px; display:block; text-align:center; }
  .logo-icon { display:block; margin: 0 auto 6px auto; }
  .logo-icon img { width:56px; height:56px; display:block; margin:0 auto; }
  .login-header h2 { font-size: 16px; margin: 0 0 6px 0; }
  .form-group { margin-bottom: 8px; }
  .input-wrapper input { padding: 10px 10px; font-size: 14px; }
  .input-wrapper input { text-align: center; }
  .login-btn { padding: 10px 12px; font-size: 15px; }
  .form-options { margin-bottom: 6px; }
  .login-modal .close-btn { top: 8px; right: 8px; width:38px; height:38px; }
  /* Reduce gap after sign-in button */
  .login-btn { margin-bottom: 6px; }
  .login-card .divider, .login-card .signup-link { margin-top: 6px; }
  /* Center labels above inputs on mobile */
  .input-wrapper label {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 10px !important;
    text-align: center;
  }
  .input-wrapper input:focus + label,
  .input-wrapper input:valid + label {
  transform: translateY(-44px) translateX(-50%) scale(0.85) !important;
  left: 50% !important;
  /* hide floating label on mobile when focused/valid */
  opacity: 0 !important;
  visibility: hidden !important;
  }
}

/* ===== FOOTER ===== */

.footer {
  background-color: #24262b;
  color: #fff;
  padding: 0px 0 0px 0;
  font-family: 'Poppins', sans-serif;
}
.footer .container {
  max-width: 1170px;
  margin: auto;
  background: none;
}
.footer .row {
  display: flex;
  flex-wrap: wrap;
}
.footer-col {
  width: 25%;
  padding: 0 0px;
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 18px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #FF5F1F;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #bbbbbb;
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #FF5F1F;
  padding-left: 8px;
}
.footer-col .social-links a {
  color: #FF5F1F;
  transition: color 0.2s, transform 0.2s;
  margin-right: 12px;
}
.footer-col .social-links a:last-child {
  margin-right: 0;
}
.footer-col .social-links a i,
.footer-col .social-links a svg {
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  transition: transform 0.2s;
}
.footer-col .social-links a:hover i,
.footer-col .social-links a:hover svg {
  transform: scale(1.2);
}
.footer-col ul li strong {
  color: #fff;
}

/* Responsive footer
   - Desktop: 4 columns (default)
   - Tablet/smaller screens: 2 columns
   - Very small phones: 1 column stacked
*/
@media (max-width: 900px) {
  .footer .footer-col { width: 50%; padding: 0 12px 18px 12px; }
  .footer .row { gap: 12px; }
}

@media (max-width: 320px) {
  .footer .footer-col { width: 100%; padding: 0 8px 14px 8px; }
}

/* Also apply centered two-column layout for slightly larger phones (e.g. iPhone 14 Plus ~428px) */
@media (max-width: 440px) {
  .footer .row { display: flex !important; flex-wrap: wrap !important; justify-content: center !important; gap: 14px !important; }
  .footer .footer-col { width: calc(50% - 18px) !important; box-sizing: border-box !important; padding: 10px !important; margin: 0 !important; }
  .footer .container { padding-left: 8px !important; padding-right: 8px !important; }
  /* Slight navbar/logo adjustments for 428px+ phones */
  .navbar { height: 78px; padding: 0 12px; }
  .navbar .nav-tabs { gap: 14px; }
  .navbar-logo { width: 88px; height: 88px; }
}

/* Strong mobile override: ensure two columns on small phones (<=420px) */
@media (max-width: 420px) {
  .footer .row { display: flex !important; flex-wrap: wrap !important; justify-content: center !important; gap: 12px !important; }
  /* Use a calc width with gap so two columns are centered instead of left-aligned */
  .footer .footer-col { width: calc(50% - 16px) !important; box-sizing: border-box !important; padding: 8px !important; margin: 0 !important; }
  .footer .container { padding-left: 6px !important; padding-right: 6px !important; }
}

.footer-copyright {
  text-align: center;
  color: #bbbbbb;
  font-size: 0.75rem;
  margin-top: 32px;
}

/* IONOS footer-link styles (scoped to products area) */
.products .ec-footer__row {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}
.products .ec-footer__row {
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}
.products .ec-footer__cell {
  display: block;
}
.products .ec-footer__cell {
  display: inline-flex !important;
  align-items: center !important;
}

/* Strong override: when the IONOS widget applies responsive stacking, force inline layout here */
.products [class*="ec-footer__row"] {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  white-space: nowrap !important;
}
.products [class*="ec-footer__row"] > li,
.products [class*="ec-footer__row"] > * {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
}
.products [class*="ec-footer__row"] a {
  display: inline-flex !important;
  flex-direction: column !important; /* icon above text */
  gap: 6px !important;
  align-items: center !important;
  text-align: center !important;
}

/* Ensure each cell stacks icon above label while the list remains horizontal */
.products [class*="ec-footer__row"] > * {
  flex-direction: column !important;
  justify-content: center !important;
}

/* small screens: allow wrap if needed but keep items centered */
@media (max-width: 420px) {
  .products [class*="ec-footer__row"] { flex-wrap: wrap !important; gap: 12px !important; }
  .products [class*="ec-footer__row"] > * { width: calc(33% - 12px) !important; }
}

/* Strong inline-row enforcement for IONOS quick-links */
/* Scoped to the products grid (id used where available) */
#phpProductsGrid .ec-footer__row,
.products .ec-footer__row,
.products [class*="ec-footer__row"] {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  justify-content: center !important;
  align-items: flex-start !important;
  width: auto !important;
}

#phpProductsGrid .ec-footer__row > li,
.products .ec-footer__row > li,
.products [class*="ec-footer__row"] > li,
.products [class*="ec-footer__row"] > * {
  display: inline-flex !important;
  flex-direction: column !important; /* icon top, text below */
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#phpProductsGrid .ec-footer__row a,
.products .ec-footer__row a,
.products [class*="ec-footer__row"] a {
  display: inline-flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  align-items: center !important;
  text-align: center !important;
  width: auto !important;
}

/* If the widget injects width:100% on inner wrappers, neutralize it */
.products .ec-footer__row [style],
.products .ec-footer__row *[style] {
  max-width: none !important;
  width: auto !important;
}

/* Global strong fallback: target any ec-footer__row elements (ul or div) in case widget structure varies */
.ec-footer__row,
ul.ec-footer__row,
div.ec-footer__row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  align-items: flex-start !important;
  justify-content: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 18px 0 !important;
  width: auto !important;
}
.ec-footer__row > li,
ul.ec-footer__row > li,
.ec-footer__row > * {
  display: inline-flex !important;
  flex-direction: column !important; /* icon above text */
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.ec-footer__row a {
  display: inline-flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  align-items: center !important;
  text-align: center !important;
  width: auto !important;
}

.products .ec-footer__link,
.products .ec-link {
  display: inline-flex;
  flex-direction: row; /* icon left, text right */
  align-items: center;
  gap: 10px;
  color: #6b7280; /* muted */
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px;
}
.products .ec-footer__link:hover,
.products .ec-link:hover {
  color: #FF5F1F;
}
.products .ec-link--muted { color: #9ca3af; }
.products .link--icon-top { flex-direction: row; }
.products .link--icon-top .svg-icon { display: inline-flex; align-items: center; justify-content: center; }
.products .svg-icon { width: 22px; height: 22px; color: inherit; flex: 0 0 auto; }
.products .signInSvgIconView svg { width: 22px; height: 22px; display: block; }

/* small-screen tweak: make icons a bit larger for touch */
@media (max-width: 480px) {
  .products .svg-icon { width: 26px; height: 26px; }
  .products .ec-footer__link { font-size: 15px; }
}



/* Product Details Page */

/* filters removed */

/* ===== PRODUCTS GRID ===== */

.grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 3rem; /* more spacing between cards */
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  justify-content: center;
}



/* ===== PRODUCT CARD ===== */

.card, .product-card {
  background: white;
  border-radius: 15px; /* rounder like Tailwind */
  overflow: hidden; /* for rounded top image */
  box-shadow: 0 2px 12px rgba(255,95,31,0.13);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 250px;
}

.card:hover, .product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(255,95,31,0.28);
}

/* ===== IMAGE ===== */

.card img {
  width: 100%;
  height: 360px; /* bigger image */
  object-fit: cover;
}

/* ===== CARD CONTENT ===== */

.card .brand {
  display: block;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  margin: 10px 0 5px 0;
}

.card h3 {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.card-content {
  width: 100%;
  padding: 0.7em 1em 0.7em 1em;
  box-sizing: border-box;
}

.price-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7em;
  padding: 0 0.2em;
}

.product-size {
  margin-bottom: 0.7em;
  margin-top: 0.2em;
  padding: 0 0.2em;
}

.card h3, .product-card h3 {
  margin: 0.5em 0 0.5em 0;
  padding: 0 0.2em;
}

/* ===== ADD TO CART ICON ===== */

.card .add-to-cart {
  margin-left: auto;
  background: #333;
  border: none;
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .add-to-cart svg {
  fill: white;
}


/* ===== NEW ADD TO CART BUTTON ===== */

.add-to-cart {
  overflow: visible;
  --background-default: #17171B;
  --background-hover: #0A0A0C;
  --background-scale: 1;
  --text-color: #fff;
  --text-o: 1;
  --text-x: 12px;
  --cart: #fff;
  --cart-x: -48px;
  --cart-y: 0px;
  --cart-rotate: 0deg;
  --cart-scale: .75;
  --cart-clip: 0px;
  --cart-clip-x: 0px;
  --cart-tick-offset: 10px;
  --cart-tick-color: #FF328B;
  --shirt-y: -8px;
  --shirt-scale: 0;
  --shirt-color: #17171B;
  --shirt-logo: #fff;
  --shirt-second-y: 24px;
  --shirt-second-color: #fff;
  --shirt-second-logo: #17171B;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background: none;
  border: none;
  padding: 10px 0;
  width: 120px;
  margin: 0;
  cursor: pointer;
  position: relative;
  font-family: inherit;
}
.add-to-cart:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  transition: background .25s;
  background: var(--background, var(--background-default));
  transform: scaleX(var(--background-scale)) translateZ(0);
}
.add-to-cart:not(.active):hover {
  --background: var(--background-hover);
}
.add-to-cart span {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  color: var(--text-color);
  opacity: var(--text-o);
  transform: translateX(var(--text-x)) translateZ(0);
}
.add-to-cart svg {
  display: block;
  width: var(--svg-width, 24px);
  height: var(--svg-height, 24px);
  position: var(--svg-position, relative);
  left: var(--svg-left, 0);
  top: var(--svg-top, 0);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.add-to-cart svg path {
  fill: var(--svg-fill, none);
  stroke: var(--svg-stroke, none);
  stroke-width: var(--svg-stroke-width, 2);
}
.add-to-cart .morph {
  --svg-width: 24px;
  --svg-height: 18px;
  --svg-stroke: var(--cart);
  --svg-position: absolute;
  --svg-fill: var(--background, var(--background-default));
  transition: fill .25s;
  pointer-events: none;
  margin-left: -32px;
}
.add-to-cart .shirt,
.add-to-cart .sock,
.add-to-cart .cart {
  pointer-events: none;
  position: absolute;
  left: 50%;
}

.add-to-cart .sock {
  position: absolute;
  left: 50%;
  margin: -8px 0 0 -8px;
  top: 0;
  transform-origin: 50% 100%;
  transform: translateY(var(--shirt-y)) scale(var(--shirt-scale));
  z-index: 10;
}

.add-to-cart .sock svg {
  --svg-fill: var(--shirt-color);
  z-index: 10;
}
.add-to-cart .sock svg g {
  --svg-fill: var(--svg-g-fill, var(--shirt-logo));
}
.add-to-cart .sock svg.second {
  --svg-fill: var(--shirt-second-color);
  --svg-g-fill: var(--shirt-second-logo);
  --svg-position: absolute;
  clip-path: polygon(0 var(--shirt-second-y), 24px var(--shirt-second-y), 24px 24px, 0 24px);
}
.add-to-cart .cart {
  --svg-width: 24px;
  --svg-height: 18px;
  --svg-stroke: var(--cart);
  --cart: #fff;
  top: 55%;
  margin-left: -8px;
  transform: translate(var(--cart-x), calc(var(--cart-y) - 55%)) rotate(var(--cart-rotate)) scale(var(--cart-scale)) translateZ(0);
}

.add-to-cart .cart:before {
  content: '';
  position: absolute;
  display: block;
  width: 14px;
  height: 8px;
  left: 5px;
  top: 5px;
  background: transparent;
  clip-path: none;
  z-index: 0;
}

.add-to-cart.active .cart:before {
  background: #fff;
  clip-path: polygon(0 0, 14px 0, calc(14px - var(--cart-clip-x)) var(--cart-clip), var(--cart-clip-x) var(--cart-clip));
  width: 14px;
  left: 5px;
  z-index: 0;
}


.add-to-cart .cart path.wheel {
  --svg-stroke-width: 1.5;
}

.add-to-cart .cart path.tick {
  stroke: none;               /* hide the tick initially */
  stroke-width: 1.2;      
  stroke-dasharray: 6px;
  stroke-dashoffset: 6px;
  transition: stroke-dashoffset 0.3s ease, stroke 0.1s ease;
}

.add-to-cart.active .cart path.tick {
  stroke: var(--cart-tick-color); /* show red tick */
  stroke-dashoffset: 0;           /* animate tick */
}




/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT US PAGE ===== */


:root {
  --orange: #ff6a00;
  --neon: #ccff00;
  --bg: #111;
  --muted: #bdbdbd;
  --card: #1e1e1e;
}

/* Hero */
.hero-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 80px 32px;
  background: url('pics/back2.png') center center/cover no-repeat;
  border-radius: 48px;
  max-width: 1100px;
  min-height: 700px;
  margin: 60px auto 0 auto;
}
.hero-about-text {
  max-width: 900px;
  margin: 0 auto 24px auto;
  text-align: center;
}
.hero-about-text h1 {
  font-size: 60px;
  font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #DDF600;
  text-align: center;
    margin-bottom: 70px;

}
.hero-about-text p {
  font-size: 30px;
  color: #000000;
  font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-style: normal;
  max-width: 900px;
  text-align: center;
   line-height: 1.5;

}
.hero-about-img img {
  width: 100%;
  max-width: 1200px;
  height: 700px;
  object-fit: cover;
  border-radius: 48px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

/* Mission */
.mission {
  padding: 60px 20px;
  text-align: center;
  background: var(--card);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1100px;
}
.mission h2 {
  font-family: 'Fredoka One';
  font-size: 32px;
  color: var(--neon);
  margin-bottom: 40px;
}
.mission-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.mission-card {
  background: #222;
  border-radius: 14px;
  padding: 20px;
  max-width: 280px;
  text-align: center;
}
.mission-card img {
  width: 60px;
  margin-bottom: 12px;
}
.mission-card h3 {
  color: var(--orange);
  margin: 10px 0;
}
.mission-card p {
  color: var(--muted);
  font-size: 15px;
}

/* Gallery */
.gallery {
  padding: 60px 20px;
  text-align: center;
}
.gallery h2 {
  font-family: 'Fredoka One';
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 30px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: transform 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}


/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-img img {
    width: 200px;
  }
  .mission-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== MOBILE IMPROVEMENTS ===== */
/* Improve layout for small phones (<= 420px) and generally make touch targets larger */
@media (max-width: 420px) {
  /* NAVBAR: compact, centered logo, hide long nav labels for small screens */
  .navbar {
    height: 64px;
    padding: 0 12px;
    align-items: center;
    gap: 8px;
  }
  .navbar .navbar-logo { width: 64px; height: 64px; }
  .navbar .nav-tabs { gap: 10px; justify-content: flex-end; }
  .navbar .nav-tabs a { font-size: 1rem; padding: 6px 8px; }

  /* Make cart/profile align and increase hit area */
  nav .cart-profile { gap: 12px; }
  .cart-profile .sign-in-btn, .cart-profile .account-btn { padding: 8px 10px; font-size: 0.95rem; }

  /* HERO: stack and reduce huge fonts */
  /* move headings slightly higher by increasing top padding and reducing bottom padding */
  .hero { min-height: 360px; padding: 56px 12px 28px 12px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; position: relative; }
  .hero-logo-container { position: absolute; top: 12px; right: 12px; transform: none; }
  .hero-logo { width: 120px; height: 120px; }
  /* Hide hero logo and center content on phones */
  .hero-logo-container { display: none; }
  .hero h1 { font-size: 2.6rem; margin: 12px 0 8px 0; text-align: center; }
  .hero h2 { font-size: 1.9rem; margin: 0 0 18px 0; text-align: center; }
  .hero-cta-btn { display:block; margin: 0 auto; margin-top: 56px; padding: 12px 22px; font-size: 1rem; }
  /* ensure this mobile spacing wins over other rules */
  .hero .hero-cta-btn {
    margin-top: 64px !important;
    padding: 12px 28px !important;
  }
  /* Highest-specificity rule for the anchor in the hero header */
  header.hero > a.hero-cta-btn {
    margin-top: 80px !important;
  }
  /* restore centered absolute arrow (placed at bottom of hero) */
  .hero-arrow { position: absolute; left: 50%; transform: translateX(-50%); bottom: 18px; display: block; margin: 0; z-index: 3; }

  /* Slightly larger hero text on phones and smaller arrow */
  .hero h1 { font-size: 3.2rem; }
  .hero h2 { font-size: 2.2rem; margin-bottom: 20px; }
  .hero-arrow { width: 20px; height: 20px; }

  /* PRODUCTS: single column, bigger images and buttons */
  .products { flex-direction: column; gap: 18px; margin: 24px auto; padding: 0 12px; }
  .product-card, .card { width: 100%; max-width: 100%; }
  .product-img, .card img { width: 100%; height: auto; max-height: 320px; }
  .card .card-content { padding-bottom: 56px; }
  .buy-btn, .add-to-cart { padding: 14px 18px; font-size: 1rem; border-radius: 10px; }

  /* SHOPPING CART: full-width modal-like panel on phones */
  /* On small phones show cart near top under navbar, not pinned to bottom */
  /* flush to right edge, respecting safe-area inset on iPhone */
  /* flush fully to the right edge (safe-area handled by padding inside) */
  .shopping-cart { position: fixed !important; right: 0 !important; margin-right: 0 !important; left: auto !important; top: calc(env(safe-area-inset-top, 0px) + 72px) !important; bottom: auto !important; width: 320px !important; max-height: 60vh; overflow-y: auto; padding: 14px; border-radius: 8px; z-index: 5002; }
  .shopping-cart-header { padding: 8px 6px; }
  .shopping-cart-items img { width: 48px; height: 48px; }
  /* center checkout button inside the cart on phones */
  /* center checkout action even if inline style exists */
  .shopping-cart > div[style] { display: flex !important; justify-content: center !important; }
  .shopping-cart > div[style] a.button { margin: 0 auto !important; display: inline-block !important; }

  /* FOOTER stacking handled by broader breakpoints above */

  /* Forms and inputs: larger touch targets */
  input[type="email"], input[type="text"], input[type="password"] { font-size: 16px; padding: 12px; }
  .login-btn, .apply-btn, .place-order-btn, .submit-email { padding: 14px 18px; font-size: 16px; }

  /* Gallery: reduce height for small screens */
  .gallery-grid img { height: 180px; }

  /* Ensure hero-about scales down */
  .hero-about { padding: 48px 16px; min-height: auto; }
  .hero-about-text h1 { font-size: 28px; margin-bottom: 22px; }
  .hero-about-text p { font-size: 16px; }
  /* Remove rounding on about-page panels/images for phones */
  .hero-about, .hero-about-img img, .mission, .mission-card, .gallery-grid img { border-radius: 0 !important; box-shadow: none !important; }
}

/* Mid-size phones (e.g. iPhone 14 Plus ~428px) — show two columns on home products */
@media (min-width: 381px) and (max-width: 440px) {
  .products { display: flex !important; flex-wrap: wrap !important; justify-content: center !important; gap: 14px !important; flex-direction: row !important; margin: 28px auto !important; padding: 0 12px !important; }
  /* Target IONOS single-product wrapper and our product-card fallback */
  .products .ecsp, .products .product-card, .products .card { width: calc(50% - 18px) !important; max-width: 260px !important; box-sizing: border-box !important; }
  .products .ecsp { margin: 0 !important; }
  .product-img, .card img { width: 100% !important; height: auto !important; max-height: 260px !important; }
}

/* Broader mobile breakpoint: apply centered hero layout on larger phones/tablets */
@media (max-width: 900px) {
  .hero-logo-container { display: none; }
  /* Center content within the hero background */
  .hero { align-items: center !important; padding: 40px 12px !important; }
  .hero h1, .hero h2 { width: 100%; display:block; }
  /* Force center and remove left margins that are set for desktop */
  .hero h1 {
    text-align: center !important;
    font-size: 2.6rem !important;
    margin: 12px 0 8px !important;
    margin-left: 0 !important;
  }
  .hero h2 {
    text-align: center !important;
    font-size: 1.9rem !important;
    margin: 0 0 12px !important;
    margin-left: 0 !important;
  }
  .hero-cta-btn { display: block; margin: 0 auto; margin-top: 12px; }
  .hero-arrow { display: block; width: 28px; height: 28px; bottom: 18px; left: 50%; transform: translateX(-50%); }
  /* force button lower on larger phone widths */
  .hero .hero-cta-btn { margin-top: 64px !important; }
  /* show the shopping cart near top-right under the navbar on larger phones */
  .shopping-cart { position: fixed !important; top: calc(env(safe-area-inset-top, 0px) + 72px) !important; right: 20px !important; left: auto !important; bottom: auto !important; width: 320px !important; z-index: 5002; }
  /* center checkout action on broader phones/tablets */
  .shopping-cart > div[style] { display: flex !important; justify-content: center !important; }
  .shopping-cart > div[style] a.button { margin: 0 auto !important; display: inline-block !important; }
  /* add higher-specificity fallback */
  header.hero > a.hero-cta-btn { margin-top: 70px !important; }
  /* About page adjustments: remove rounding on larger phones/tablets */
  .hero-about, .hero-about-img img, .mission, .mission-card, .gallery-grid img { border-radius: 0 !important; box-shadow: none !important; }
}

/* Simple, classic mobile hamburger menu */
@media (max-width: 900px) {
  .navbar {
    height: 64px;
    padding: 0 12px;
    position: sticky;
    top: 0;
  z-index: 4000; /* raise navbar above overlay */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* basic hamburger at left (positioned inside navbar so it scrolls with it) */
  .navbar .hamburger {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    z-index: 5001; /* keep on top of menu and overlay */
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    backdrop-filter: blur(4px);
  }
  .navbar .hamburger .bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #222;
    border-radius: 2px;
    position: relative;
    transition: transform .25s ease, opacity .2s ease;
  }
  .navbar .hamburger .bar::before,
  .navbar .hamburger .bar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: #222;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
  }
  .navbar .hamburger .bar::before { top: -7px; }
  .navbar .hamburger .bar::after { top: 7px; }

  /* center logo vertically and horizontally inside the navbar so it never drops below the navbar */
  .navbar .logo { position: absolute; left: 50%; transform: translate(-50%, -50%); top: 50%; z-index: 3001; height: 100%; display: flex; align-items: center; }

  /* Prevent logo from overflowing the navbar: keep it constrained to navbar height */
  .navbar .navbar-logo {
    height: 48px !important; /* fits within 64px navbar with comfortable padding */
    width: auto !important;
    max-height: 56px !important;
    transition: none !important;
    position: relative !important;
    top: 0 !important;
    margin-top: 0 !important;
    display: block !important;
  }
  .navbar.scrolled .navbar-logo {
    height: 48px !important;
    width: auto !important;
    margin-top: 0 !important;
  }

  

  /* right-side actions */
  .navbar .nav-actions { position: absolute; right: 12px; top: 16px; z-index: 3001; }

  /* overlay full-screen */
  .menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); opacity: 0; pointer-events: none; transition: opacity 200ms ease; z-index: 3000; }
  .menu-overlay.show { opacity: 1; pointer-events: auto; }

  /* full-screen menu panel (hidden by default by transform) */
  .navbar .nav-tabs {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: calc(env(safe-area-inset-top, 0px) + 64px);
    transform: translateY(-100%);
    transition: transform 280ms ease;
  z-index: 4002; /* sit above overlay but below hamburger */
    overflow-y: auto;
  }

  /* menu items stacked center-left (classic) */
  .navbar .nav-tabs a {
    display: block;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 18px;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    text-align: left;
  }

  /* open state: slide menu down into view and show overlay */
  .navbar.open .nav-tabs { transform: translateY(0); }
  .navbar.open .hamburger .bar { background: transparent; }
  .navbar.open .hamburger .bar::before { transform: translateY(7px) rotate(45deg); }
  .navbar.open .hamburger .bar::after { transform: translateY(-7px) rotate(-45deg); }

  /* prevent page scroll while menu open */
  body.menu-open { overflow: hidden; }
}

/* Tweak breakpoint for medium phones/tablets */
@media (max-width: 900px) and (min-width: 421px) {
  .hero h1 { font-size: 3.6rem; }
  .hero h2 { font-size: 2.2rem; }
  .products { gap: 16px; padding: 0 18px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
}

/* Make backgrounds square (no rounded corners) across pages per request
   Keep avatar/logo circles intact by excluding img, .avatar, .logo, and .hero-logo */
/* This targets common panel/card classes used site-wide */
.card, .product-card, .checkout-container, .checkout-summary, .checkout-step, .login-card, .shopping-cart, .hero, .footer, .nav-tabs, .menu-overlay, .shopping-cart, .place-order-btn, .login-container, .card .card-content {
  border-radius: 0 !important;
}

/* Ensure the hamburger icon is mobile-only: hide on anything larger than a small phone */
@media (min-width: 481px) {
  .navbar .hamburger { display: none !important; }
}

/* Preserve circular avatars/logos */
.avatar, .logo, .logo-icon img, .hero-logo, .navbar .navbar-logo, .profile-pic { border-radius: 50% !important; }



