/* ===========================
   YLEINEN PERUSSETTI
   =========================== */

body.sarabags-child-theme {
  background-color: var(--sb-white);
  color: var(--sb-black);
}

/* ===========================
   HEADER
   =========================== */

body.sarabags-child-theme .site-header {
  background: var(--sb-black) !important;
  color: var(--sb-white) !important;
  border-bottom: 1px solid var(--sb-border) !important;
}

/* headerin sisätila */
body.sarabags-child-theme .site-header .col-full {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* brändi keskelle */
body.sarabags-child-theme .site-header .site-branding {
  text-align: center;
  margin: 8px 0;
}

/* logo */
body.sarabags-child-theme .site-header .custom-logo,
body.sarabags-child-theme .site-header .site-logo img {
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* otsikko + linkki */
body.sarabags-child-theme .site-header .site-title,
body.sarabags-child-theme .site-header .site-title a {
  color: var(--sb-white) !important;
  text-decoration: none;
}

/* brand-teksti */
body.sarabags-child-theme .site-header .site-description {
  color: var(--sb-white) !important;
  margin-top: 4px;
}

/* navigaatio keskelle */
body.sarabags-child-theme .site-header .main-navigation {
  margin-top: 8px;
  justify-content: center;
}

body.sarabags-child-theme .site-header .main-navigation ul.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* linkit */
body.sarabags-child-theme .site-header .main-navigation ul.menu > li > a {
  color: rgba(255, 255, 255, 0.92) !important;
  padding: 10px 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

body.sarabags-child-theme .site-header .main-navigation ul.menu > li > a:hover,
body.sarabags-child-theme .site-header .main-navigation ul.menu > li.current-menu-item > a {
  color: var(--sb-gold) !important;
}

/* ===========================
   HEADER – MOBIILI / TABLETTI
   =========================== */

@media (max-width: 1024px) {

  /* Piilota ostoskori + haku headerista */
  body.sarabags-child-theme .site-header .site-header-cart,
  body.sarabags-child-theme .site-header .site-search {
    display: none !important;
  }

  /* logo pienemmäksi */
  body.sarabags-child-theme .site-header .custom-logo,
  body.sarabags-child-theme .site-header .site-logo img {
    max-height: 80px;
  }

  /* Valikkonappi */
  body.sarabags-child-theme button.menu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    color: var(--sb-white);
  }

  /* Piilota mahdollinen teksti tai svg-ikoni */
  body.sarabags-child-theme button.menu-toggle .menu-toggle-text,
  body.sarabags-child-theme button.menu-toggle span,
  body.sarabags-child-theme button.menu-toggle svg {
    display: none !important;
  }

  /* Hamburger-viivat */
  body.sarabags-child-theme button.menu-toggle::before,
  body.sarabags-child-theme button.menu-toggle::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 2px;
    background: var(--sb-white);
    left: 20%;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  body.sarabags-child-theme button.menu-toggle::before {
    top: 30%;
  }

  body.sarabags-child-theme button.menu-toggle::after {
    top: 65%;
  }

  /* Ruksiksi kun valikko auki */
  body.sarabags-child-theme button.menu-toggle[aria-expanded="true"]::before {
    transform: translateY(7px) rotate(45deg);
  }

  body.sarabags-child-theme button.menu-toggle[aria-expanded="true"]::after {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ===========================
   TUOTESIVU – MOBIILI
   =========================== */

@media (max-width: 1024px) {

  /* Debug: näet heti vaikuttaako tämä – punainen kehys tuotteelle */
  body.sarabags-child-theme.single-product div.product {
    display: flex;
    flex-direction: column;
    outline: 2px solid red;
  }

  body.sarabags-child-theme.single-product div.product .images,
  body.sarabags-child-theme.single-product div.product .summary,
  body.sarabags-child-theme.single-product .woocommerce-tabs {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 auto;
  }

  /* Järjestys: kuva -> summary -> välilehdet */
  body.sarabags-child-theme.single-product div.product .images {
    order: 1;
  }

  body.sarabags-child-theme.single-product div.product .summary {
    order: 2;
  }

  body.sarabags-child-theme.single-product .woocommerce-tabs {
    order: 3;
  }

  /* Otsikko hieman pienemmäksi */
  body.sarabags-child-theme.single-product .product .product_title {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}
