:root {
  --bg: #000;
  --bg-light: #ebebeb;
  --card: #000000c7;
  --border: #ffa100;
  --white: #ffffff;
  --gray: #b8b8b8;
  --accent: #e5e5e5;
  --transition: .35s ease;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(0,0,0,.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", Arial, sans-serif;
  background: #ffffff;
  color: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(90%, 1300px);
  margin: auto;
}

.section {
  padding: 230px 0;    

}

.dark {
  background: var(--bg-light);
}
.green {
  background: #f7ffec63;
}

.icons {
  display: flex;
  gap: 140px; /* Avstånd mellan bilderna */
  align-items: center;
  margin-top: 80px;
}

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

.icon-item img {
  display: block;
  margin: 0 auto;
}

.icon-item p {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

[dir="rtl"] .icon-item p {
  margin-top: 8px;
  font-size: 21px;
  color: #333;
}



/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.nav-container {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
}

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

.nav a {
  color: #000000;
  transition: var(--transition);
}

[dir="rtl"] .nav a {
  color: #000000;
  transition: var(--transition);
  font-size: 21px;
}


.nav a:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

#languageSwitcher {
  font-family: sans-serif;
  font-size: 12px;

  color: #050505;
  background: transparent;
  border: 1px solid rgba(5, 5, 5, 0.25);
  border-radius: 60px;
  padding: 12px 48px 12px 18px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  transition: border-color 0.25s ease, background-color 0.25s ease;

  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='10' viewBox='0 0 24 24' width='10' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

#languageSwitcher:hover {
  border-color: rgba(5, 5, 5, 0.45);
  background-color: rgba(0, 0, 0, 0.03);
}

#languageSwitcher:active {
  transform: none;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.logo img {
    height: 120px; /* Anpassa storleken */
    width: auto;
    display: block;
}

/*-----------------------------------------------------------------------------------------------------*/

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

.hero {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  
   background:
    linear-gradient(
      rgba(0, 0, 0, 0 ),
      rgba(0, 0, 0, 0 )
    ),
    url("images/k3.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

[dir="rtl"] .hero {
	
background:
    linear-gradient(
      rgba(0, 0, 0, 0 ),
      rgba(0, 0, 0, 0 )
    ),
    url("images/k3.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 40%);
}


.orange-circle{
    position: absolute;
    inset-inline-start: -350px;
    top: 57%;
    width: 1400px;
    transform: translateY(-50%);
	  animation:floatOrange 12s ease-in-out infinite;
}

.red-circle{
    position: absolute;
    inset-inline-end: -140px;
    top: -80px;
    width: 500px;
	animation:floatRed 14s ease-in-out infinite;
}

.mobile{
    position: absolute;
    inset-inline-end: -60px;
    top: 210px;
    width: 1250px;
	animation:floatmob 14s ease-in-out infinite;
}


.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  color: #000000;
  margin-bottom: 25px;
  font-size: clamp(1.8rem, 2.55vw, 1.2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-tag-under {
  color: #000000;
  margin-bottom: 25px;
  font-size: clamp(1.8rem, 2.55vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 1px;
}

[dir="rtl"] .hero-tag {
  color: #000000;
  margin-bottom: 25px;
  font-size: clamp(2.3rem, 2.55vw, 1.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.hero h1 {
  color: #000000;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero h2 {
  color: #000000;
  line-height: 1;
  margin-bottom: 25px;

}


.hero-description {
  color: #ffffff;
  font-size: 1.6rem;
  max-width: 700px;
  margin-bottom: 40px;
  font-weight: 200;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/*-----------------------------------------------------------------------------------------------------*/

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  transition: var(--transition);
  cursor: pointer;
  font-weight: 700;
}

.btn-primary {
  background: white;
  color: black;
}

.btn-primary:hover {
  transform: translateY(-4px);
  
}

.btn-secondary {
  color: #ffffff;
  background: #1a1a1a7a;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
}


/*-----------------------------------------------------------------------------------------------------*/

/* ==========================
   STATS 
========================== */

.stats {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-card {
  color: #000000;
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
}

.stat-number {
  color: #f37535;
  margin-bottom: 25px;
  font-size: 3rem;
}

.stat-card h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.stat-card p {
  color: var(--bg);
}

[dir="rtl"] .stat-card p {
  color: var(--bg);
  font-size: 1.5rem;
}

/*-----------------------------------------------------------------------------------------------------*/

/* ==========================
   ABOUT 
========================== */

.about-section{
    position: relative;
    overflow: hidden;

}

.about-section::after{
    content: "";
    position: absolute;
    right:  -60px;
    top: 50%;
    transform: translateY(-50%);

    width: 850px;
    height: 850px;

    background: url("images/about.png") no-repeat center;
    background-size: contain;

    opacity: 1;

    pointer-events: none;
    z-index: 1;
}

/* RTL override */
[dir="rtl"] .about-section::after {
    right: auto;
    left: -60px;
	
	content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 850px;
    height: 850px;

    background: url("images/about_ar_ku.png") no-repeat center;
    background-size: contain;

    opacity: 1;

    pointer-events: none;
    z-index: 1;
}

.about-section .container{
    position: relative;
    z-index: 2;
}

.about-mobile-image{
    display:none;
}


/*-----------------------------------------------------------------------------------------------------*/

/* ==========================
   DEAL
========================== */

.deal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;

    background:
        linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)),
        url("images/k1A.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.green-bag{
    position:absolute;
    right:40px;
    bottom:-180px;
    width:1200px;
 filter: drop-shadow(0 5px 10px rgba(0,0,0,.05));
    z-index:20;

    animation: bagFloat 6s ease-in-out infinite;
}

.floating-carrot{
    position:absolute;
    right:750px;
    top:450px;
    width:350px;
    z-index:25;
}

.floating-tomato{
    position:absolute;
    right:550px;
    top:450px;
    width:150px;
    z-index:25;
}

.floating-carrot{

    animation: carrotFloat 7s ease-in-out infinite;

}

.floating-tomato{

    animation: tomatoFloat 5s ease-in-out infinite;

}

.deal-section{
    position: relative;
    overflow: hidden;

}


.deal-section .container{
    position: relative;
    z-index: 2;
}

.deal-mobile-image{
    display:none;
}


/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* ==========================
   SECTION HEADER
========================== */

.section-header {
  margin-bottom: 60px;
}

.section-header span {
  color: #000000;
  letter-spacing: 3px;
  font-size: 1rem;
}

[dir="rtl"] .section-header span {
  letter-spacing: normal; /* eller 0 */
  font-size: 2rem;
}

[dir="rtl"] .section-header .big-title {
  font-size: clamp(6rem, 2vw, 5rem);
  margin-bottom: 1px;
  color: #000;
}

.section-header .big-title {
  font-size: clamp(3.3rem, 2vw, 2rem);
  margin-bottom: 1px;
  color: #000;
}

.section-header h2 {
  color: #6cad1a;
  font-size: clamp(1rem, 3vw, 2rem);
  margin-top: 5px;
}

.section-text {
  max-width: 900px;
  color: var(--bg);
  font-size: 1.15rem;
}


/*-----------------------------------------------------------------------------------------------------*/

/* ==========================
   SERVICES
========================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: #0000000a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 35px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #444;
}

.service-number {
  color: #ff7d00;
  margin-bottom: 10px;
  font-size: 1.75rem;
}

[dir="rtl"] .service-number {
  color: #ff7d00;
  margin-bottom: 10px;
  font-size: 2.1rem;
}

.service-card h3 {
  color: #000;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.service-card p {
  color: #000;
}

[dir="rtl"] .service-card p {
  color: #000;
  font-size: 21px;
}

.services-section {
    position: relative;
    overflow: visible;
    padding-top: 220px; /* Ger plats för påsen */
    z-index: 1;
}



.services-section img, video {
  margin-top: 100px;
  max-width: 100%;
  height: auto;
}

.services-mobile-image{
    display:none;
}


.services-section .container {
    position: relative;
    z-index: 2;
}

/*-----------------------------------------------------------------------------------------------------*/




/* ================================
   PRICING SECTION
================================ */

.pricing-section {
  padding: 140px 0;
  background: #f5f5f2;
}

.pricing-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 70px;
}

.pricing-header span {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ff7d00;
  margin-bottom: 15px;
}

.pricing-header h2 {
  margin-bottom: 20px;
}

.pricing-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  line-height: 1.7;
}


/* GRID */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
}



/* CARD */

.pricing-card {
  position: relative;
  background: #ffffff;
  border-radius: 30px;
  padding: 35px 90px 30px;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease,
              box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.10);
}


/* FEATURED */

.pricing-card.featured {
  border: 2px solid #ff7d00;
  transform: translateY(-10px);
}

.pricing-card.featured:hover {
  transform: translateY(-16px);
}


/* BADGE */

.popular-badge {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff7d00;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 7px 30px;
  border-radius: 30px;
  white-space: nowrap;
}


/* TITLE */

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #111;
}

.pricing-description {
  color: #777;
  font-size: 14px;
  line-height: 1.6;
  min-height: 45px;
}


/* PRICE */

.price {
  margin: 25px 0 30px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  direction: ltr;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  direction: ltr;
  unicode-bidi: isolate;
}

.price-currency {
  font-size: 18px;
  font-weight: 700;
  margin-left: 5px;
  direction: ltr;
  unicode-bidi: isolate;
}

.price-period {
  font-size: 13px;
  color: #777;
  margin-left: 4px;
  direction: ltr;
  unicode-bidi: isolate;
}




/* FEATURES */

.pricing-features {
  border-top: 1px solid #eee;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #444;
  font-size: 14px;
  line-height: 1.5;
}

[dir="rtl"] .pricing-features {
  border-top: 1px solid #eee;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #444;
  font-size: 16px;
  line-height: 1.5;
}


.pricing-features div {
  position: relative;
  padding-left: 3px;
}


/* BUTTON */

.pricing-btn {
  margin-top: auto;
  display: block;
  text-align: center;
  background: #111;
  color: #fff;
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease,
              transform 0.3s ease;
}

.pricing-btn:hover {
  background: #ff7d00;
  transform: translateY(-2px);
}

.pricing-card.featured .pricing-btn {
  background: #ff7d00;
}

.pricing-card.featured .pricing-btn:hover {
  background: #111;
}



/* ================================
   SMART BANNER PARTNER
================================ */

.smart-banner-card {
  background:
    linear-gradient(
      145deg,
      #111 0%,
      #1c1c1c 55%,
      #292929 100%
    );

  color: #fff;

  border: 2px solid #ff7d00;

  box-shadow:
    0 20px 60px rgba(255, 125, 0, 0.12);

  overflow: hidden;
}

.smart-banner-card h3 {
  color: #fff;
}

.smart-banner-card .pricing-description {
  color: #bdbdbd;
}

.smart-banner-card .pricing-features {
  border-top: 1px solid rgba(255,255,255,.15);
  color: #eee;
}

.smart-banner-card .price {
  margin-top: 25px;
}

.smart-banner-card .price-amount {
  font-size: 32px;
  color: #ff7d00;
}

.smart-banner-card {
	transform: none !important;

}

.smart-banner-wrapper {
  position: relative;
  transition: transform 0.3s ease;
}

.smart-banner-wrapper:hover {
  transform: translateY(-8px);
}

.smart-banner-label {
  position: absolute;
  top: -15px;
  left: 20%;
  transform: translateX(-50%);
  background: #ff7d00;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 30px;
  white-space: nowrap;
  z-index: 10;
}

.smart-banner-card {
  position: relative;
}

.smart-banner-btn {
  background: #ff7d00;
  color: #fff;
}

.smart-banner-btn:hover {
  background: #fff;
  color: #111;
}


/* ================================
   TABLET
================================ */

@media (max-width: 1200px) {

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

  .pricing-section {
    padding: 90px 0;
  }

  .pricing-header {
    margin-bottom: 50px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pricing-card {
    min-height: auto;
    padding: 35px 25px 25px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  .price-amount {
    font-size: 34px;
  }
}




/* =========================
   PLAN MODAL
========================= */

.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.plan-modal.active {
  display: flex;
}

.plan-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.plan-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;

  background: #fff;
  border-radius: 20px;
  padding: 35px;

  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);

  animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.plan-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;

  width: 40px;
  height: 40px;

  border: 0;
  border-radius: 50%;

  background: #f2f2f2;
  color: #222;

  font-size: 26px;
  line-height: 1;

  cursor: pointer;
}

.plan-modal-close:hover {
  background: #e5e5e5;
}

.plan-modal-header {
  margin-bottom: 25px;
  padding-right: 35px;
}

.plan-modal-header span {
  font-size: 20px;
  opacity: 0.6;
}

.plan-modal-header h2 {
  margin: 6px 0 8px;
  font-size: 28px;
}
#selectedPlan {
  font-size: 28px;
  font-weight: 700;
  opacity: 1;
}

.plan-modal-header p {
  margin: 0;
  opacity: 0.7;
}

.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;

  padding: 13px 15px;

  border: 1px solid #ddd;
  border-radius: 10px;

  background: #fafafa;

  font-family: inherit;
  font-size: 15px;

  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #222;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.form-group textarea {
  resize: vertical;
}

.plan-submit {
  width: 100%;
  padding: 15px;
  border: 0;
  border-radius: 30px;
  background: #ff7d00;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.plan-submit:hover {
  background: #333;
}

.form-status {
  margin: 15px 0 0;
  text-align: center;
  font-size: 14px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .plan-modal {
    padding: 12px;
  }

  .plan-modal-content {
    padding: 25px 20px;
    border-radius: 16px;
  }

 .plan-modal-header h2 {
  margin: 6px 0 8px;
  font-size: 28px;
}

}





/* ==========================
   PROCESS 
========================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}

.process-item {
  border-top: 2px solid white;
  padding-top: 25px;
}


.process-card {
  background: #0000000a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 35px;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: #444;
}

.process-card1 {
  background: #b8b8b880;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 35px;
  transition: var(--transition);
}

.process-card1:hover {
  transform: translateY(-10px);
  border-color: #444;
}

#one-platform,
#wholesalers,
#retailers,
#customers {
    scroll-margin-top: 100px;
}

.process-item span {
  color: #ff7d00;
  font-size: 52px;
  font-weight: 600;
}

.process-item h3 {
  color: #000;
  margin-top: 20px;
  font-size: 1.0rem;
}

[dir="rtl"] .process-item p {
  color: #000;
  font-size: 21px;
}

.process-section {
    position: relative;
    overflow: hidden;
}



/* ==========================
   KARTA
========================== */

.stores-map {
    position: absolute;
    width: 800px;
    max-width: 50vw;

    right: 30px;
    top: 450px;

    z-index: 5;
}

.stores-map iframe {
    display: block;
    width: 100%;
    height: 1200px;
    border: 0;

    pointer-events: auto;
}


/* ==========================
   ENDAST MOBIL
========================== */

@media (max-width: 700px) {

    .stores-map {
        position: relative;
        width: 100%;
        max-width: 100%;
        right: auto;
        top: 40px;
    }

    .stores-map iframe {
        width: 100%;
        height: 450px;
    }
}




.process-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);

    width: 850px;
    height: 850px;

    background: url("images/services.png") no-repeat center;
    background-size: contain;

    pointer-events: none;
    z-index: 1;

    animation: floatY 5s ease-in-out infinite;

    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

.process-section .container {
    width: min(90%, 1000px);
    margin: auto;
}


.process-mobile-image {
    display: none;
}


/*-----------------------------------------------------------------------------------------------------*/

/* ==========================
   PROJECTS
========================== */

.coming-soon {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px;
}

.coming-soon h3 {
  margin-bottom: 15px;
  font-size: 2rem;
}

.coming-soon p {
  color: var(--gray);
}

/* CONTACT */
.contact {
  text-align: center;
}

.contact .big-title {
  font-size: clamp(4rem, 2vw, 2rem);
  margin-bottom: 5px;
}

.contact h2 {
  font-size: clamp(2.5rem, 2vw, 2rem);
  margin-bottom: 20px;
}

.contact p {
  color: var(--bg);
  margin-bottom: 40px;
  font-size: 21px;
}

.contact-form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  background: #000000c7;
  border: 1px solid var(--border);
  color: white;
  padding: 18px;
  border-radius: 14px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: white;
  opacity: 1;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}


/* FOOTER */
.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 60px 0;
  text-align: center;
}

.footer p {
  color: #8c8c8c;
  font-size: 21px;
}

.footer .small {
  font-size: 15px;
}

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 999;
  background: #25D366;
  color: white;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
}


/* SCROLL REVEAL */
.section,
.stat-card,
.service-card,
.process-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.section.reveal,
.stat-card.reveal,
.service-card.reveal,
.process-item.reveal {
  opacity: 1;
  transform: translateY(0);
}


@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}









/* ==========================
   BRAND
========================== */


.brands {
    padding: 0px 0;
    background: #fff;
    overflow: hidden;
}


.logo-slider {
	direction: ltr !important;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.brands .big-title {
  font-size: clamp(4rem, 2vw, 2rem);
  margin-bottom: 1px;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.logo-track img {
    height: 90px;
    width: auto;
    object-fit: contain;
    opacity: .8;
    transition: .3s;
}

.logo-track img:hover {
    opacity: 1;
    transform: scale(1.08);
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}



/* ==========================
   HEADER LOGO
========================== */
.logo img {
  height: 90px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 60px;
  }
}





/* ==========================
   FOOTER LOGO
========================== */
.footer-logo {
  margin-bottom: 30px; /* 👈 viktig: ger luft under loggan */
}

.footer-logo img {
  max-width: 240px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* centrerar utan att påverka spacing */
}

@media (max-width: 768px) {
  .footer-logo img {
    max-width: 150px;
  }

  .footer-logo {
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    max-width: 160px;
  }

  .footer-logo {
    margin-bottom: 20px;
  }
  
  .footer p {
  color: #8c8c8c;
  font-size: 21px;
}

.footer .small {
  font-size: 14px;

  
  
}

a {
  text-decoration: none;
  color: inherit;
  font-size: 12px;
}

}



/* ==========================
   MOBILE & TABLET
========================== */

@media (max-width: 992px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 4rem;
  }
  
  .lang-mobile {
  display: none;
}
}


/*---------------------@media (max-width: 768px)--------------------------------------------------------------------------------------------------------*/

@media (max-width: 768px) {

  
.header-actions #languageSwitcher {
  display: none;
}

.lang-mobile {
  display: block;
  width: 100%;
}

.lang-mobile select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.nav {
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  background: #fff;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 25px;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.nav.active {
  display: flex;
}
  
  
  .section {
    padding: 80px 0;
  }

  /* Header */
  .menu-btn {
    display: block;
    color: #000;
  }

  /* Hero */
  .hero {
    text-align: center;
    min-height: 90vh;
    padding: 100px 0 50px;
  }
 
 .hero-description {
    font-size: 1rem;
  }
  
  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1.1;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

.stats {
  padding-top: 190px;
  padding-bottom: 70px;
}

  /* Grids */
  .stats-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  /* Cards */
  .stat-card,
  .service-card,
  .coming-soon {
    padding: 25px;
  }

  /* Contact */
  .contact-form {
    width: 100%;
  }

.contact .big-title {
  font-size: clamp(2.75rem, 2vw, 2rem);
  margin-bottom: 5px;
}

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
  }

  /* Text */
  .section-header {
    text-align: center;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .contact h2 {
    font-size: 2.1rem;
  }


.about-mobile-image{
    display:none;
}

.about-section::after{
    display:none;
}

.about-mobile-image{
    display:block;
    width:550px;
    margin:40px auto 0;
}

.section-header .big-title {
  font-size: clamp(1.85rem, 2vw, 2rem);
  margin-bottom: 1px;
  color: #000;
}

[dir="rtl"] .section-header .big-title {
  font-size: clamp(2.8rem, 2vw, 5rem);
  margin-bottom: 1px;
  color: #000;
}

.brands .big-title {
  font-size: clamp(2.1rem, 2vw, 2rem);
  margin-bottom: 1px;
}

[dir="rtl"] .brands .big-title {
  font-size: clamp(2.8rem, 2vw, 5rem);
  margin-bottom: 1px;
}


.logo-track{
    gap:40px;
}

.logo-track img{
    height:95px;
}


.services-section::before{
    display:none;
}
.services-mobile-image{
    display:block;
    width:550px;
    max-width:60%;
    margin:40px auto 40px;
}

.process-item span {
  color: #777;
  font-size: 2.1rem;
}

.process-section::before {
        display: none;
    }

.process-mobile-image {
        display: block;
        width: 550px;
        max-width: 100%;
        margin: 40px auto 0;
    }

    .deal{
        min-height: 700px;
        overflow: hidden;
    }

    .green-bag{
        width: 600px;
        right: -180px;
        bottom: -120px;
    }

    .floating-carrot{
        width: 170px;
        right: 250px;
        top: 320px;
    }

    .floating-tomato{
        width: 80px;
        right: 170px;
        top: 320px;
    }

.icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 20px;
  }

  .icon-item {
    width: 100%;
    text-align: center;
  }


  .section {
    padding: 80px 0;
  }

.orange-circle {
    width: 500px;
    inset-inline-start: -180px;
    top: 40%;
    opacity: 0.6;
}

.red-circle {
    width: 220px;
    inset-inline-end: -80px;
    top: 10px;
    opacity: 0.6;
}


.mobile{
    position: absolute;
    inset-inline-end:  -15px;
    top: 610px;
    width: 330px;
	z-index: 20;
	animation:floatmob 14s ease-in-out infinite;
}


  .deal {
    overflow: visible;
  }



.price-amount {
  font-size: 60px;
  font-weight: 700;
  color: #111;
  direction: ltr;
  unicode-bidi: isolate;
}


.pricing-btn {
  margin-top: 35px;
  display: block;
  text-align: center;
  background: #ff7d00;
  color: #fff;
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease,
              transform 0.3s ease;
}



}
/*---------------------@media (max-width: 480px)--------------------------------------------------------------------*/
@media (max-width: 480px) {

 .hero h1 {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .hero-tag {
    font-size: 1.2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }

  .stat-card h2 {
    font-size: 2rem;
  }

  .whatsapp-btn {
    right: 15px;
    bottom: 15px;
    padding: 12px 18px;
    font-size: 14px;
  }

  #languageSwitcher {
    padding: 8px 10px;
    font-size: 14px;
  }



    .deal{
        min-height: 620px;
    }

    .green-bag{
        width: 460px;
        right: -140px;
        bottom: -40px;
    }

    .floating-carrot{
        width: 120px;
        right: 100px;
        top: 330px;
    }

    .floating-tomato{
        width: 50px;
        right: 40px;
        top: 320px;
    }



}



/* ==========================
   ANIMATION
========================== */

@keyframes floatY {
  0% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(-12px); }
  100% { transform: translateY(-50%) translateY(0); }
}


@keyframes floatOrange {
  0%,100% {
    transform: translateY(-50%) translate(0,0);
  }

  25% {
    transform: translateY(-50%) translate(8px,-8px);
  }

  50% {
    transform: translateY(-50%) translate(15px,5px);
  }

  75% {
    transform: translateY(-50%) translate(5px,-4px);
  }
}

@keyframes floatRed {
  0%,100% {
    transform: translate(0,0);
  }

  25% {
    transform: translate(-8px,6px);
  }

  50% {
    transform: translate(-15px,-5px);
  }

  75% {
    transform: translate(-5px,8px);
  }
}


@keyframes floatmob {
  0%,100% {
    transform: translate(0,0);
  }

  25% {
    transform: translate(8px,-6px);
  }

  50% {
    transform: translate(15px,5px);
  }

  75% {
    transform: translate(5px,-8px);
  }
}

@keyframes bagFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes carrotFloat {

    0% {
        transform: translate(0,0) rotate(-20deg);
    }

    25% {
        transform: translate(-8px,-10px) rotate(-15deg);
    }

    50% {
        transform: translate(6px,-18px) rotate(-24deg);
    }

    75% {
        transform: translate(-5px,-8px) rotate(-18deg);
    }

    100% {
        transform: translate(0,0) rotate(-20deg);
    }

}

@keyframes tomatoFloat {

    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(12deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }

}


/* =========================================================
   iPAD / TABLET FIX
   Endast 769px - 1100px
   Desktop och mobil lämnas orörda
========================================================= */

@media (min-width: 767px) and (max-width: 1400px) {

  .hero {
    overflow: hidden;
  }

  /* HERO PHONE IMAGE */
  .mobile {
    position: absolute;
    right: -80px;
    left: auto;
    top: 700px;
    width: 650px;
    max-width: none;
    z-index: 20;
  }


  /* ABOUT IMAGE */
  .about-section {
    overflow: hidden;
  }

  .about-section::after {
    display: none;
  }

  .about-mobile-image {
    display: block;
    width: 600px;
    max-width: 80%;
    height: auto;
    margin: 50px auto 0;
  }


  /* PROCESS BAG IMAGE */
  .process-section {
    overflow: hidden;
  }

  .process-section::before {
    display: none;
  }

  .process-mobile-image {
    display: block;
    width: 600px;
    max-width: 80%;
    height: auto;
    margin: 60px auto 0;
  }


  /* MAP */
  .stores-map {
    position: relative;
    width: 70%;
    max-width: 100%;
    right: auto;
    left: auto;
    top: auto;
    margin: 60px auto 0;
  }

  .stores-map iframe {
    width: 100%;
    height: 700px;
    display: block;
    border: 0;
  }


  /* TABLET GRIDS */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  /* ICONS */
  .icons {
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
  }

}

/* =========================================================
   iPAD PORTRAIT - MOBILE MENU
   Behåller desktop på landscape
========================================================= */

@media (min-width: 769px) and (max-width: 900px) 
and (orientation: portrait) {

  .menu-btn {
    display: block;
    color: #000;
    font-size: 1.8rem;
  }


  .nav {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;

    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 25px;

    display: none;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);
  }


  .nav.active {
    display: flex;
  }


  .nav a {
    font-size: 18px;
    color: #000;
  }


  .lang-mobile {
    display: block;
    width: 100%;
    text-align: center;
  }


  .lang-mobile select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
  }


  .header-actions #languageSwitcher {
    display: none;
  }

}

