html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.dropdown-item {
    color: #212529 !important; /* Force standard dark gray text */
    background-color: transparent !important;
}

.dropdown-menu {
    background-color: #ffffff !important; /* Ensure background is white */
}

/* Hide all eyelash toggle elements by default */
.eyelash-toggle-group .eyelash-link-wrapper {
    display: none !important;
}

/* Instantly show the link when the user selects anywhere inside the box container */
.eyelash-toggle-group:focus-within .eyelash-link-wrapper {
    display: block !important;
}
/* 🛠️ NAVIGATION GRID FIX: Restores layout alignment across the entire header */
.navbar-nav.align-items-center {
    align-items: stretch !important; /* Forces items to stay locked to standard heights */
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center; /* Centers items horizontally without stretching container boxes */
}

/* 👁️ PASSWORD TOGGLE FIX: Keeps eye buttons vertically centered inside floating labels */
.form-floating .pass-toggle-btn {
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 5;
}

/* ⚓ STICKY FOOTER FIX: Forces footer to bottom of viewport */
.layout-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex-grow: 1;
}
/* =========================================================================
   💰 WOODYSWILDCRAFT CHECKOUT SCREEN PORTAL VISUAL FILTERS
   ========================================================================= */

/* Hides duplicate credit card inputs from rendering inside the PayPal slot */
#paypal-button-container [data-funding-source="card"],
#paypal-button-container [data-funding-source="credit"],
#paypal-button-container [data-funding-source="paylater"],
.paypal-button-row:not(:first-child) {
    display: none !important;
    max-height: 0px !important;
    opacity: 0 !important;
    visibility: hidden !important;
}
/* Hidden by default on desktop computers and landscape phones */
.orientation-shield {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #111111;
    color: #ffffff;
    z-index: 100000; /* Layers right over your freeze curtain if needed */
    justify-content: center;
    align-items: center;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Subtle icon rotation helper animation */
@keyframes pulse {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(15deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Instantly activate when screen is narrow (mobile) AND held vertically */
@media screen and (max-width: 991px) and (orientation: portrait) {
    .orientation-shield {
        display: flex;
    }
}
