/*
  Euro Nutra — global style.css
  Contains ONLY styles that are genuinely reused across multiple components.
  Component-specific styles have been moved into each component's own CSS file.

  CSS Index
  -----------------------------------
  1.  Variables & Font import
  2.  Base / Reset
  3.  Container & Utilities
  4.  Buttons
  5.  Scroll-top
  6.  Section Title Two (global, used across many sections)
  7.  Section Spacing Utilities
  8.  Collapse / Tab-pane toggles
  9.  Form base styles
  10. Preloader
  11. Swiper global overrides
*/

/* ─────────────────────────────────────────
   1. Variables & Font import
───────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap");

:root {
  --tg-body-font-family: "Roboto", sans-serif;
  --tg-heading-font-family: "Oswald", sans-serif;
  --tg-primary-color: #f59e0b;
  --tg-secondary-color: #0d9b4d;
  --tg-body-font-color: #777777;
  --tg-heading-font-color: #222222;
  --tg-paragraph-color: #777777;
  --tg-body-font-size: 16px;
  --tg-body-font-weight: 400;
  --tg-heading-font-weight: 500;
  --tg-body-line-height: 1.6;
  --tg-heading-line-height: 1.2;
  --tg-dark: #000000;
  --tg-dark-two: #2a2a2a;
  --tg-blue: #0d6efd;
  --tg-indigo: #6610f2;
  --tg-purple: #6f42c1;
  --tg-pink: #d63384;
  --tg-red: #dc3545;
  --tg-orange: #fd7e14;
  --tg-yellow: #faa432;
  --tg-green: #198754;
  --tg-teal: #20c997;
  --tg-cyan: #0dcaf0;
  --tg-white: #fff;
  --tg-gray: #ddd;
  --tg-gray-two: #f5f5f5;
}

/* ─────────────────────────────────────────
   2. Base / Reset
───────────────────────────────────────── */

/* Box-sizing: Bootstrap used to supply this globally — now we own it */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default browser margin/padding on root elements */
html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--tg-body-font-family);
  font-weight: var(--tg-body-font-weight);
  font-size: var(--tg-body-font-size);
  line-height: var(--tg-body-line-height);
  color: var(--tg-body-font-color);
  font-style: normal;
  overflow-x: hidden; /* prevent horizontal scroll on mobile */
}
img,
.img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease-out 0s;
}
.f-left {
  float: left;
}
.f-right {
  float: right;
}
.fix {
  overflow: hidden;
}

a,
button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}
a:focus,
.btn:focus,
button:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
a:hover,
.portfolio-cat a:hover,
.footer-menu li a:hover {
  color: var(--tg-primary-color);
  text-decoration: none;
}
a,
button {
  color: var(--tg-primary-color);
  outline: medium none;
  text-decoration: none;
}
.btn:focus,
button:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-font-color);
  margin-top: 0px;
  margin-bottom: 0.7rem;
  font-style: normal;
  line-height: var(--tg-heading-line-height);
  font-weight: 500;
  text-transform: uppercase;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 35px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}

.list-wrap {
  margin: 0px;
  padding: 0px;
}
.list-wrap li {
  list-style: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--tg-body-font-color);
  margin-bottom: 15px;
}
hr {
  border-bottom: 1px solid var(--tg-body-font-color);
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}
label {
  color: var(--tg-body-font-color);
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}
*::-moz-selection {
  background: #d6b161;
  color: var(--tg-white);
  text-shadow: none;
}
::-moz-selection {
  background: var(--tg-body-font-color);
  color: var(--tg-white);
  text-shadow: none;
}
::selection {
  background: var(--tg-body-font-color);
  color: var(--tg-white);
  text-shadow: none;
}
*::-moz-placeholder {
  color: var(--tg-body-font-color);
  font-size: 16px;
  opacity: 1;
}
*::placeholder {
  color: var(--tg-body-font-color);
  font-size: 16px;
  opacity: 1;
}

.theme-overlay {
  position: relative;
}
.theme-overlay::before {
  background: var(--tg-primary-color) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
}
.separator {
  border-top: 1px solid #f2f2f2;
}
.nav-link:focus {
  color: inherit;
}

/* ─────────────────────────────────────────
   3. Container & Utilities
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.text-center {
  text-align: center;
}

.breadcrumb > .active {
  color: var(--tg-primary-color);
}

:root {
  scroll-behavior: auto;
}

/* ─────────────────────────────────────────
   4. Buttons
───────────────────────────────────────── */
.btn {
  user-select: none;
  -moz-user-select: none;
  background: var(--tg-secondary-color) none repeat scroll 0 0;
  border: medium none;
  border-radius: 50px;
  color: var(--tg-white);
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 0;
  padding: 19px 50px;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: var(--tg-primary-color);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
}
.btn:hover {
  color: var(--tg-white);
}
.btn:hover:before {
  top: -40%;
}

.btn-two {
  background: var(--tg-primary-color) none repeat scroll 0 0;
}
.btn-two::before {
  background: var(--tg-secondary-color);
}

.btn-sm {
  padding: 17px 35px;
  line-height: 1;
}

.btn-three {
  background: var(--tg-primary-color);
  border-radius: 5px;
  padding: 19px 53px;
}
.btn-three::before {
  background: var(--tg-secondary-color);
}

.green-btn {
  background: var(--tg-secondary-color);
}
.green-btn::before {
  background: var(--tg-primary-color);
}

/* ─────────────────────────────────────────
   5. Scroll-top
───────────────────────────────────────── */
.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: -10%;
  right: 30px;
  font-size: 16px;
  border-radius: 50%;
  z-index: 99;
  color: var(--tg-white);
  text-align: center;
  cursor: pointer;
  background: var(--tg-secondary-color);
  transition: 1s ease;
  border: none;
  opacity: 0;
}
.scroll-top.open {
  bottom: 30px;
  opacity: 1;
}
.scroll-top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 80%
  );
}
.scroll-top:hover {
  background-color: var(--tg-heading-font-color);
  opacity: 1;
}

/* ─────────────────────────────────────────
   6. Section Titles (global — used across all sections)
───────────────────────────────────────── */

/* .section-title variant (primary heading style) */
.section-title .sub-title {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.095em;
  text-transform: uppercase;
  color: var(--tg-primary-color);
  margin: 0 0 15px;
}
.section-title .title {
  font-size: 50px;
  letter-spacing: -0.025em;
  margin-bottom: 0;
}
.section-title-two .sub-title {
  color: var(--tg-heading-font-color);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.section-title-two .sub-title svg {
  color: var(--tg-secondary-color);
}
.section-title-two.text-center .sub-title {
  justify-content: center;
}
.section-title-two.white-title .sub-title {
  color: var(--tg-white);
}
.section-title-two.white-title .title {
  color: var(--tg-white);
}

/* ─────────────────────────────────────────
   7. Section Spacing Utilities
───────────────────────────────────────── */
.section-py-130 {
  padding: 130px 0;
}
.section-pt-130 {
  padding-top: 130px;
}
.section-pb-100 {
  padding-bottom: 100px;
}
.section-pb-130 {
  padding-bottom: 130px;
}

/* ─────────────────────────────────────────
   8. Collapse / Tab-pane toggles
───────────────────────────────────────── */
/* Accordion collapse toggle (used by FAQ) */
.collapse {
  display: none;
}
.collapse.show {
  display: block;
}

/* Tab pane visibility (used by QuickPurchase) */
.tab-pane {
  display: none;
}
.tab-pane.show.active {
  display: block;
}

/* ─────────────────────────────────────────
   9. Form base styles
───────────────────────────────────────── */
/* Form select */
.form-select {
  display: block;
  width: 100%;
  padding: 18px 45px 18px 25px;
  font-size: 16px;
  font-weight: 400;
  color: var(--tg-body-font-color);
  background-color: var(--tg-white);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 12px;
  border: 1px solid #edeaea;
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  margin-bottom: 20px;
}
.form-select:focus {
  outline: none;
  border-color: var(--tg-secondary-color);
}


/* ─────────────────────────────────────────
   11. Swiper global overrides
───────────────────────────────────────── */
.swiper-wrapper {
  align-items: center;
}
